How to Shell.CreateShortcut on start menu?
Announcement
Collapse
No announcement yet.
How to Shell.CreateShortcut on start menu?
Collapse
X
-
Maybe you should read some documentation, it is very well possible within the powers of AMS... I just think admin privileges are required to be able to do this
Code:local dir = Shell.GetFolder(SHF_STARTMENUPROGRAMS); if(dir ~= "")then local target = dir.."\\".."MyProgramName\\"; if(not Folder.DoesExist(target))then Folder.Create(target); end Shell.CreateShortcut(target, "Start MyProgram", _SourceFolder.."\\autorun.exe"); end
Comment
-
Originally posted by kingzooly View PostProblem with shortcuts is that windows 8 has 3 places to pin/place a short cutAlso, when IMXLH installs on Windows 8, the shortcut is properly added and visible in the metro interface.
Comment
-
Originally posted by Imagine Programming View PostHe asked specifically for the start menu, Windows 8 does not have a start menu, but simply that weird block interfaceAlso, when IMXLH installs on Windows 8, the shortcut is properly added and visible in the metro interface.
Comment
Comment