Skip to content

Instantly share code, notes, and snippets.

@mczerniawski
Created December 4, 2017 00:05
Show Gist options
  • Select an option

  • Save mczerniawski/9f4685986d8631ca34bd04540905d15d to your computer and use it in GitHub Desktop.

Select an option

Save mczerniawski/9f4685986d8631ca34bd04540905d15d to your computer and use it in GitHub Desktop.
$ComputerName = 'SomeComputer'
Invoke-Command -ComputerName $ComputerName -Credential (Get-LAPSCredential -ComputerName $ComputerName) -ScriptBlock {
Get-Service -Name BITS | Stop-Service
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment