我正在尝试在Windows启动时通过Powershell脚本运行进程。幸运的是,我运行它的PC速度很慢。在大多数情况下,启动过程方法会因消息This command cannot be executed due to the error: The service did not respond to the start or control request in a timely fashion
而“崩溃”。有没有办法调整此超时时间或执行某些操作来解决此问题?
出现此问题的行:
Start-Process $AppPath -Credential $credential -WorkingDirectory $InstalationPath
编辑:我也尝试将HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\ServicesPipeTimeout
和HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\WaitToKillServiceTimeout
设置为一些大值(最大1200000),但这没有帮助。