1 Star 23 Fork 4

Jin/prevent-screen-lock-shell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
prevent-screen-lock.ps1 577 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jin 提交于 2021-04-16 22:10 . update prevent-screen-lock.ps1.
Add-Type -AssemblyName System.Windows.Forms
# 你可以根据你的实际情况修改间隔时间
New-Variable -name INTERVAL -Value (60 * 3) -Option Constant -Description 'for 5mins lock default'
get-date
echo `start`
while ($true) {
$key = '{SCROLLLOCK}'
get-date
echo "press key $key`n"
try {
[System.Windows.Forms.SendKeys]::SendWait($key)
[System.Windows.Forms.SendKeys]::SendWait($key)
}
catch {
Write-Host "An error occurred:"
Write-Host $_
Write-Host $_.ScriptStackTrace
}
sleep -s $INTERVAL
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PowerShell
1
https://gitee.com/zeeus/prevent-screen-lock-shell.git
git@gitee.com:zeeus/prevent-screen-lock-shell.git
zeeus
prevent-screen-lock-shell
prevent-screen-lock-shell
master

搜索帮助