完全用 Windows 工作 [windows-skill][edit]
- March 31, 2026
- kokic
完全用 Windows 工作 [windows-skill][edit]
- March 31, 2026
- kokic
此文为 Windows 系统使用技巧收集, 且侧重介绍微软对普通用户隐藏的实用工具.
1. 资源管理器字太小 [#][edit]
自 Windows 8.1 起, 资源管理器乃至系统 UI 文字样式已经不能用正常手段调整. 开源软件 No!! MeiryoUI 重新启用了自定义 Windows 用户界面字体的功能.1. 资源管理器字太小 [#][edit]
5. 查看文件被哪些进程使用 [#][edit]
5. 查看文件被哪些进程使用 [#][edit]
安装 Process Explorer 然后 Find > Find Handle or DLL, 点击检索出的条目定位对应进程, 然后可将进程终止. 除了 Process Explorer, Sysinternals 页面也包含其他 Windows 实用工具, 此处不再详细介绍.
9. 低内存极端优化 [#][edit]
9. 低内存极端优化 [#][edit]
9.5. 卸载自带 UWP 应用 [#][edit]
9.5. 卸载自带 UWP 应用 [#][edit]
在此之前请先确保卸载了 Windows Web Experience Pack. 然后在 PowerShell 以管理员模式执行
$bloatware = @(
"BingWeather", "WebExperience", "BingNews", "YourPhone",
"WindowsFeedbackHub", "MicrosoftOfficeHub", "Xbox",
"ZuneVideo", "ZuneMusic", "Clipchamp", "WindowsMaps",
"People", "GetHelp", "windowscommunicationsapps",
"OneNote", "Todos", "StickyNotes", "PowerAutomateDesktop",
"SolitaireCollection", "SkypeApp"
)
foreach ($app in $bloatware) {
Get-AppxPackage -AllUsers "*$app*" | Remove-AppxPackage -ErrorAction SilentlyContinue
Write-Host "rm: $app" -ForegroundColor Cyan
}此处 BingWeather 至 SkypeApp 为要卸载的程序的内部包名, 卸载前建议按需调整.