NAME
Start-Process
SYNOPSIS
Starts one or more processes on the local computer.
SYNTAX
Start-Process [-FilePath] <string> [[-ArgumentList] <string[]>] [-Credential <PSCredential>] [-LoadUserProfile] [-NoNewWindow] [-PassThru] [-RedirectStandardError <string>] [-RedirectStandardInput <string>] [-RedirectStandardOutput <string>] [-UseNewEnvironment] [-Wait] [-WorkingDirectory <string>] [<CommonParameters>]
Start-Process [-FilePath] <string> [[-ArgumentList] <string[]>] [-PassThru] [-Verb <string>] [-Wait] [-WindowStyle {Normal | Hidden | Minimized | Maximized}] [-WorkingDirectory <string>] [<CommonParameters>]
DESCRIPTION
Starts one or more processes on the local computer. To specify the program that runs in the process, enter an executable file or script file, or a file that can be opened by using a program on the computer. If you specify a non-executable file, Start-Process starts the program that is associated with the file, much like the Invoke-Item cmdlet.
You can use the parameters of Start-Process to specify options, such as loading a user profile, starting the process in a new window, or using alternate credentials.
PARAMETERS
-ArgumentList <string[]>
Specifies parameters or parameter values to use when starting the process. The parameter name (“Arguments”) is optional.
Required? false
Position? 2
Default value None
Accept pipeline input? false
Accept wildcard characters? false
-Credential <PSCredential>
Specifies a user account that has permission to perform this action. Type a user-name, such as “User01” or “Domain01\User01”, or enter a PSCredential object, such as one from the Get-Credential cmdlet. By default, the cmdlet uses the credentials of the current user.
Required? false
Position? named
Default value Current user.
Accept pipeline input? false
Accept wildcard characters? false
-FilePath <string>
Specifies the path (optional) and file name of the program that runs in the process. Enter the name of an executable file or of a document, such as a .txt or .doc file, that is associated with a program on the computer. This parameter is required.
If you specify only a file name, use the WorkingDirectory parameter to specify the path.
Required? true
Position? 1
Default value
Accept pipeline input? false
Accept wildcard characters? false
-LoadUserProfile [<SwitchParameter>]
Loads the Windows user profile stored in the HKEY_USERS Registry key for the current user. The default value is FALSE.
This parameter does not affect the Windows PowerShell profiles. (See about_profiles.)
Required? false
Position? named
Default value False
Accept pipeline input? false
Accept wildcard characters? false
-NoNewWindow [<SwitchParameter>]
Prevents the process from running in a new window. By default, the process runs in a new window.
Required? false
Position? named
Default value False
Accept pipeline input? false
Accept wildcard characters? false
-PassThru [<SwitchParameter>]
Returns a process object for each process that the cmdlet started. By default, this cmdlet does not generate any output.
Required? false
Position? named
Default value False
Accept pipeline input? false
Accept wildcard characters? false
-RedirectStandardError <string>
Sends any errors generated by the process to a file that you specify. Enter the path and file name. By default, the errors are displayed in the console.
Required? false
Position? named
Default value Errors are displayed in the console
Accept pipeline input? false
Accept wildcard characters? false
-RedirectStandardInput <string>
Reads input from the specified file. Enter the path and file name of the input file. By default, the process gets its input from the keyboard.
Required? false
Position? named
Default value Keyboard
Accept pipeline input? false
Accept wildcard characters? false
-RedirectStandardOutput <string>
Sends the output generated by the process to a file that you specify. Enter the path and file name. By default, the output is displayed in the console.
Required? false
Position? named
Default value FALSE
Accept pipeline input? false
Accept wildcard characters? false
-UseNewEnvironment [<SwitchParameter>]
Use new Environment Variables specified for the process. By default, the started process runs with the Environment Variables specified for the computer and user.
Required? false
Position? named
Default value False
Accept pipeline input? false
Accept wildcard characters? false
-Verb <string>
Specifies a verb to be used when starting the process, such as Edit, Open, or Print.
Each file type has a set of verbs that you can use. To find the verbs that can be used with the process, use the Verbs property of the object.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-Wait [<SwitchParameter>]
Waits for the specified process to complete before accepting more input. This parameter suppresses the command prompt or retains the window until the process completes.
Required? false
Position? named
Default value False
Accept pipeline input? false
Accept wildcard characters? false
-WindowStyle <ProcessWindowStyle>
Specifies the state of the windows used for the process. Valid values are Normal, Hidden, Minimized, and Maximized. The default value is Normal.
Required? false
Position? named
Default value Normal
Accept pipeline input? false
Accept wildcard characters? false
-WorkingDirectory <string>
Specifies the location of the executable file or document that runs in the process. The default is the current directory.
Required? false
Position? named
Default value Current directory
Accept pipeline input? false
Accept wildcard characters? false
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug,
ErrorAction, ErrorVariable, WarningAction, WarningVariable,
OutBuffer and OutVariable. For more information, type,
“Get-Help about_CommonParameters“.
INPUTS
None
You cannot pipe input to Start-Process.
OUTPUTS
None or System.Diagnostics.Process
When you use the PassThru parameter, Start-Process generates a System.Diagnostics.Process. Otherwise, this cmdlet does not return any output.
NOTES
This cmdlet is implemented by using the Start method of the System.Diagnostics,Process class. For more information about this method, see “Process.Start Method” in the MSDN (Microsoft Developer Network) library at http://go.microsoft.com/fwlink/?LinkId=143602.
————————– EXAMPLE 1 ————————–
C:\PS>Start-Process sort.exe
Description
———–
This command starts a process that uses the Sort.exe file in the current directory. The command uses all of the default values, including the default window style, working directory, and credentials.
————————– EXAMPLE 2 ————————–
C:\PS>Start-Process myfile.txt -WorkingDirectory “C:\PS-Test” -verb Print
Description
———–
This command starts a process that prints the C:\PS-Test\MyFile.txt file.
————————– EXAMPLE 3 ————————–
C:\PS>Start-Process Sort.exe -RedirectStandardInput Testsort.txt -RedirectStandardOutput Sorted.txt -RedirectStandardError SortError.txt -UseNewEnvironment
Description
———–
This command starts a process that sorts items in the Testsort.txt file and returns the sorted items in the Sorted.txt files. Any errors are written to the SortError.txt file.
The UseNewEnvironment parameter specifies that the process runs with its own Environment Variables.
————————– EXAMPLE 4 ————————–
C:\PS>Start-Process notepad -Wait -windowstyle Maximized
Description
———–
This command starts the Notepad process. It maximizes the window and retains the window until the process completes.
RELATED LINKS
Online version: http://go.microsoft.com/fwlink/?LinkID=135261
Start-Service
Get-Process
Stop-Process
Wait-Process
Debug-Process