如何抑制重启app.exe后出现的“成功”窗口?
cmd /c DisplaySwitch.exe /extend & taskkill /f /im app.exe & app.exe发布于 2020-02-22 14:01:03
你可以试着这样做:
cmd /c DisplaySwitch.exe /extend & taskkill /f /im notepad.exe>nul 2>&1 & Start "" notepad.exe & taskkill /f /im cmd.exehttps://stackoverflow.com/questions/60348464
复制相似问题