我制作了一个脚本来运行一个在 explorer.exe 运行时出现严重问题的旧游戏。这个脚本杀死 explorer.exetaskkill /F /IM explorer.exe
并且工作正常。但是当我运行start explorer.exe
或Start-Process explorer.exe
它不会恢复我的界面(任务栏等)但会打开一个单一的资源管理器窗口时。如何使用 powershell 命令恢复我的 GUI?
谢谢!
编辑:来源
Mount-DiskImage -ImagePath "D:\Roms\PC\Anno\Anno 1602 KE\Anno 1602 KE.iso"
taskkill /F /IM explorer.exe
Start-Process .\1602.exe -Wait
start explorer.exe
Dismount-DiskImage -ImagePath "D:\Roms\PC\Anno\Anno 1602 KE\Anno 1602 KE.iso"