How to create screenshots for a tutorial in windows 2008?

0

I am trying to create a manual/tutorial for some software installation on windows 2008. I am looking for a software which can be used to capture screenshots automatically (upon different clicks and keyboard inputs). I don't want to do it manually as it would be very time consuming. Windows utility "Record steps to reproduce a problem" is some thing that I could use but I cannot figure out to make it work with admin rights. A utility such as this, but has few more options would work great.

Shahzada Hatim

Posted 2012-07-23T19:39:16.547

Reputation: 409

Answers

0

Depending on the number of screenshots you are talking about, it might save you time to just use a screen recording program that produces a video file. These programs can often produce very space-efficient videos that are only a little bigger than a stack of images. Of course that won't work for a traditional printed manual involving a bunch of screenshots, but if you just need to convey the information to the user in any way possible, this is a good approach.

If you want to go with a screen recorder, here are the features you should look for that make a good screen recorder:

  1. It records only the differences between each frame of the desktop, and doesn't record the same frame over and over as duplicates (if it did the latter, you would quickly consume hundreds of megs or gigabytes in a couple seconds of video).

  2. It should be very near lossless or completely lossless, because text within video is often blurred beyond recognition if you use lower bitrates. For instance, try recording your desktop using an MPEG4 codec or even something modern like WebM, and it just looks horrible... you can't read the text! It's too "lossy". You need lossless or nearly lossless, but that increases filesize a lot unless the first requirement (see above) is met.

  3. It should use a fast video recording API, not a slow one. For example, trying to capture your desktop using OpenGL or Direct3D is slow, because it relies heavily upon your GPU. GDI+ on the other hand is fairly fast, but it can't handle 3D-accelerated applications. If you need to record 3d-accelerated applications, that changes the requirements completely.

allquixotic

Posted 2012-07-23T19:39:16.547

Reputation: 32 256

0

The windows problem recorder can be run in Admin mode, by clicking on the menu button to the right of the question mark. This brings down the menu with the "Run as administrator" option. Once that is clicked, a new instance is started. enter image description here

Just for others general info, the Windows problem recorder can be started by typing "record steps" in the start menu.

jdh

Posted 2012-07-23T19:39:16.547

Reputation: 6 645