Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using IWshRuntimeLibrary;
- //...
- public static void Create(string ShortcutPath, string TargetPath)
- {
- WshShell wshShell = new WshShell(); //создаем объект wsh shell
- IWshShortcut Shortcut = (IWshShortcut)wshShell.
- CreateShortcut(ShortcutPath);
- Shortcut.TargetPath = TargetPath; //путь к целевому файлу
- //если ничего не установить в качестве рабочего каталога
- //рабочим каталогом будет путь к целевому файлу
- //стиль окна приложения по умолчанию Normal
- Shortcut.Save();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement