Advertisement
DIRT8IKE

Adobe Install PowerShell

Jun 12th, 2025
807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Last modified 5/7/25 by
  2.  
  3.  
  4. <#
  5.     Install runs in 2 steps
  6.     1) Uses adobe uninstall tool to clear out all existing adobe installations
  7.     2) Installs new package from Adobe.
  8. #>
  9.  
  10. # CLEANUP
  11. Start-Process -FilePath "$PSScriptRoot\AdobeUninstaller.exe" -Wait -ArgumentList "--all"
  12.  
  13. # INSTALL
  14. Start-Process -FilePath "$PSScriptRoot\InstallFiles\Build\setup.exe" -Wait -ArgumentList "--silent"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement