|
- @echo off
- cd /d %~dp0
- echo 正在卸载OneDrive...
- start "" /wait "C:\Windows\System32\OneDriveSetup.exe" /uninstall
- echo 正在移除系统应用...
- (
- echo $apps = @(
- echo StickyNotes,calculator,communi,camera,clipchamp,Alarms,549981C3F5F10
- echo FeedbackHub,gethelp,Notepad,Maps,BingNews,store,todo,ZuneVideo,ZuneMusic
- echo office,Solitaire,soundrecorder,bingweather,GamingApp,phone,photos,Paint
- echo ScreenSketch,QuickAssist,Getstarted,Xbox
- echo ^)
- echo $apps | %% { Get-AppxPackage -AllUsers *$_* | Remove-AppxPackage -ErrorAction SilentlyContinue }
- )>tmp.ps1
- powershell -ExecutionPolicy RemoteSigned -File tmp.ps1
- del tmp.ps1
- echo 操作完成,请检查开始菜单程序列表
- timeout /t 5
复制代码 |
|