Search code examples
screenshot

Automatic take Screenshot in every 10 min


There is some processes running on my pc,I want to take automatically screenshot of my desktop in every 10 min. Is any way to do this?


Solution

  • follow the steps

    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"
    

    using window schedular, you can schedule this bat file in every 10 min. In every 10 min you will get the screenshot saved in your given location folder.