壓縮 winsxs 目錄
移除 Service pack 備份檔後,C:\Windows\winsis 還是很大 (我的有 14.xGB)
想刪掉又怕怕的!~ 所以把它壓縮起來吧!
a. 用 [系統管理者權限] 開啟 cmd.exe
b. 停用 Windows Installer 跟 Windows Module Installer 服務
sc stop msiserver
sc stop TrustedInstaller
sc config msiserver start= disabled
sc config TrustedInstaller start= disabled
c. 備份 winsxs 的 ACLs
icacls "%WINDIR%\WinSxS" /save "%WINDIR%\WinSxS.acl" /t
d. 取得 winsxs 與其子目錄的擁有權
takeown /f "%WINDIR%\WinSxS" /r
e. 取得 winsxs 與其子目錄的完整控制權
icacls "%WINDIR%\WinSxS" /grant "%USERDOMAIN%\%USERNAME%":(F) /t
f. 壓縮它!
compact /s:"%WINDIR%\WinSxS" /c /a /i *
這樣可以省掉不少空間!
懶得打那麼多指令的,也有懶人包~ 請以系統管理者權限執行喔!