Jtracy_ItPro

WebEx_Teams_x64-Install_PerUser.ps1

Sep 18th, 2020
920
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Install WebEx Teams x64 MSI
  2. # Per-User install (default)
  3.  
  4. # @Jtracy_ItPro
  5.  
  6. # There is no x86 version that I know of
  7. # there is no EXE installer that I know of
  8. # You may as well just use a raw command line instead of this script.
  9. # - JT
  10.  
  11. $Transcript = $env:TEMP + "\WebEx_Teams-Install-Transcript.log"
  12.  
  13. Start-Transcript -Path $Transcript
  14.  
  15. #=-=-=-=-=-=-
  16.  
  17. $Installer = ".\WebexTeams.msi"
  18. $Installer = Get-Item -Path $Installer | Select-Object -ExpandProperty fullname
  19. $LogFile = $env:TEMP + "\WebEx_Teams-Install.log"
  20.  
  21. #=-=-=-=-=-=
  22.  
  23. & MsiExec /i $Installer /q /norestart /log $LogFile | Wait-Process
  24.  
  25. #=-=-=-=-=-=
  26.  
  27. Stop-Transcript
Add Comment
Please, Sign In to add comment