卸载UWP应用后如何删除桌面快捷方式

时间:2020-09-21 05:00:30

标签: uwp uwp-xaml desktop-shortcut

我使用此代码以编程方式创建了桌面快捷方式,因为无法使用任何软件包功能进行创建

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();

在卸载应用程序后,有什么方法可以删除此快捷方式。

0 个答案:

没有答案