Stop-Computer - PowerShell command help and examples

Stops (shuts down) local and remote computers. (Stop-Computer)


NAME
Stop-Computer
SYNOPSIS
Stops (shuts down) local and remote computers.
SYNTAX
Stop-Computer [[-ComputerName] <string[]>] [[-Credential] <PSCredential>] [-AsJob] [-Authentication {Default | None | Connect | Call | Packet | PacketIntegrity | PacketPrivacy | Unchanged}] [-Force] [-Impersonation {Default | Anonymous | Identify | Impersonate | Delegate}] [-ThrottleLimit <int>] [-Confirm] [-WhatIf] [<CommonParameters>]
DESCRIPTION
The Stop-Computer cmdlet shuts down computers remotely. It can also shut down the local computer. You can use the parameters of Stop-Computer to run the shutdown operations as a background job, to specify the authentication levels and alternate credentials, to limit the concurrent connections that are created to run the command, and to force an immediate shut down. This cmdlet does not require Windows PowerShell remoting unless you use the AsJob parameter.
PARAMETERS
-AsJob [<SwitchParameter>] Runs the command as a background job. Note: To use this parameter, the local and remote computers must be configured for remoting and, on Windows Vista and later versions of Windows, you must open Windows PowerShell with the "Run as administrator" option. For more information, see about_Remote_Requirements". When you use the AsJob parameter, the command immediately returns an object that represents the background job. You can continue to work in the session while the job completes. The job is created on the local computer and the results from remote computers are automatically returned to the local computer. To manage the job, use the Job cmdlets. To get the job results, use the Receive-Job cmdlet. For more information about Windows PowerShell background jobs, see about_Jobs and see about_Remote_Jobs. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Authentication <AuthenticationLevel> Specifies the authentication level that is used for the WMI connection. (Stop-Computer uses WMI.) The default value is Packet. Valid values are: Unchanged: The authentication level is the same as the previous command. Default: Windows Authentication. None: No COM authentication. Connect: Connect-level COM authentication. Call: Call-level COM authentication. Packet: Packet-level COM authentication. PacketIntegrity: Packet Integrity-level COM authentication. PacketPrivacy: Packet Privacy-level COM authentication. Required? false Position? named Default value 4 Accept pipeline input? false Accept wildcard characters? false -ComputerName <string[]> Stops the specified computers. The default is the local computer. Type the NETBIOS name, IP address, or fully qualified domain name of one or more computers in a comma-separated list. To specify the local computer, type the computername or "localhost". This parameter does not rely on Windows PowerShell remoting. You can use the ComputerName parameter even if your computer is not configured to run remote commands. Required? false Position? 1 Default value . Accept pipeline input? true (ByPropertyName) Accept wildcard characters? false -Credential <PSCredential> Specifies a user account that has permission to perform this action. The default is the current user. Type a user name, such as "User01" or "Domain01\User01", or enter a PSCredential object, such as one from the Get-Credential cmdlet. Required? false Position? 2 Default value Current user Accept pipeline input? false Accept wildcard characters? false -Force [<SwitchParameter>] Forces an immediate shut down of the computers. Required? false Position? named Default value False Accept pipeline input? false Accept wildcard characters? false -Impersonation <ImpersonationLevel> Specifies the impersonation level to use when calling WMI. (Stop-Computer uses WMI.) The default value is "Impersonate". Valid values are: Default: Default impersonation. Anonymous: Hides the identity of the caller. Identify: Allows objects to query the credentials of the caller. Impersonate: Allows objects to use the credentials of the caller. Required? false Position? named Default value Impersonate Accept pipeline input? false Accept wildcard characters? false -ThrottleLimit <int> Specifies the maximum number of concurrent connections that can be established to run this command. If you omit this parameter or enter a value of 0, the default value, 32, is used. The throttle limit applies only to the current command, not to the session or to the computer. Required? false Position? named Default value 32 Accept pipeline input? false Accept wildcard characters? false -Confirm [<SwitchParameter>] Prompts you for confirmation before executing the command. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -WhatIf [<SwitchParameter>] Describes what would happen if you executed the command without actually executing the command. Required? false Position? named 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
None You cannot pipe input to this cmdlet.
OUTPUTS
None or System.Management.Automation.RemotingJob When you use the AsJob parameter, the cmdlet returns a job object (System.Management.Automation.RemotingJob). Otherwise, it does not generate any output.
NOTES
This cmdlet uses the Win32Shutdown method of the Win32_OperatingSystem WMI class.

Examples

EXAMPLE 1
C:\PS>stop-computer
Description
----------- This command shuts down the local computer.
EXAMPLE 2
C:\PS>stop-computer -computername Server01, Server02, localhost
Description
----------- This command stops two remote computers, Server01 and Server02, and the local computer, identified as "localhost".
EXAMPLE 3
C:\PS>$j = stop-computer -computername Server01, Server02 -asjob C:\PS> $results = $j | receive-job C:\PS> $results
Description
----------- These commands run a Stop-Computer command as a background job on two remote computers, and then get the results. The first command uses the AsJob parameter to run the command as a background job. The command saves the resulting job object in the $j variable. The second command uses a pipeline operator to send the job object in $j to the Receive-Job cmdlet, which gets the job results. The command saves the results in the $results variable. The third command displays the result saved in the $results variable. Because the AsJob parameter creates the job on the local computer and automatically returns the results to the local computer, you can run the Receive-Job command as a local command.
EXAMPLE 4
C:\PS>stop-computer -comp Server01 -impersonation anonymous -authentication PacketIntegrity
Description
----------- This command restarts the Server01 remote computer. The command uses customized impersonation and authentication settings.
EXAMPLE 5
C:\PS>$s = get-content domain01.txt C:\PS> $c = get-credential domain01\admin01 C:\PS> stop-computer -computername $s -force -throttlelimit 10 -credential $c
Description
----------- These commands force an immediate shut down of all of the computers in Domain01. The first command gets a list of computers in the domain and saves it in the $s variable. The second command gets the credentials of a domain administrator and saves them in the $c variable. The third command shuts down the computers. It uses ComputerName parameter to submit the list of computers in the $s variable, the Force parameter to force an immediate shutdown, and the Credential parameter to submit the credentials saved in the $c variable. It also uses the ThrottleLimit parameter to limit the command to 10 concurrent connections. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=135263 Add-Computer Checkpoint-Computer Remove-Computer Restart-Computer Restore-Computer Test-Connection C:\Windows>powershell get-help Restore-Computer -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: Stops (shuts down) local and remote computers.

HTTP: ... PS_Windows/en/Stop-Computer.htm
0.108
13843

What is Synchronize (sync)?

Was sind Tabellenkalkulationen?

Default Text for the Desktop Short Note on Windows 11, 10, 8.1, ...!

How can I activate Windows 7 via phone system?

What is an enter key?

What is a nettop?



(0)