暂停 explorer.exe 而不是终止进程

暂停 explorer.exe 而不是终止进程

因为我最喜欢的游戏星际争霸在 Windows 的新版本上看起来很丑陋(颜色很乱),所以我使用批处理文件来杀死资源管理器并使游戏看起来正常:

rem Kill the explorer process
taskkill /f /IM explorer.exe
rem If an application is run directly, the batch will wait for the process to end
Starcraft.exe
rem start commands starts process in diferent thread, so that this window can close
start explorer.exe

我这样做是因为使用兼容模式可以减少该问题但并不能完全消除它。

但是,令我烦恼的是,当进程再次启动时,我打开的所有资源管理器窗口都不会重新打开。是否可以暂停或正常关闭资源管理器,以便保留打开的资源管理器窗口?

我所做的可能对那些需要在开始游戏之前释放一些 RAM 的人也有用。

答案1

不可以。一旦你杀死了 explorer.exe 进程,你就无法恢复由 explorer 管理的所有内容(windows-clipboards-...)最好的办法是使用 Windows 经典主题并关闭你在玩游戏时不需要的所有进程,例如下载管理器

相关内容