PowerShell-Docs
PowerShell-Docs copied to clipboard
Provide guidance as to when Start-Process is appropriate vs. direct / &-based invocation
Related: #5152
Using Start-Process to invoke console (terminal) programs is (almost always) inappropriate, but, unfortunately, very common - instead, such programs should be invoked by direct invocation / via &, the call operator.
Proper guidance at the start of the Start-Process topic would go a long way to help clear up the confusion:
Note: Start-Process launches the new process asynchronously by default; add -Wait to wait for the newly created process to terminate.
-
DO NOT use
Start-Processif you want to run a console program synchronously, with its standard streams connected to PowerShell's streams - just invoke such a program directly / via&(e.g.whoami.exerather thanStart-Process whoami.exe).- Even if you use
Start-Process -NoNewWindow -Wait, you won't be able to capture or redirect the program's output (you can only save stdout and stderr (separately) to files, as text, via-RedirectStandardOutand-RedirectStandardError). Additionally, the process' exit code will not be reflected in$LASTEXITCODEwhen you useStart-Process.
- Even if you use
-
DO use
Start-Processto launch a GUI program asynchronously on Unix-like platforms (e.g.,Start-Proces gedit).- Note: On Windows, GUI programs launch asynchronously even with direct invocation /
&, soStart-Process NotepadandNotepadhave the same effect.
- Note: On Windows, GUI programs launch asynchronously even with direct invocation /
-
DO use
Start-Processwith-PassThruif you need to obtain a process-information object (System.Diagnostics.Process) for the newly started process, which notably allows you get the process' exit code after termination. -
[Windows-only] DO use
Start-Processfor starting console applications in a new window, but note that this is only works on Windows.-
On Unix-like platforms,
-NoNewWindowis invariably implied, and use ofStart-Processfor console programs there only makes sense if either (a) they neither prompt for input nor produce output or (b)-Waitis also used - but then direct invocation /&is the better choice - see #3013 -
[Windows-only] With
-WindowStyle <style>you can additionally control the new process' window style (both for console windows and the windows of GUI applications, though they latter may not respect the setting).
-
-
[Windows-only] DO use
Start-Process -WindowStyle Hidden, if you want to launch a process hidden. -
[Windows-only] DO use
Start-Processwith-Verb RunAsin order to launch a process elevated (with administrative privileges, with triggers a UAC security prompt), invariably in a new window.- Caveat:
-Verb RunAscannot be combined with the-RedirectStandard*parameters, so if you want to capture the elevated process' output in files, you'll need to launch a shell process with a command line that uses that shell's redirection features from inside the elevated process, along the lines ofStart-Process -Verb RunAs cmd.exe '/c "net session > out.txt"'
- Caveat:
-
[Windows-only] DO use
Start-Processwith-Credentialif you want to launch a process with a different user identity, invariably in a new window.- Caveat: This can not be combined with
-Verb RunAs, so in order to run as a different user and with elevation,Start-Processcalls must be nested, as demonstrated in this Stack Overflow answer.
- Caveat: This can not be combined with
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
- ID: fa4b8de4-3ea1-4210-4562-b084b0a51c0d
- Version Independent ID: ab184c39-041b-588c-acde-f715f6d3aee2
- Content: Start-Process (Microsoft.PowerShell.Management)
- Content Source: reference/7.0/Microsoft.PowerShell.Management/Start-Process.md
- Product: powershell
- GitHub Login: @daxian-dbw
- Microsoft Alias: dongbow
@mklement0 my use case is to start a new pwsh process with elevated administrator permission from a standard user as I try to emulate 'sudo'.
From my understanding impersonation using the -Credential paramater is only available in Start-Process. Note: search for "-Credential" in online documentation gives tons of false positive search hits :(
Do I miss an obvious alternative that would avoid above mentioned drawbacks and issues?
Good point, @mi-hol: I forgot to include the -Verb RunAs and -Credential use cases.
Note that they cannot be combined, however; if you do need to combine them - which in the typical case simply means that the admin user name is pre-populated in the UAC dialog, but you'll still have to supply the password interactively - you'll have to nest Start-Process calls.
I've updated the initial post, including with a link to a Stack Overflow answer that shows the nesting technique.
Thanks @mklement I had used the nested Start-Process calls already.
I noticed thought that on my tests this technique works only with Windows powershell as the shell to run a second elevated pwsh. Not sure if this is "by design" or a bug in pwsh's Windows compatibility.
Working example with Windows powershell:
[string]$AdminAcctName = "??replaceWithyourAdminAcctName??"
[string]$AdminAcctPwd = "??replaceWithyourAdminAcctPassword??"
[securestring]$secAdminAcctPwd = ConvertTo-SecureString $AdminAcctPwd -AsPlainText -Force
[pscredential]$AdminCredential = New-Object System.Management.Automation.PSCredential ($AdminAcctName, $secAdminAcctPwd)
Start-Process powershell.exe -Credential $AdminCredential -ArgumentList "Start-Process -FilePath 'pwsh.exe' -Verb runAs"
Failing example with pwsh:
[string]$AdminAcctName = "??replaceWithyourAdminAcctName??"
[string]$AdminAcctPwd = "??replaceWithyourAdminAcctPassword??"
[securestring]$secAdminAcctPwd = ConvertTo-SecureString $AdminAcctPwd -AsPlainText -Force
[pscredential]$AdminCredential = New-Object System.Management.Automation.PSCredential ($AdminAcctName, $secAdminAcctPwd)
Start-Process pwsh.exe -Credential $AdminCredential -ArgumentList "Start-Process -FilePath 'pwsh.exe' -Verb runAs"
@mi-hol, you're missing the -Command / -c parameter in the pwsh.exe example:
(powershell.exe defaults to -c, but pwsh.exe now defaults to -file, so as to support Unix shebang lines):
# Note the use of `-c`
Start-Process pwsh.exe -Credential (get-credential) -ArgumentList "-c Start-Process -FilePath 'pwsh.exe' -Verb runAs"
Another point that deserves to be added to the list:
- [Windows-only] DO NOT use
Start-Processwith-Verb RunAswhen you want to capture StandardOutput / StandardError from elevated process - there is NO built-in way to do that.
This, of course, leaves out the answer to the question what is the obvious 'Powershell way' to do it. And it seems there is none. Assuming that resorting to New-Object System.Diagnostics.Process is not really a 'Powershell way' to get it done.
Thanks, @wikiped, good point. Please see my update to the initial post; I've folded the information as caveat into the bullet point about -Verb RunAs, and I've also included the only solution I'm aware of (direct use of System.Diagnostics.Process wouldn't help, the limitation is likely at the level of the WinAPI).
Thank you @mklement0 for updating the list. I was struggling with System.Diagnostics.Process to get it working and do realize now that it won't help either. There is basically no way to make elevated process return its result back to the calling process. They are completely different processes at the end and it is necessary to use one of IPC approaches:
- Write to file on disk
- Use Pipes
- Use Events
- User TCP/IP
Writing to file on disk is probably the easiest to implement among those.
@wikiped, saving to files is the only thing that Start-Process itself offers, and the initial post now shows a workaround for how to achieve that in combination with -Verb RunAs: by launching the target program indirectly, via a shell process whose own redirection features can then be used.
As for IPC approaches: I haven't dug deeper, but I suspect that pipes and events aren't an option for security reasons (prevented by design, at least with respect to the standard streams), and that a TCP/IP-based mechanism would require both the caller and the elevated callee to be explicitly designed for that.
thanks for this, a small tuning
i would link to the call operator &, as that is how its referred in the docs.
Thanks, @yair-mantis - I've updated the initial post accordingly.
Note: the remark no prompt for input was not included in the fix. This is probably a good thing because this description is too vague. I understand that pwsh does not offer job control so whether it prompts or not, the input it will get from standard input will be empty unless redirected, which may but need not be OK. But it can prompt for input using another communication channel and produce its output elsewhere too, especially if it runs as a daemon like ftpd for example.