Sending Windows key using SendKeys
I am working on shortcuts in C#. I succeed implementing Ctrl, Alt and Shift with SendKeys. Like this; Ctrl + C : System.Windows.Forms.SendKeys.SendWait("^c"); or Alt + F4 : System.Windows.Forms.SendKeys.SendWait("%{F4}"); But I can't send "Windows Key" with SendKeys. I tried ex: Win + E : .SendWait("#e") but it's not working. What should I use instead of "#"? Thanks. OK turns out what you really want is this: http://inputsimulator.codeplex.com/ Which has done all the hard work of exposing the Win32 SendInput methods to C#. This allows you to directly send the windows key. This is tested and