
Install 8×8 Work For Desktop With PowerShell
In this tutorial you will learn how to install 8×8 Work For Desktop using PowerShell. By the end of this tutorial, you would have successfully deployed 8×8 Work For Desktop onto a Windows computer.
$url = "https://vod-updates.8x8.com/ga/work-64-msi-v7.25.2-6.msi" $dest = "c:\temp\work-64-msi-v7.25.2-6.msi" Invoke-WebRequest -Uri $url -OutFile $dest msiexec.exe /i "C:\temp\work-64-msi-v7.25.2-6.msi" /qn
The PowerShell Script will do the following.
- Call to URL 8×8 installation package
- Download the 8×8 package and place it in C:\temp
- Finally, the PowerShell will install the 8×8 work .msi package onto the Windows computer.
If you have any questions, feel free to reach out.