From 7118f3b091b2d7d388e1985c48c41894da4cbd4e Mon Sep 17 00:00:00 2001 From: Eric Reed Date: Tue, 26 Feb 2013 10:18:27 -0500 Subject: [PATCH] Remove startup shortcut and other paths --- MediaBrowser.Uninstaller.Execute/MainWindow.xaml.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MediaBrowser.Uninstaller.Execute/MainWindow.xaml.cs b/MediaBrowser.Uninstaller.Execute/MainWindow.xaml.cs index fb6ff6c894..428af7b62c 100644 --- a/MediaBrowser.Uninstaller.Execute/MainWindow.xaml.cs +++ b/MediaBrowser.Uninstaller.Execute/MainWindow.xaml.cs @@ -72,6 +72,7 @@ namespace MediaBrowser.Uninstaller.Execute var startMenu = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.StartMenu), "Media Browser 3"); var linkName = "Media Browser " + Product + ".lnk"; RemoveShortcut(Path.Combine(startMenu, linkName)); + RemoveShortcut(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Startup),linkName)); linkName = "Uninstall " + linkName; RemoveShortcut(Path.Combine(startMenu, linkName)); if (Product == "Server") @@ -108,6 +109,7 @@ namespace MediaBrowser.Uninstaller.Execute // First remove the system lblHeading.Content = "Removing System Files..."; RemovePath(Path.Combine(rootPath, "System")); + RemovePath(Path.Combine(rootPath, "MediaTools")); // And then the others specified if (cbxRemoveCache.IsChecked == true) @@ -120,6 +122,7 @@ namespace MediaBrowser.Uninstaller.Execute { lblHeading.Content = "Removing Config Files..."; RemovePath(Path.Combine(rootPath, "config")); + RemovePath(Path.Combine(rootPath, "logs")); } if (cbxRemovePlugins.IsChecked == true) {