@echo off
echo 正在卸载 Windows 7 自带游戏,请稍等...
ping -n 4 127.0.0.1 > nul
for %%a in (bspatch.exe cards.dll freecell.exe mshearts.exe sol.exe spider.exe winmine.exe) do (
takeown /f "%ProgramFiles%\Microsoft Games\%%a" > nul
icacls "%ProgramFiles%\Microsoft Games\%%a" /grant administrators:F > nul
del /f /q "%ProgramFiles%\Microsoft Games\%%a" > nul
)
rd /s /q "%ProgramFiles%\Microsoft Games" > nul
echo 完成。Windows 7 自带游戏已被卸载。
pause