Загрузка страницы

PowerShell Installing software remotely on Multiple Computers

In this video you will be able to install software remotely. You have to ensure that you identify the silent installer switch to use in Script. You can get it on Google as always. I am giving the script which is working 100 % for me and I have shown you demo in this video.

Script is as below. copy and paste it in PowerShell ISE and use it.
===========================================================
$Servers = Get-content "C:\Scripts\livePCs.txt"
$Folder= "c:\Software\AcroRdrDC2100520060_en_US.exe" , "c:\Software\7z1900-x64.msi"

Foreach ($Server in $Servers) {
$Test = Test-Path -path "\\$Server\c$\Temp\"

If ($Test -eq $True) {Write-Host "Path exists, hence installing softwares on $Server."}

Else {(Write-Host "Path doesnt exists, hence Creating foldet on $Server and starting installation") , (New-Item -ItemType Directory -Name Temp -Path "\\$Server\c$")}
Echo "Copying Files to C:\Temp\"
Copy-Item $Folder "\\$Server\c$\Temp\"
echo "Second Part :- Installing Software on $Server"
Invoke-Command -ComputerName $Server -ScriptBlock {(&cmd.exe /c "c:\Temp\AcroRdrDC2100520060_en_US.exe" /sAll /sr) ,
(&cmd.exe /c MSIEXEC /I "c:\Temp\7z1900-x64.msi" /qn) , (Remove-Item -path "C:\Temp\AcroRdrDC2100520060_en_US.exe" , "C:\Temp\7z1900-x64.msi" -ErrorAction Ignore)

}

}
============================================================

Видео PowerShell Installing software remotely on Multiple Computers канала Swapnil Infotech
Показать
Комментарии отсутствуют
Введите заголовок:

Введите адрес ссылки:

Введите адрес видео с YouTube:

Зарегистрируйтесь или войдите с
Информация о видео
6 сентября 2021 г. 1:13:16
00:14:34
Яндекс.Метрика