I ran into this example for locking Windows workstation:

using System.Runtime.InteropServices;
...
[DllImport("user32.dll", SetLastError = true)]
static extern bool LockWorkStation();

...
if (!LockWorkStation())
    throw new Win32Exception(Marshal.GetLastWin32Error()); // or any other thing

Is there a pure managed alternative to this snippet? Namely, without P-Invoke.

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

No there is not. This is the best way to achieve this action.

Even if it was provided in the BCL, it's implementation would almost certainly be identical to your sample. It's not something the CLR would natively implement.

link|improve this answer
+1 for the clarification, thanks. – Ron Klein Aug 12 '09 at 6:44
@RonKlein : Hey I want to does same thing. i.e programmatically Locking Windows Desktop and shows the Login screen without closing the session of the current user. This does same or something different??? thankx for your above solution it help me in many ways. Just make me clear above question. – Hemang Rami Feb 14 at 11:08
@Hemang Rami, I think what you try to do is exactly what I was asking about: locking the workstation while keeping the current session active. – Ron Klein Feb 14 at 12:19
@RonKlein: I had done it using LOCKWORKSTATION Method. is it ok now. ? I am not using rundll32.exe for locking Workstation. – Hemang Rami Feb 15 at 7:02
@Hemang Rami, no problem. Just know that it works only on Windows OS. – Ron Klein Feb 15 at 13:32
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.