Dirk98 0 Posted September 21, 2007 Can I launch a program with a script by "kicking" the shortcut *.lnk not the *.exe? If it is possible, which command handles it? Thanks. Share this post Link to post Share on other sites
aslani 2 Posted September 21, 2007 Can I launch a program with a script by "kicking" the shortcut *.lnk not the *.exe? If it is possible, which command handles it?Thanks.Doesn't the *.lnk already does exactly want to want to do? [font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version Share this post Link to post Share on other sites
frostfel 0 Posted September 21, 2007 Can I launch a program with a script by "kicking" the shortcut *.lnk not the *.exe? If it is possible, which command handles it?Thanks.$LnkShort = FileGetShortcut("C:\Notepad.lnk")Run($LnkShort[0])Func FileGetShortcut gets .lnk details puts them in array one of the things it gets is the file dirctory which is returned in $var[0] Share this post Link to post Share on other sites
Nahuel 1 Posted September 21, 2007 ShellExecute("Shortcut.lnk", "", @DesktopDir ) Share this post Link to post Share on other sites
Dirk98 0 Posted September 22, 2007 $LnkShort = FileGetShortcut("C:\Notepad.lnk")Run($LnkShort[0])Func FileGetShortcut gets .lnk details puts them in array one of the things it gets is the file dirctory which is returned in $var[0]Thanks, guys. The above was particualry useful. Share this post Link to post Share on other sites