Possible Duplicate:
Start screen saver the moment I lock the computer on Win XP

can screensaver run when the computer is locked?

link|improve this question
feedback

migrated from stackoverflow.com Jan 12 '11 at 13:27

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by harrymc, Mokubai, Ivo Flipse Jan 12 '11 at 14:19

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

not sure you can change windows do to it but you could create a program that locks the computer and runs the screensaver?

To lock the computer:

System.Diagnostics.Process.Start("rundll32.exe user32.dll, LockWorkStation"); System.Diagnostics.Process.Start(@"c:\windows\System32\ribbons.scr");

http://wraithnath.blogspot.com/2010/09/lock-workstation-without-ctrl-alt-del.html

link|improve this answer
feedback

The XP screensaver has the lock built in. http://kb.iu.edu/data/acdt.html

link|improve this answer
feedback

Make sure when you set your screensaver properties to display the logon screen on resume (at least I'm pretty sure that XP can do that).

link|improve this answer
feedback