Wait-Process - PowerShell command help and examples

Waits for the processes to be stopped before accepting more input. (Wait-Process)


NAME
Wait-Process
SYNOPSIS
Waits for the processes to be stopped before accepting more input.
SYNTAX
Wait-Process [-Id] <Int32[]> [[-Timeout] <int>] [<CommonParameters>] Wait-Process -InputObject <Process[]> [[-Timeout] <int>] [<CommonParameters>] Wait-Process [-Name] <string[]> [[-Timeout] <int>] [<CommonParameters>]
DESCRIPTION
The Wait-Process cmdlet waits for one or more running processes to be stopped before accepting input. In the Windows PowerShell console, this cmdlet suppresses the command prompt until the processes are stopped. You can specify a process by process name or process ID (PID), or pipe a process object to Wait-Process. Wait-Process works only on processes running on the local computer.
PARAMETERS
-Id <Int32[]> Specifies the process IDs of the processes. To specify multiple IDs, use commas to separate the IDs. To find the PID of a process, type "get-process". The parameter name ("Id") is optional. Required? true Position? 1 Default value Accept pipeline input? true (ByPropertyName) Accept wildcard characters? false -InputObject <Process[]> Specifies the processes by submitting process objects. Enter a variable that contains the process objects, or type a command or expression that gets the process objects, such as a Get-Process command. Required? true Position? named Default value Accept pipeline input? true (ByValue) Accept wildcard characters? false -Name <string[]> Specifies the process names of the processes. To specify multiple names, use commas to separate the names. Required? true Position? 1 Default value Accept pipeline input? true (ByPropertyName) Accept wildcard characters? false -Timeout <int> Determines the maximum time, in seconds, that Wait-Process waits for the specified processes to stop. When this interval expires, the command displays a non-terminating error that lists the processes that are still running, and ends the wait. Required? false Position? 2 Default value 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
System.Diagnostics.Process You can pipe a process object to Wait-Process.
OUTPUTS
None This cmdlet does not generate any output.
NOTES
This cmdlet uses the WaitForExit method of the System.Diagnostics.Process class. For more information about this method, see the Microsoft .NET Framework SDK.

Examples

EXAMPLE 1
C:\PS>$nid = (get-process notepad).id C:\PS> stop-process -id $nid C:\PS> wait-process -id $nid
Description
----------- These commands stop the Notepad process and then wait for the process to be stopped before proceeding with the next command. The first command uses the Get-Process cmdlet to get the ID of the Notepad process. It saves it in the $nid variable. The second command uses the Stop-Process cmdlet to stop the process with the ID saved in $nid. The third command uses the Wait-Process cmdlet to wait until the Notepad process is stopped. It uses the ID parameter of Wait-Process to identify the process.
EXAMPLE 2
C:\PS>$p = get-process notepad C:\PS> wait-process -id $p.id C:\PS> wait-process -name notepad C:\PS> wait-process -inputobject $p
Description
----------- These commands show three different methods of specifying a process to the Wait-Process cmdlet. The first command gets the Notepad process and saves it in the $p variable. The second command uses the ID parameter, the third command uses the Name parameter, and the fourth command uses the InputObject parameter. These commands have the same results and can be used interchangeably.
EXAMPLE 3
C:\PS>wait-process -name outlook, winword -timeout 30
Description
----------- This command waits 30 seconds for the Outlook and Winword processes to stop. If both processes are not stopped, the cmdlet displays a non-terminating error and the command prompt. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=135277 Get-Process Start-Process Stop-Process Wait-Process Debug-Process C:\Windows>powershell get-help Debug-Process -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Waits for the processes to be stopped before accepting more input.

HTTP: ... PS_Windows/en/Wait-Process.htm
0.062
15520
Does MS Office 2000 / XP work on MS Windows 11, 10, ...?
Wurde mit Code -1073741701 (0xc000007b) Fehlermeldung!
Command to assign local directorys as network drives with drive letters!
Force delete directory using command prompt?
Search data, sort by date and delete at MS Windows restart!
Start task manager under Windows 11, 10, ...!
Can I turn off the clicking sound in ms internet explorer?
How to block winrar to open zip and cab files?
Remove or add delete at restart via Microsoft File Explorer Menu!
Change drive letters via the command prompt in Windows 11, 10, ....!



(0)