我使用此代码以编程方式创建了桌面快捷方式,因为无法使用任何软件包功能进行创建
object shDesktop = (object)"Desktop";
WshShell shell = new WshShell();
string shortcutAddress = (string)shell.SpecialFolders.Item(ref shDesktop) + @"\Appss Windows Messenger.lnk";
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutAddress);
shortcut.Description = ClientName;
shortcut.Hotkey = "Ctrl+Shift+N";
shortcut.TargetPath = @"shell:AppsFolder\WindowsMessenger_fwsgascccvxc0!App";
shortcut.Save();
在卸载应用程序后,有什么方法可以删除此快捷方式。