0

I'm back!
So my chrome test went well, even ended up making an edge version and rolling with it because when I close the program with keystrokes Edge doesn't come back all whiney about how I shut down the browser last time.

So this is going great, working exactly as I expected. The only issue. Other people log into this computer to perform various tasks as well.

So what I am looking for is a software that will take a full screen screen shot of a url I specify every 30 minutes or so and save that file on a network drive. If it has a delay that would be best because some of the sites take about 3 seconds to load data before a screen shot would be useful.

Hopefully something that can run whether the user is logged in or not, but does so in the background so as not to disturb other users who are using the computer.

EDIT I am doing this on Windows.

7
  • Jaymes... Look over superuser.com/questions/75614/… and see if a solution there would suffice. Having a 3-5 second pause is just a trivial matter using PowerShell and start-sleep -seconds 5 so you'd basically put something like that on the line above the logic of the tool to take the screen shot of the window, screen, etc. All just trivial matters playing with those tools and the commands for the tools and testing. Commented Feb 15, 2022 at 18:33
  • You can also use VCL or a similar tool to stream the screen to a file... just slow down the frame rate to 0.3 or 0.2 fps (or as low as it can go... not sure if <1 fps works). stackoverflow.com/questions/18187948/… Commented Feb 15, 2022 at 18:57
  • Thanks @VomitIT-ChunkyMessStyle! That was an enlightening thread, but it did not have the information I am looking for. I use the sleep setting in my scripts but I am trying to prevent having to use the scripts. It has to open the browser window and bring it active in order for me to screen cap it. The opening of the page and going full screen is disruptive to other users of the machine. I found a program called SiteShoter which KIND OF does what I am asking, except it doesn't have the time delay feature so my screenshots are blank.
    – Jaymes
    Commented Feb 15, 2022 at 19:25
  • I'm going to continue to use the scripts until I am ultimately told not to, but I was hoping to find some kind of program that would accomplish the task at hand.
    – Jaymes
    Commented Feb 15, 2022 at 19:25
  • @Jaymes In this case, I wonder if saving the URL site to HTML to be opened up as what the URL contained at that moment would suffice. Rather even needing to save a screen shot, you could potentially and silently call a URL and dump the out to HTML using Invoke-WebRequest or something similar. You could then open HTML with any browser and scrape or see what's needed or save a screen shot on a server, etc. instead. What's the ultimate content goal/viewability requirements? Commented Feb 15, 2022 at 19:54

1 Answer 1

0

We ended up writing an app that would do exactly this for us. I will try to convince him to make it more public friendly and release it.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .