Difference between revisions of "Invoke-Command"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "Running command or local script on remote host ``` Invoke-Command -ComputerName $host -ScriptBlock { Get-ChildItem C:\ } -credential $username Invoke-Command -ComputerName $h...")
(No difference)

Revision as of 16:38, 11 January 2021

Running command or local script on remote host

Invoke-Command -ComputerName $host -ScriptBlock { Get-ChildItem C:\ } -credential $username

Invoke-Command -ComputerName $host-f C:\tmp\local-file-on-remote.ps1