SCCM Shockwave Uninstaller

Here is my script to uninstall shockwave 12.2 and 12.3. Haven't tested on other versions though:

# Shockwave Uninstaller
# Rui Qiu
# 4/29/2019

#Check for newer or older version of Shockwave

if exist “C:\Windows\SysWOW64\Adobe\Shockwave 12\Uninstaller.exe” goto filefound
:filefound
# Uninstall Older version of Shockwave, eg 12.2
CD “C:\Windows\SysWOW64\Adobe\Shockwave 12\”
Uninstaller.exe /S
:End

else goto newer
:newer
# Uninstall Newer version of Shockwave, eg 12.3
wmic product where “name like ‘Adobe Shockwave Player%%'” call uninstall /nointeractive
:End

 

And here is the detection rule:

On File System:

%Windir%\SysWOW64\Adobe\Shockwave 12

Plugin.dll

 

Uncheck “This file or folder is associated with a 32-bit application on 64-bit systems.

 

1 thought on “SCCM Shockwave Uninstaller”

Leave a Comment