PowerShell automation
Coffee, whiskey, etc.
```
"Server1","Server2",... | % { $s = New-PSSession $_ ; copy-item -path <...> -destination <...> -tosession $s; Remove-PSSession $s; Remove-Variable s }
```
```
"Server1","Server2",... | % { $s = New-PSSession $_ ; copy-item -path <...> -destination <...> -tosession $s; Remove-PSSession $s; Remove-Variable s }
```