Send windows key in vbs?

vbscript

Solution

Set Keys = CreateObject("WScript.Shell")

Keys.SendKeys("^{Esc}")

This should work, it Simulates the push of the Windows key by pushing the CTRL `^` and the ESC `{Esc}`keys, i don't know how to make the window mount to the left of the screen

Problem

I've looked everywhere for this, is it actually possible to do? If you press WIN + LEFT ARROW it will mount your selected window to the left of your screen, and that's exactly what I'm trying to do. I have tried things like: ``` shl.sendkeys "#{LEFT}" ``` Because I found out that `#` could be for WIN just like `+` is for Shift and `%` is for Alt. This may be a stupid question but it would help me out so much. Thank you for you time

Original source