2014-10-29 68 views
-5

我的电脑上有一些进程正在运行,我想每隔10分钟自动截取桌面的屏幕截图。有没有办法做到这一点?Automatic每隔10分钟屏幕截图

+0

我使用WINDOS OS – 2014-10-29 16:34:12

回答

0

按照步骤

Download Nircmd.exe and paste into c:/Windows/System32 
Then make a bat file and paste the below script 

@ echo off 
Nircmd.exe savescreenshot "C:\Users\Kishore\Desktop\Screenshot.jpg" 

使用窗口程序器,你可以安排在每10分钟这个bat文件。在每隔10分钟,您将获得保存在给定位置文件夹中的屏幕截图。

2

这可以在没有外部工具来完成,但你需要.NET框架的工作(由Vista的默认和上面安装)和screenCapture.bat

@echo off 
setlocal 
set counter=1 
:repeat 
ping localhost -n 1 -w 600000 
call screenCapture screen%counter%.jpg jpg 
set /a counter=counter+1 
goto :repeat