https://superuser.com/questions/392061/how-to-make-a-shortcut-from-cmd/1571247#1571247
set shell = WScript.CreateObject("WScript.Shell")
set shortcut = shell.CreateShortcut("C:\MyShortcut.LNK")
shortcut.TargetPath = "C:\Program Files\MyApp\MyProgram.EXE"
shortcut.Arguments = ""
shortcut.Description = "MyProgram"
shortcut.HotKey = "ALT+CTRL+F"
shortcut.IconLocation = "C:\Program Files\MyApp\MyProgram.EXE, 2"