Remove startup shortcut and other paths

This commit is contained in:
Eric Reed 2013-02-26 10:18:27 -05:00
parent 9fa9c580b0
commit 7118f3b091

View file

@ -72,6 +72,7 @@ namespace MediaBrowser.Uninstaller.Execute
var startMenu = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.StartMenu), "Media Browser 3"); var startMenu = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.StartMenu), "Media Browser 3");
var linkName = "Media Browser " + Product + ".lnk"; var linkName = "Media Browser " + Product + ".lnk";
RemoveShortcut(Path.Combine(startMenu, linkName)); RemoveShortcut(Path.Combine(startMenu, linkName));
RemoveShortcut(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Startup),linkName));
linkName = "Uninstall " + linkName; linkName = "Uninstall " + linkName;
RemoveShortcut(Path.Combine(startMenu, linkName)); RemoveShortcut(Path.Combine(startMenu, linkName));
if (Product == "Server") if (Product == "Server")
@ -108,6 +109,7 @@ namespace MediaBrowser.Uninstaller.Execute
// First remove the system // First remove the system
lblHeading.Content = "Removing System Files..."; lblHeading.Content = "Removing System Files...";
RemovePath(Path.Combine(rootPath, "System")); RemovePath(Path.Combine(rootPath, "System"));
RemovePath(Path.Combine(rootPath, "MediaTools"));
// And then the others specified // And then the others specified
if (cbxRemoveCache.IsChecked == true) if (cbxRemoveCache.IsChecked == true)
@ -120,6 +122,7 @@ namespace MediaBrowser.Uninstaller.Execute
{ {
lblHeading.Content = "Removing Config Files..."; lblHeading.Content = "Removing Config Files...";
RemovePath(Path.Combine(rootPath, "config")); RemovePath(Path.Combine(rootPath, "config"));
RemovePath(Path.Combine(rootPath, "logs"));
} }
if (cbxRemovePlugins.IsChecked == true) if (cbxRemovePlugins.IsChecked == true)
{ {