Last active
November 28, 2017 12:25
-
-
Save paveljurca/5af930983f2e9fd87a159db386efe6df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM Can I SUDO? | |
type nul>>%systemdrive%\sudo 2>NUL: || msg %username% "ERR: Must run as administrator" | |
REM ====== UNINSTALL ===== | |
MsiExec.exe /q /X{0FBCC987-1B91-4946-91E5-B985A925505E}^ | |
&& echo Mediasite Search REMOVED | |
MsiExec.exe /q /X{2D856B2E-8970-42F5-8987-366DFFFD6159}^ | |
&& echo Mediasite System Service REMOVED | |
MsiExec.exe /q /X{8559C12D-5987-4808-9E0C-024D955438F2}^ | |
&& echo Mediasite OCR REMOVED | |
MsiExec.exe /q /X{A3662247-9842-4A8F-BD3E-2F57E992B931}^ | |
&& echo Mediasite Transcode REMOVED | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment