SendKeys send string, so this SendKeys.Send(Keys.LWin) actually will send the code of Keys.LWin.

There is no special string to send Win key, but you can emulate by sending Ctrl+Esc, so try this
Code:
SendKeys.Send("^{Esc}")