Try our new Certificate Revocation List Check Tool
CRLcheck.exe is a tool developed to verify digital signatures of executable files. It collects files from known paths on your client, checks their signature, and checks Certificate Revocation Lists (CRL) and OCSP download. This helps avoid delays in launching files.
Category published:  Hotfixes, Updates WSUS   Click on the Category button to get more articles regarding that product.

Deinstallieren von Office Validation Plugin KB2501584, KB2570623

Posted by admin on 27.07.2011

Hallo zusammen,
ich habe es bei uns in der Firma mit einem Script gelöst.
Da wir eine lustige gemischte Umgebung mit Office 2003/2007/2010 haben und der Fehler nur mit Office 2003 auftritt, braucht das
Add-in auch nur bei diesen Maschinen deinstalliert werden. Vielleicht hilft dieses Script ja auch irgendjemand anderem mit ähnlicher Konstellation weiter.
Viele Grüße
Christian
echo #################################################
echo # Prueft, ob das Office File Validation Add-in #
echo # fuer Office 2003 installiert ist . Benutzer #
echo # von Office 2007 und 2010 sind nicht betroffen #
echo # Version 0.1 – 30.06.2011 – Cz/262 #
echo #################################################
echo .
REM
REM Erstmal Istsituation abchecken
REM Office 2010 ist installiert, also keine Aktion
if exist “c:\Programme\Microsoft Office\Office14\excel.exe” GOTO NOACTION
REM Office 2007 ist installiert, also keine Aktion
if exist “c:\Programme\Microsoft Office\Office12\excel.exe” GOTO NOACTION
REM Gucken, ob Office 2003 installiert ist
if exist “c:\Programme\Microsoft Office\Office11\excel.exe” GOTO OFFICE2003
GOTO NOACTION
:OFFICE2003
REM Wir haben zwar Office 2003, aber auch das OFV-Update?
echo ######################################################################
echo ####### Sie haben zwar Office 2003, aber auch das OFV-Update? #######
echo ######################################################################
echo .
if exist “C:\Programme\Microsoft Office\Office14\GKExcel2.dll” GOTO UNINSTALL
GOTO NOACTION
:UNINSTALL
echo ######################################################################
echo ####### Deinstallation des Office File Validation Add-in ############
echo ######################################################################
echo .
MsiExec.exe /quiet /x {90140000-2005-0000-0000-0000000FF1CE}
GOTO :QUIT
:NOACTION
echo ######################################################################
echo ## Keine Deinstallation des Office File Validation Add-in notwendig ##
echo ######################################################################
echo .
GOTO QUIT
:QUIT
echo ##########################
echo ##### Habe fertig… #####
echo ##########################
echo .
exit

 Category published:  Hotfixes, Updates WSUS   Click on the Category button to get more articles regarding that product.