Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kevinblumenfeld/bb6ea0dd8bcbc43639cb4c4e0062a697 to your computer and use it in GitHub Desktop.
Save kevinblumenfeld/bb6ea0dd8bcbc43639cb4c4e0062a697 to your computer and use it in GitHub Desktop.
$computers = "se-c-w7o13-3", "se-c-w10o10"
$scriptblock = {
$usession = $using:session
D:
cd D:\scripts
. .\Send-File.ps1
Send-File -Source "\\source\msi\OfficeProPlus.msi" -Destination "C:\scripts\R\OfficeProPlus.msi" -Session $usession
}
$computers | % {
$session = New-PSSession $_
Invoke-Command -ScriptBlock $scriptblock -AsJob -ComputerName localhost
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment