Powershell
Süper Script Bir dosyayı birden fazla Server’a kopyalama
Süper powershell script’i ile paylaşımdaki bir dosyayı onlarca hatta yüzlerce sunucu veya bilgisayara tek bir komutla kopyalayabilirsiniz.
1 2 3 4 5 6 7 8 9 10 |
Aşağıdaki komut bir dosyayı veya klasörü birden fazla sunucuya aynı anda kopyalar $ServerListesi = "SERVER01","SERVER02" $ScriptSource = "\PAYLASIMKLASORU\DOSYA\Server-Check.ps1" foreach ($item in $ServerListesi) { Copy-Item -LiteralPath $ScriptSource -Destination \\$item\c$\Dosyalar } |
Komutu çalıştırıyorum ve hem SERVER01,SERVER02 sunucusunda \\Server\C$\Dosyalar altına ilgili dosya bu örnekte ps1 scripti kopyalanmış durumda.
Sizce de süper değil mi.