我想使用 psshutdown 来锁定我的电脑,但是它不起作用 :/ 我尝试了网上找到的所有方法,但最终还是出现了错误
C:\Users\amade>psshutdown -l
PsShutdown v2.52 - Shutdown, logoff and power manage local and remote systems
Copyright (C) 1999-2006 Mark Russinovich
Sysinternals - www.sysinternals.com
Error locking local system:
Access is denied.
答案1
- 锁定 PC:.
psexec -s -i 1 \\DESKTOP-TRISK "C:\Windows\System32\psshutdown.exe" -l -t 0
将 DESKTOP-TRISK 更改为您的桌面名称 -> 打开 cmd 并输入“hostname”,应该会显示您当前的桌面名称。- 睡眠中的 PC:
psshutdown -d -t 0
- 关闭电脑:
psshutdown -f -t 0
致谢u/Trisks找到这个解决方案