2015年8月31日 星期一

建立應用程式捷徑

工具:Windows Script Host Object Model ( 協力廠商 COM 元件 )

WshShell sl = new WshShell();
string dtpath = System.Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)+"\\wxk.lnk";
IWshShortcut sc = (IWshShortcut)sl.CreateShortcut(dtpath);
sc.TargetPath = exePath;
sc.Description = "新增應用程式的捷徑方式";
sc.Save();

沒有留言:

張貼留言