标题: [文件操作] 请教WIN10下能用的批处理系统空闲时间监测 [打印本页]
作者: conan2095 时间: 2021-12-22 19:53 标题: 请教WIN10下能用的批处理系统空闲时间监测
在WIN10 下 鼠标键盘多久时间没动 就执行程序,比如说自动关机。
论坛里面搜出来的几个WIN10 下好像都不能执行。
作者: Batcher 时间: 2021-12-22 21:31
回复 1# conan2095
你搜到的是哪几个?我试试能否修改成Win10能用的。
作者: conan2095 时间: 2021-12-22 21:44
回复 2# Batcher
http://www.bathome.net/thread-20370-1-1.html
大哥是这个帖子
作者: idwma 时间: 2021-12-23 16:25
- #@&cls&powershell "type %~s0|out-string|iex"&pause&exit
- Add-Type @'
- using System;
- using System.Runtime.InteropServices;
- public static class GetIdleTime {
- [DllImport("user32.dll")]
- public static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);
- [StructLayout(LayoutKind.Sequential)]
- public struct LASTINPUTINFO {
- public int cbSize;
- public uint dwTime;
- }
- public static long IdleTime{
- get {
- LASTINPUTINFO lii = new LASTINPUTINFO();
- lii.cbSize = Marshal.SizeOf(lii);
- if (!GetLastInputInfo(ref lii)) return 0;
- return Environment.TickCount - (uint)lii.dwTime;
- }
- }
- }
- '@
- while(!(sleep 1)){
- if([getidletime]::IdleTime/1000 -gt 3){"空闲时间大于3秒"}
- }
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |