Uninstall script MS Visio
I am pretty new to KACE scripting and found couple way to run scripts, online shell scripts. online KScripts, and offline KScript. I am trying to uninstall Microsoft Visio and Microsfot office proof. I got the following scripts.
For office proof
For visio 2019,
"C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" scenario=install scenariosubtype=ARP sourcetype=None productstoremove=VisioPro2019Volume.16_en-us_x-none culture=en-us version.16=16.0
Can anyone guide me on how to use this on Kscript?
Thank you
Answers (1)
Can run it as a batch file.........
REM Microsoft Office Professional Plus 2019 - en-us
REM Uninstall Command:
"C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" scenario=install scenariosubtype=ARP sourcetype=None productstoremove=ProPlus2019Volume.16_en-us_x-none culture=en-us version.16=16.0 DisplayLevel=False
REM Microsoft Office Professional Plus 2019 - en-us.proof
REM Uninstall Command:
"C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" scenario=install scenariosubtype=ARP sourcetype=None productstoremove=ProPlus2019Volume.16_en-us.proof_x-none culture=en-us.proof version.16=16.0 DisplayLevel=False
Would look like this..........
This will run silently If you add the DisplayLevel=False to the end it becomes silent.