Skip to content

Instantly share code, notes, and snippets.

@aont
Created November 6, 2010 11:34
Show Gist options
  • Save aont/665349 to your computer and use it in GitHub Desktop.
Save aont/665349 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace LockWorkStation
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Locking WorkStation...");
LockWorkStation();
}
[DllImport("user32.dll")]
static extern bool LockWorkStation();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment