Hello,
I had successfully setup a required software policy for installing Zoom with customer options, but for some reason I cannot get any commands to work after the install occurs. For example the start-process command installs the MSI just fine with the arguments, but when I want to run a command after that e.g. starting the Zoom app via the start-process command. Is there something wrong with how the first process is ending and or causes powershell to just stop processing further commands? I have tried taking off -wait and -passthru and no change. Any help will be appreciated.
Start-Process -FilePath ‘msiexec.exe’ -ArgumentList (’/qn’, ‘/quiet’, ‘/norestart’, ‘MSIRESTARTMANAGERCONTROL=”Disable”’, ‘/i’, ‘“ZoomInstallerFull.msi”’,‘ZConfig=“nogoogle=1;nofacebook=1;DisableLoginWithEmail=1”’, ‘ZoomAutoStart=“true”’, ‘ZSSOHOST="******.zoom.us"’, ‘ZSILENTSTART=“true”’) -Wait -Passthru
Start-Process “C:\Program Files (x86)\Zoom\bin\Zoom.exe” -WindowStyle Minimized
exit
