■ Invoke-Command 명령에서 -ComputerName/-ScriptBlock 스위치를 사용해 원격 명령을 실행하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 |
$ServiceName = "WinRM" Invoke-Command -ComputerName "127.0.0.1" -ScriptBlock {Get-Service -Name $ServiceName} |
■ Invoke-Command 명령에서 -ComputerName/-ScriptBlock 스위치를 사용해 원격 명령을 실행하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 |
$ServiceName = "WinRM" Invoke-Command -ComputerName "127.0.0.1" -ScriptBlock {Get-Service -Name $ServiceName} |