赞
踩
起因:公司电脑加入域控,短时间内不操作就会锁屏,设置电源管理不起作用,恰好搜到现成代码,经测试,非常好用。
新建一个html文件,输入以下代码,用ie浏览器打开
下方弹出框,选择“Allow blocked content”
过了片刻,弹窗do you want to allow this interaction
点 YES
操作完成后,最小化IE浏览器即可。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>I need you still work!</title>
</head>
<body bgcolor="#215E21">
<script type="text/javascript">
function PressKey(){
var objWs = new ActiveXObject("Wscript.Shell");
objWs.SendKeys("{SCROLLLOCK}");
}
setInterval("PressKey()",60000);//按下按键的间隔时间。
</script>
</body>
</html>
参考
https://blog.csdn.net/zhusongziye/article/details/79704546
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。