Last active
January 15, 2020 15:20
-
-
Save aytch/d453a7c23dfcad8f08bb744de3d5ba08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$serverlist = "server1","server2" | |
# `%{}` is shorthand for ForEach-Object. | |
# `$_` is a special variable that refers to "this" item in the array. | |
$serverlist | %{ Invoke-Command -ComputerName $_ -AsJob -ScriptBlock { <some commands> } } | |
# To view results of jobs | |
Get-Job | Receive-Job |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment