问题
Whenever I need to run a powershell script it complains of security, if I add powershell.exe -nologo -executionpolicy bypass -File .\install.ps1 I still get permission denied unauthorizedAccessException. I just want to run this damn install script, what is the sudo equivalent to type on the powershell on windows?
回答1:
If you are running from PowerShell already, then use Start-Process -Verb RunAs as follows:
Start-Process -Verb RunAs powershell.exe -Args "-executionpolicy bypass -command Set-Location \`"$PWD\`"; .\install.ps1"
Note:
- The script invariably runs in a new window.
- Since the new window's working directory is invariably
$env:windir\System32, aSet-Locationcall that switches to the caller's working directory ($PWD) is prepended.- Note that in PowerShell Core (
pwsh.exe) this wouldn't be necessary.
- Note that in PowerShell Core (
- Executing
Set-Locationnecessitates the use of-Commandinstead of-File.- On the plus side, this obviates the need for
-nologo. - A general caveat is that
-Commandcan change the way arguments passed to your script are interpreted (there are none in your case), because they are interpreted the same way they would be if you passed the arguments from within PowerShell, whereas-Filetreats them as literals.
- On the plus side, this obviates the need for
If you're calling from outside of PowerShell, typically from cmd.exe/ a batch file, you need to wrap the above in an outer call to powershell.exe, which complicates things in terms of quoting, unfortunately:
powershell.exe -command "Start-Process -Verb RunAs powershell.exe -Args '-executionpolicy bypass -command', \"Set-Location `\"$PWD`\"; .\install.ps1\""
Interactively, of course, you can:
Right-click the PowerShell shortcut (in your taskbar or Start Menu, or on your Desktop), select
Run as Administratorto open a PowerShell window that runs with admin privileges, and run.\install.ps1from there.Alternatively, from an existing PowerShell window, you can open a run-as-admin window with
Start-Process -Verb RunAs powershell.exe, as in AdminOfThings' answer.
回答2:
If you have a corporate policy that blocks scripts execution, then yes. ByPass does not change your profile (user context) state. That is not the design (use case) for any of those switches regarding Execution Policies.
There is not a direct comparison of sudo in Windows, this has nothing to do with PowerShell. You are either admin in a session / app or you are not. If you are installing software, that means you must be admin. If you are doing global system-wide changes, that means you must be admin.
There are folks who have strived to implement scripts, wrapper functions and or modules to mimic sudo …
Module from the MS PowerShell gallery. Sudo 0.9.3 Use functionality similar to sudo in PowerShell
From GitHub Sudo for PowerShell
Sudo for PowerShell Installation From PowerShell, create a $profile if you don't have one:
if (!(test-path $profile)) { new-item -path $profile -itemtype file -force }
Open the profile in notepad:
notepad.exe $profile
Add the following line and save the file:
. /path/to/sudo.ps1
sudo will be available in all new PowerShell windows Usage
sudo application [arguments ...]
...but that does not change what Windows expects when dealing with security boundaries.
See also this Q&A Sudo !! equivalent in PowerShell
$^ is a variable that expands to the last executed Powershell command. You can run a command as another user using runas, so the following works:
runas /user:domain\administrator $^
To shorten that up a bit, you can do some magic with aliases. Take a look at this Technet article for more info.
EDIT: One caveat - $^ only executes the first command in a pipeline or multi-command line. If you need to redo an entire command that is peppered with pipes or semicolons, use Invoke-History instead (which defaults to the last full command in its entirety).
回答3:
You can start PowerShell with the Run as Administrator option:
Start-Process powershell -Verb runAs
回答4:
You can utilize the Start-Process command and then use parameter -Verb runas to elevate
I created a sudo function this this:
function sudo {
Start-Process @args -verb runas
}
Example: Open notepad as Admin to edit hosts file
sudo notepad C:\Windows\System32\drivers\etc\hosts
来源:https://stackoverflow.com/questions/55314557/how-to-sudo-on-powershell-on-windows