Published using Google Docs
REMOVE_KB2464588.bat
Updated automatically every 5 minutes

@echo off

:start

cls

echo ====================================================

echo 主要是用來移除M$ OFFICE 2003 Powerpoint update KB2464588

echo 參考網頁為:http://tinyurl.com/3h45n8e

echo PS:如有使用上的疑慮請勿使用,謝謝。                         2011/04/25

echo ====================================================

echo 1.Windows Office 2003 Professional 使用

echo 2.Windows Office 2003 standard 使用

set chg=

set /p chg=請選擇:

if '%chg%'=='1' goto 2003pro

if '%chg%'=='2' goto 2003std

:2003pro

if not Exist "%programfiles%\Microsoft Office\OFFICE11\winword.exe" goto no2003

if Exist c:\POWERPNT.msp c:\windows\system32\msiexec.exe /package {90110404-6000-11D3-8CFE-0150048383C9} /uninstall "c:\POWERPNT.msp" /passive

c:\windows\system32\msiexec.exe /package {90110404-6000-11D3-8CFE-0150048383C9} /uninstall {9AD3D0BA39CF75F4DA2E6B6679942BE5} /passive

echo 移除更新暫存檔

if Exist "c:\WINDOWS\SoftwareDistribution\Download\656f1c6b07c17e834ebe6336235d9ef6\POWERPNT.CAB" del "c:\WINDOWS\SoftwareDistribution\Download\656f1c6b07c17e834ebe6336235d9ef6\POWERPNT.CAB" /q

echo 按下確定後離開

pause

exit

:2003std

if not Exist "%programfiles%\Microsoft Office\OFFICE11\winword.exe" goto no2003

if Exist c:\POWERPNT.msp c:\windows\system32\msiexec.exe /package {90120404-6000-11D3-8CFE-0150048383C9} /uninstall "c:\POWERPNT.msp" /passive

c:\windows\system32\msiexec.exe /package {90120404-6000-11D3-8CFE-0150048383C9} /uninstall {9AD3D0BA39CF75F4DA2E6B6679942BE5} /passive

echo 移除更新暫存檔

if Exist "c:\WINDOWS\SoftwareDistribution\Download\656f1c6b07c17e834ebe6336235d9ef6\POWERPNT.CAB" del "c:\WINDOWS\SoftwareDistribution\Download\656f1c6b07c17e834ebe6336235d9ef6\POWERPNT.CAB" /q

echo 按下確定後離開

pause

exit

:no2003

echo "你的電腦中並沒有符合的WINDOWS OFFICE 版本"

echo 按下確定後離開

pause

exit