diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-06 13:40:53 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-06 13:40:53 -0400 |
| commit | bdcb329b1df625dc0fa8f20e73887f3610700569 (patch) | |
| tree | 27b2bb187d42df4dafc4774103d5b21a158061c6 | |
| parent | 51b71afd5cfcaa6db606073a24c4c891cdf46cb3 (diff) | |
| parent | d05f4d71d2c250d9c9df23aa1e4a1294e1d76a8a (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
| -rw-r--r-- | MediaBrowser.Installer/MainWindow.xaml.cs | 27 | ||||
| -rw-r--r-- | MediaBrowser.Installer/MediaBrowser.Installer.csproj | 2 |
2 files changed, 20 insertions, 9 deletions
diff --git a/MediaBrowser.Installer/MainWindow.xaml.cs b/MediaBrowser.Installer/MainWindow.xaml.cs index 272ebbfad..0a30cc6a2 100644 --- a/MediaBrowser.Installer/MainWindow.xaml.cs +++ b/MediaBrowser.Installer/MainWindow.xaml.cs @@ -31,6 +31,8 @@ namespace MediaBrowser.Installer protected bool InstallPismo = true; protected string RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser-Server"); + protected bool IsUpdate = false; + protected bool SystemClosing = false; protected string TempLocation = Path.Combine(Path.GetTempPath(), "MediaBrowser"); @@ -119,7 +121,7 @@ namespace MediaBrowser.Installer // wasn't running } - Thread.Sleep(500); // give it just another sec to be sure its really gone + IsUpdate = true; } //MessageBox.Show(string.Format("Called with args: product: {0} archive: {1} caller: {2}", product, Archive, callerId)); @@ -160,7 +162,7 @@ namespace MediaBrowser.Installer // Now try and shut down the server if that is what we are installing and it is running var procs = Process.GetProcessesByName("mediabrowser.serverapplication"); var server = procs.Length > 0 ? procs[0] : null; - if (PackageName == "MBServer" && server != null) + if (!IsUpdate && PackageName == "MBServer" && server != null) { lblStatus.Text = "Shutting Down Media Browser Server..."; using (var client = new WebClient()) @@ -187,7 +189,7 @@ namespace MediaBrowser.Installer } else { - if (PackageName == "MBTheater") + if (!IsUpdate && PackageName == "MBTheater") { // Uninstalling MBT - shut it down if it is running var processes = Process.GetProcessesByName("mediabrowser.ui"); @@ -473,13 +475,22 @@ namespace MediaBrowser.Installer /// <param name="targetExe"></param> private void CreateUninstaller(string uninstallPath, string targetExe) { - using (var parent = Registry.CurrentUser.OpenSubKey( - @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", true)) + var parent = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", true); { if (parent == null) { - MessageBox.Show("Uninstall registry key not found."); - return; + var rootParent = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion", true); + { + if (rootParent != null) + { + parent = rootParent.CreateSubKey("Uninstall"); + if (parent == null) + { + MessageBox.Show("Unable to create Uninstall registry key. Program is still installed sucessfully."); + return; + } + } + } } try { @@ -493,7 +504,7 @@ namespace MediaBrowser.Installer if (key == null) { - MessageBox.Show(String.Format("Unable to create uninstaller entry'{0}\\{1}'", @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", guidText)); + MessageBox.Show(String.Format("Unable to create uninstaller entry'{0}\\{1}'. Program is still installed successfully.", @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", guidText)); return; } diff --git a/MediaBrowser.Installer/MediaBrowser.Installer.csproj b/MediaBrowser.Installer/MediaBrowser.Installer.csproj index eccada0f5..8683833ab 100644 --- a/MediaBrowser.Installer/MediaBrowser.Installer.csproj +++ b/MediaBrowser.Installer/MediaBrowser.Installer.csproj @@ -31,7 +31,7 @@ <PublisherName>Media Browser Team</PublisherName> <SuiteName>Media Browser</SuiteName> <OpenBrowserOnPublish>false</OpenBrowserOnPublish> - <ApplicationRevision>55</ApplicationRevision> + <ApplicationRevision>57</ApplicationRevision> <ApplicationVersion>0.1.1.%2a</ApplicationVersion> <UseApplicationTrust>false</UseApplicationTrust> <PublishWizardCompleted>true</PublishWizardCompleted> |
