diff --git a/MediaBrowser.Installer/App.config b/Installation/MediaBrowser.Server.Installer.exe.config
similarity index 77%
rename from MediaBrowser.Installer/App.config
rename to Installation/MediaBrowser.Server.Installer.exe.config
index 558196382b..efff9590da 100644
--- a/MediaBrowser.Installer/App.config
+++ b/Installation/MediaBrowser.Server.Installer.exe.config
@@ -2,9 +2,9 @@
-
+
-
+
\ No newline at end of file
diff --git a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs
index 9dc0eb85c8..6c2aa2f5c7 100644
--- a/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs
+++ b/MediaBrowser.Common.Implementations/Updates/ApplicationUpdater.cs
@@ -15,15 +15,19 @@ namespace MediaBrowser.Common.Implementations.Updates
///
public class ApplicationUpdater
{
- private const string UpdaterExe = "Mediabrowser.Installer.exe";
+ private const string UpdaterExe = "Mediabrowser.Updater.exe";
+ private const string UpdaterDll = "Mediabrowser.InstallUtil.dll";
public void UpdateApplication(MBApplication app, IApplicationPaths appPaths, string archive)
{
// Use our installer passing it the specific archive
// We need to copy to a temp directory and execute it there
var source = Path.Combine(appPaths.ProgramSystemPath, UpdaterExe);
var tempUpdater = Path.Combine(Path.GetTempPath(), UpdaterExe);
- var product = app == MBApplication.MBTheater ? "mbt" : "server";
File.Copy(source, tempUpdater, true);
+ source = Path.Combine(appPaths.ProgramSystemPath, UpdaterDll);
+ var tempUpdaterDll = Path.Combine(Path.GetTempPath(), UpdaterDll);
+ File.Copy(source, tempUpdaterDll, true);
+ var product = app == MBApplication.MBTheater ? "mbt" : "server";
// Our updater needs SS and ionic
source = Path.Combine(appPaths.ProgramSystemPath, "ServiceStack.Text.dll");
File.Copy(source, Path.Combine(Path.GetTempPath(), "ServiceStack.Text.dll"), true);
diff --git a/MediaBrowser.Installer/App.xaml b/MediaBrowser.Installer/App.xaml
deleted file mode 100644
index 84c9b11d45..0000000000
--- a/MediaBrowser.Installer/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/MediaBrowser.Installer/App.xaml.cs b/MediaBrowser.Installer/App.xaml.cs
deleted file mode 100644
index 3e1230d441..0000000000
--- a/MediaBrowser.Installer/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System.Windows;
-
-namespace MediaBrowser.Installer
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/MediaBrowser.Installer/Code/DownloadAnimation.xaml b/MediaBrowser.Installer/Code/DownloadAnimation.xaml
deleted file mode 100644
index 26a0ca6770..0000000000
--- a/MediaBrowser.Installer/Code/DownloadAnimation.xaml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
diff --git a/MediaBrowser.Installer/Code/DownloadAnimation.xaml.cs b/MediaBrowser.Installer/Code/DownloadAnimation.xaml.cs
deleted file mode 100644
index 8fa8908166..0000000000
--- a/MediaBrowser.Installer/Code/DownloadAnimation.xaml.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Windows.Controls;
-using System.Windows.Data;
-using System.Windows.Documents;
-using System.Windows.Input;
-using System.Windows.Media;
-using System.Windows.Media.Imaging;
-using System.Windows.Navigation;
-using System.Windows.Shapes;
-using System.Windows.Threading;
-
-namespace MediaBrowser.Installer.Code
-{
- ///
- /// Interaction logic for DownloadAnimation.xaml
- ///
- public partial class DownloadAnimation : UserControl
- {
- private int _i;
- private readonly double _startPos;
- private readonly DispatcherTimer _timer;
-
- public DownloadAnimation()
- {
- _i = 0;
- InitializeComponent();
-
- // Store start position of sliding canvas
- _startPos = Canvas.GetLeft(SlidingCanvas);
-
- // Create animation timer
- _timer = new DispatcherTimer {Interval = TimeSpan.FromMilliseconds(100)};
- _timer.Tick += TimerTick;
- }
-
- public void StartAnimation()
- {
- _timer.Start();
- }
-
- public void StopAnimation()
- {
- _timer.Stop();
- }
-
- private void TimerTick(object sender, EventArgs e)
- {
- _i++;
-
- if (_i < 16)
- {
- // Move SlidingCanvas containing the three colored dots 14 units to the right
- Canvas.SetLeft(SlidingCanvas, Canvas.GetLeft(SlidingCanvas) + 14);
- }
- else
- {
- // Move SlidingCanvas back to its starting position and reset counter
- _i = 0;
- Canvas.SetLeft(SlidingCanvas, _startPos);
- }
- }
- }
-}
diff --git a/MediaBrowser.Installer/Code/Images/computer_256.png b/MediaBrowser.Installer/Code/Images/computer_256.png
deleted file mode 100644
index 42f3c22fa7..0000000000
Binary files a/MediaBrowser.Installer/Code/Images/computer_256.png and /dev/null differ
diff --git a/MediaBrowser.Installer/Code/Images/internet-globe.jpg b/MediaBrowser.Installer/Code/Images/internet-globe.jpg
deleted file mode 100644
index 26d064d7bf..0000000000
Binary files a/MediaBrowser.Installer/Code/Images/internet-globe.jpg and /dev/null differ
diff --git a/MediaBrowser.Installer/Code/Images/mb3logo800.png b/MediaBrowser.Installer/Code/Images/mb3logo800.png
deleted file mode 100644
index fbc769a6f1..0000000000
Binary files a/MediaBrowser.Installer/Code/Images/mb3logo800.png and /dev/null differ
diff --git a/MediaBrowser.Installer/Code/ModelExtensions.cs b/MediaBrowser.Installer/Code/ModelExtensions.cs
deleted file mode 100644
index 66e51ec117..0000000000
--- a/MediaBrowser.Installer/Code/ModelExtensions.cs
+++ /dev/null
@@ -1,43 +0,0 @@
-
-using System.Collections.Generic;
-
-namespace MediaBrowser.Installer.Code
-{
- ///
- /// Class ModelExtensions
- ///
- static class ModelExtensions
- {
- ///
- /// Values the or default.
- ///
- /// The STR.
- /// The def.
- /// System.String.
- public static string ValueOrDefault(this string str, string def = "")
- {
- return string.IsNullOrEmpty(str) ? def : str;
- }
-
- ///
- /// Helper method for Dictionaries since they throw on not-found keys
- ///
- ///
- ///
- /// The dictionary.
- /// The key.
- /// The default value.
- /// ``1.
- public static U GetValueOrDefault(this Dictionary dictionary, T key, U defaultValue)
- {
- U val;
- if (!dictionary.TryGetValue(key, out val))
- {
- val = defaultValue;
- }
- return val;
-
- }
-
- }
-}
diff --git a/MediaBrowser.Installer/Code/PackageInfo.cs b/MediaBrowser.Installer/Code/PackageInfo.cs
deleted file mode 100644
index adfe54dd63..0000000000
--- a/MediaBrowser.Installer/Code/PackageInfo.cs
+++ /dev/null
@@ -1,119 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace MediaBrowser.Installer.Code
-{
- ///
- /// Class PackageInfo
- ///
- public class PackageInfo
- {
- ///
- /// Gets or sets the name.
- ///
- /// The name.
- public string name { get; set; }
-
- ///
- /// Gets or sets the short description.
- ///
- /// The short description.
- public string shortDescription { get; set; }
-
- ///
- /// Gets or sets the overview.
- ///
- /// The overview.
- public string overview { get; set; }
-
- ///
- /// Gets or sets a value indicating whether this instance is premium.
- ///
- /// true if this instance is premium; otherwise, false.
- public bool isPremium { get; set; }
-
- ///
- /// Gets or sets the rich desc URL.
- ///
- /// The rich desc URL.
- public string richDescUrl { get; set; }
-
- ///
- /// Gets or sets the thumb image.
- ///
- /// The thumb image.
- public string thumbImage { get; set; }
-
- ///
- /// Gets or sets the preview image.
- ///
- /// The preview image.
- public string previewImage { get; set; }
-
- ///
- /// Gets or sets the type.
- ///
- /// The type.
- public PackageType type { get; set; }
-
- ///
- /// Gets or sets the target filename.
- ///
- /// The target filename.
- public string targetFilename { get; set; }
-
- ///
- /// Gets or sets the owner.
- ///
- /// The owner.
- public string owner { get; set; }
-
- ///
- /// Gets or sets the category.
- ///
- /// The category.
- public string category { get; set; }
-
- ///
- /// Gets or sets the catalog tile color.
- ///
- /// The owner.
- public string tileColor { get; set; }
-
- ///
- /// Gets or sets the feature id of this package (if premium).
- ///
- /// The feature id.
- public string featureId { get; set; }
-
- ///
- /// Gets or sets the registration info for this package (if premium).
- ///
- /// The registration info.
- public string regInfo { get; set; }
-
- ///
- /// Gets or sets the price for this package (if premium).
- ///
- /// The price.
- public float price { get; set; }
-
- ///
- /// Gets or sets whether or not this package is registered.
- ///
- /// True if registered.
- public bool isRegistered { get; set; }
-
- ///
- /// Gets or sets the expiration date for this package.
- ///
- /// Expiration Date.
- public DateTime expDate { get; set; }
-
- ///
- /// Gets or sets the versions.
- ///
- /// The versions.
- public List versions { get; set; }
- }
-}
diff --git a/MediaBrowser.Installer/Code/PackageType.cs b/MediaBrowser.Installer/Code/PackageType.cs
deleted file mode 100644
index 964025a73c..0000000000
--- a/MediaBrowser.Installer/Code/PackageType.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace MediaBrowser.Installer.Code
-{
- ///
- /// Enum PackageType
- ///
- public enum PackageType
- {
- ///
- /// All
- ///
- All,
- ///
- /// The system
- ///
- System,
- ///
- /// The user installed
- ///
- UserInstalled
- }
-}
\ No newline at end of file
diff --git a/MediaBrowser.Installer/Code/PackageVersionClass.cs b/MediaBrowser.Installer/Code/PackageVersionClass.cs
deleted file mode 100644
index d046e5c602..0000000000
--- a/MediaBrowser.Installer/Code/PackageVersionClass.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace MediaBrowser.Installer.Code
-{
- ///
- /// Enum PackageVersionClass
- ///
- public enum PackageVersionClass
- {
- ///
- /// The release
- ///
- Release = 0,
- ///
- /// The beta
- ///
- Beta = 1,
- ///
- /// The dev
- ///
- Dev = 2
- }
-}
\ No newline at end of file
diff --git a/MediaBrowser.Installer/Code/PackageVersionInfo.cs b/MediaBrowser.Installer/Code/PackageVersionInfo.cs
deleted file mode 100644
index d26c217caf..0000000000
--- a/MediaBrowser.Installer/Code/PackageVersionInfo.cs
+++ /dev/null
@@ -1,73 +0,0 @@
-using System;
-using System.Runtime.Serialization;
-
-namespace MediaBrowser.Installer.Code
-{
- ///
- /// Class PackageVersionInfo
- ///
- public class PackageVersionInfo
- {
- ///
- /// Gets or sets the name.
- ///
- /// The name.
- public string name { get; set; }
-
- ///
- /// Gets or sets the version STR.
- ///
- /// The version STR.
- public string versionStr { get; set; }
-
- ///
- /// The _version
- ///
- private Version _version;
- ///
- /// Gets or sets the version.
- /// Had to make this an interpreted property since Protobuf can't handle Version
- ///
- /// The version.
- public Version version
- {
- get { return _version ?? (_version = new Version(versionStr.ValueOrDefault("0.0.0.1"))); }
- }
-
- ///
- /// Gets or sets the classification.
- ///
- /// The classification.
- public PackageVersionClass classification { get; set; }
-
- ///
- /// Gets or sets the description.
- ///
- /// The description.
- public string description { get; set; }
-
- ///
- /// Gets or sets the required version STR.
- ///
- /// The required version STR.
- public string requiredVersionStr { get; set; }
-
- ///
- /// Gets or sets the source URL.
- ///
- /// The source URL.
- public string sourceUrl { get; set; }
-
- ///
- /// Gets or sets the source URL.
- ///
- /// The source URL.
- public Guid checksum { get; set; }
-
- ///
- /// Gets or sets the target filename.
- ///
- /// The target filename.
- public string targetFilename { get; set; }
- }
-}
diff --git a/MediaBrowser.Installer/Code/ShellLinkNative.cs b/MediaBrowser.Installer/Code/ShellLinkNative.cs
deleted file mode 100644
index d603fe3a5d..0000000000
--- a/MediaBrowser.Installer/Code/ShellLinkNative.cs
+++ /dev/null
@@ -1,277 +0,0 @@
-/**************************************************************************
-*
-* Filename: ShellLinkNative.cs
-* Author: Mattias Sjögren (mattias@mvps.org)
-* http://www.msjogren.net/dotnet/
-*
-* Description: Defines the native types used to manipulate shell shortcuts.
-*
-* Public types: enum SLR_FLAGS
-* enum SLGP_FLAGS
-* struct WIN32_FIND_DATA[A|W]
-* interface IPersistFile
-* interface IShellLink[A|W]
-* class ShellLink
-*
-*
-* Copyright ©2001-2002, Mattias Sjögren
-*
-**************************************************************************/
-
-using System;
-using System.Runtime.InteropServices;
-using System.Text;
-using FILETIME = System.Runtime.InteropServices.ComTypes.FILETIME;
-
-namespace MediaBrowser.Installer.Code
-{
- // IShellLink.Resolve fFlags
- [Flags()]
- public enum SLR_FLAGS
- {
- SLR_NO_UI = 0x1,
- SLR_ANY_MATCH = 0x2,
- SLR_UPDATE = 0x4,
- SLR_NOUPDATE = 0x8,
- SLR_NOSEARCH = 0x10,
- SLR_NOTRACK = 0x20,
- SLR_NOLINKINFO = 0x40,
- SLR_INVOKE_MSI = 0x80
- }
-
- // IShellLink.GetPath fFlags
- [Flags()]
- public enum SLGP_FLAGS
- {
- SLGP_SHORTPATH = 0x1,
- SLGP_UNCPRIORITY = 0x2,
- SLGP_RAWPATH = 0x4
- }
-
- [StructLayout(LayoutKind.Sequential, CharSet=CharSet.Ansi)]
- public struct WIN32_FIND_DATAA
- {
- public int dwFileAttributes;
- public FILETIME ftCreationTime;
- public FILETIME ftLastAccessTime;
- public FILETIME ftLastWriteTime;
- public int nFileSizeHigh;
- public int nFileSizeLow;
- public int dwReserved0;
- public int dwReserved1;
- [MarshalAs(UnmanagedType.ByValTStr, SizeConst=MAX_PATH)]
- public string cFileName;
- [MarshalAs(UnmanagedType.ByValTStr, SizeConst=14)]
- public string cAlternateFileName;
- private const int MAX_PATH = 260;
- }
-
- [StructLayoutAttribute(LayoutKind.Sequential, CharSet=CharSet.Unicode)]
- public struct WIN32_FIND_DATAW
- {
- public int dwFileAttributes;
- public FILETIME ftCreationTime;
- public FILETIME ftLastAccessTime;
- public FILETIME ftLastWriteTime;
- public int nFileSizeHigh;
- public int nFileSizeLow;
- public int dwReserved0;
- public int dwReserved1;
- [MarshalAs(UnmanagedType.ByValTStr, SizeConst=MAX_PATH)]
- public string cFileName;
- [MarshalAs(UnmanagedType.ByValTStr, SizeConst=14)]
- public string cAlternateFileName;
- private const int MAX_PATH = 260;
- }
-
- [
- ComImport(),
- InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
- Guid("0000010B-0000-0000-C000-000000000046")
- ]
- public interface IPersistFile
- {
- #region Methods inherited from IPersist
-
- void GetClassID(
- out Guid pClassID);
-
- #endregion
-
- [PreserveSig()]
- int IsDirty();
-
- void Load(
- [MarshalAs(UnmanagedType.LPWStr)] string pszFileName,
- int dwMode);
-
- void Save(
- [MarshalAs(UnmanagedType.LPWStr)] string pszFileName,
- [MarshalAs(UnmanagedType.Bool)] bool fRemember);
-
- void SaveCompleted(
- [MarshalAs(UnmanagedType.LPWStr)] string pszFileName);
-
- void GetCurFile(
- out IntPtr ppszFileName);
-
- }
-
- [
- ComImport(),
- InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
- Guid("000214EE-0000-0000-C000-000000000046")
- ]
- public interface IShellLinkA
- {
- void GetPath(
- [Out(), MarshalAs(UnmanagedType.LPStr)] StringBuilder pszFile,
- int cchMaxPath,
- out WIN32_FIND_DATAA pfd,
- SLGP_FLAGS fFlags);
-
- void GetIDList(
- out IntPtr ppidl);
-
- void SetIDList(
- IntPtr pidl);
-
- void GetDescription(
- [Out(), MarshalAs(UnmanagedType.LPStr)] StringBuilder pszName,
- int cchMaxName);
-
- void SetDescription(
- [MarshalAs(UnmanagedType.LPStr)] string pszName);
-
- void GetWorkingDirectory(
- [Out(), MarshalAs(UnmanagedType.LPStr)] StringBuilder pszDir,
- int cchMaxPath);
-
- void SetWorkingDirectory(
- [MarshalAs(UnmanagedType.LPStr)] string pszDir);
-
- void GetArguments(
- [Out(), MarshalAs(UnmanagedType.LPStr)] StringBuilder pszArgs,
- int cchMaxPath);
-
- void SetArguments(
- [MarshalAs(UnmanagedType.LPStr)] string pszArgs);
-
- void GetHotkey(
- out short pwHotkey);
-
- void SetHotkey(
- short wHotkey);
-
- void GetShowCmd(
- out int piShowCmd);
-
- void SetShowCmd(
- int iShowCmd);
-
- void GetIconLocation(
- [Out(), MarshalAs(UnmanagedType.LPStr)] StringBuilder pszIconPath,
- int cchIconPath,
- out int piIcon);
-
- void SetIconLocation(
- [MarshalAs(UnmanagedType.LPStr)] string pszIconPath,
- int iIcon);
-
- void SetRelativePath(
- [MarshalAs(UnmanagedType.LPStr)] string pszPathRel,
- int dwReserved);
-
- void Resolve(
- IntPtr hwnd,
- SLR_FLAGS fFlags);
-
- void SetPath(
- [MarshalAs(UnmanagedType.LPStr)] string pszFile);
-
- }
-
- [
- ComImport(),
- InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
- Guid("000214F9-0000-0000-C000-000000000046")
- ]
- public interface IShellLinkW
- {
- void GetPath(
- [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszFile,
- int cchMaxPath,
- out WIN32_FIND_DATAW pfd,
- SLGP_FLAGS fFlags);
-
- void GetIDList(
- out IntPtr ppidl);
-
- void SetIDList(
- IntPtr pidl);
-
- void GetDescription(
- [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszName,
- int cchMaxName);
-
- void SetDescription(
- [MarshalAs(UnmanagedType.LPWStr)] string pszName);
-
- void GetWorkingDirectory(
- [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszDir,
- int cchMaxPath);
-
- void SetWorkingDirectory(
- [MarshalAs(UnmanagedType.LPWStr)] string pszDir);
-
- void GetArguments(
- [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszArgs,
- int cchMaxPath);
-
- void SetArguments(
- [MarshalAs(UnmanagedType.LPWStr)] string pszArgs);
-
- void GetHotkey(
- out short pwHotkey);
-
- void SetHotkey(
- short wHotkey);
-
- void GetShowCmd(
- out int piShowCmd);
-
- void SetShowCmd(
- int iShowCmd);
-
- void GetIconLocation(
- [Out(), MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszIconPath,
- int cchIconPath,
- out int piIcon);
-
- void SetIconLocation(
- [MarshalAs(UnmanagedType.LPWStr)] string pszIconPath,
- int iIcon);
-
- void SetRelativePath(
- [MarshalAs(UnmanagedType.LPWStr)] string pszPathRel,
- int dwReserved);
-
- void Resolve(
- IntPtr hwnd,
- SLR_FLAGS fFlags);
-
- void SetPath(
- [MarshalAs(UnmanagedType.LPWStr)] string pszFile);
-
- }
-
-
- [
- ComImport(),
- Guid("00021401-0000-0000-C000-000000000046")
- ]
- public class ShellLink // : IPersistFile, IShellLinkA, IShellLinkW
- {
- }
-
-}
diff --git a/MediaBrowser.Installer/Code/ShellShortcut.cs b/MediaBrowser.Installer/Code/ShellShortcut.cs
deleted file mode 100644
index 33b60732c3..0000000000
--- a/MediaBrowser.Installer/Code/ShellShortcut.cs
+++ /dev/null
@@ -1,348 +0,0 @@
-/**************************************************************************
-*
-* Filename: ShellShortcut.cs
-* Author: Mattias Sjögren (mattias@mvps.org)
-* http://www.msjogren.net/dotnet/
-*
-* Description: Defines a .NET friendly class, ShellShortcut, for reading
-* and writing shortcuts.
-* Define the conditional compilation symbol UNICODE to use
-* IShellLinkW internally.
-*
-* Public types: class ShellShortcut
-*
-*
-* Dependencies: ShellLinkNative.cs
-*
-*
-* Copyright ©2001-2002, Mattias Sjögren
-*
-**************************************************************************/
-
-using System;
-using System.Diagnostics;
-using System.Drawing;
-using System.IO;
-using System.Runtime.InteropServices;
-using System.Text;
-using System.Windows.Forms;
-
-
-namespace MediaBrowser.Installer.Code
-{
- ///
- /// .NET friendly wrapper for the ShellLink class
- ///
- public class ShellShortcut : IDisposable
- {
- private const int INFOTIPSIZE = 1024;
- private const int MAX_PATH = 260;
-
- private const int SW_SHOWNORMAL = 1;
- private const int SW_SHOWMINIMIZED = 2;
- private const int SW_SHOWMAXIMIZED = 3;
- private const int SW_SHOWMINNOACTIVE = 7;
-
-
- #if UNICODE
- private IShellLinkW m_Link;
- #else
- private IShellLinkA m_Link;
- #endif
- private string m_sPath;
-
- ///
- ///
- /// Path to new or existing shortcut file (.lnk).
- ///
- ///
- public ShellShortcut(string linkPath)
- {
- IPersistFile pf;
-
- m_sPath = linkPath;
-
- #if UNICODE
- m_Link = (IShellLinkW) new ShellLink();
- #else
- m_Link = (IShellLinkA) new ShellLink();
- #endif
-
- if ( File.Exists( linkPath ) ) {
- pf = (IPersistFile)m_Link;
- pf.Load( linkPath, 0 );
- }
-
- }
-
- //
- // IDisplosable implementation
- //
- public void Dispose()
- {
- if ( m_Link != null ) {
- Marshal.ReleaseComObject( m_Link );
- m_Link = null;
- }
- }
-
- ///
- /// Gets or sets the argument list of the shortcut.
- ///
- public string Arguments
- {
- get
- {
- StringBuilder sb = new StringBuilder( INFOTIPSIZE );
- m_Link.GetArguments( sb, sb.Capacity );
- return sb.ToString();
- }
- set { m_Link.SetArguments( value ); }
- }
-
- ///
- /// Gets or sets a description of the shortcut.
- ///
- public string Description
- {
- get
- {
- StringBuilder sb = new StringBuilder( INFOTIPSIZE );
- m_Link.GetDescription( sb, sb.Capacity );
- return sb.ToString();
- }
- set { m_Link.SetDescription( value ); }
- }
-
- ///
- /// Gets or sets the working directory (aka start in directory) of the shortcut.
- ///
- public string WorkingDirectory
- {
- get
- {
- StringBuilder sb = new StringBuilder( MAX_PATH );
- m_Link.GetWorkingDirectory( sb, sb.Capacity );
- return sb.ToString();
- }
- set { m_Link.SetWorkingDirectory( value ); }
- }
-
- //
- // If Path returns an empty string, the shortcut is associated with
- // a PIDL instead, which can be retrieved with IShellLink.GetIDList().
- // This is beyond the scope of this wrapper class.
- //
- ///
- /// Gets or sets the target path of the shortcut.
- ///
- public string Path
- {
- get
- {
- #if UNICODE
- WIN32_FIND_DATAW wfd = new WIN32_FIND_DATAW();
- #else
- WIN32_FIND_DATAA wfd = new WIN32_FIND_DATAA();
- #endif
- StringBuilder sb = new StringBuilder( MAX_PATH );
-
- m_Link.GetPath( sb, sb.Capacity, out wfd, SLGP_FLAGS.SLGP_UNCPRIORITY );
- return sb.ToString();
- }
- set { m_Link.SetPath( value ); }
- }
-
- ///
- /// Gets or sets the path of the assigned to the shortcut.
- ///
- ///
- ///
- ///
- public string IconPath
- {
- get
- {
- StringBuilder sb = new StringBuilder( MAX_PATH );
- int nIconIdx;
- m_Link.GetIconLocation( sb, sb.Capacity, out nIconIdx );
- return sb.ToString();
- }
- set { m_Link.SetIconLocation( value, IconIndex ); }
- }
-
- ///
- /// Gets or sets the index of the assigned to the shortcut.
- /// Set to zero when the property specifies a .ICO file.
- ///
- ///
- ///
- ///
- public int IconIndex
- {
- get
- {
- StringBuilder sb = new StringBuilder( MAX_PATH );
- int nIconIdx;
- m_Link.GetIconLocation( sb, sb.Capacity, out nIconIdx );
- return nIconIdx;
- }
- set { m_Link.SetIconLocation( IconPath, value ); }
- }
-
- ///
- /// Retrieves the Icon of the shortcut as it will appear in Explorer.
- /// Use the and
- /// properties to change it.
- ///
- public Icon Icon
- {
- get
- {
- StringBuilder sb = new StringBuilder( MAX_PATH );
- int nIconIdx;
- IntPtr hIcon, hInst;
- Icon ico, clone;
-
-
- m_Link.GetIconLocation( sb, sb.Capacity, out nIconIdx );
- hInst = Marshal.GetHINSTANCE( this.GetType().Module );
- hIcon = Native.ExtractIcon( hInst, sb.ToString(), nIconIdx );
- if ( hIcon == IntPtr.Zero )
- return null;
-
- // Return a cloned Icon, because we have to free the original ourselves.
- ico = Icon.FromHandle( hIcon );
- clone = (Icon)ico.Clone();
- ico.Dispose();
- Native.DestroyIcon( hIcon );
- return clone;
- }
- }
-
- ///
- /// Gets or sets the System.Diagnostics.ProcessWindowStyle value
- /// that decides the initial show state of the shortcut target. Note that
- /// ProcessWindowStyle.Hidden is not a valid property value.
- ///
- public ProcessWindowStyle WindowStyle
- {
- get
- {
- int nWS;
- m_Link.GetShowCmd( out nWS );
-
- switch ( nWS ) {
- case SW_SHOWMINIMIZED:
- case SW_SHOWMINNOACTIVE:
- return ProcessWindowStyle.Minimized;
-
- case SW_SHOWMAXIMIZED:
- return ProcessWindowStyle.Maximized;
-
- default:
- return ProcessWindowStyle.Normal;
- }
- }
- set
- {
- int nWS;
-
- switch ( value ) {
- case ProcessWindowStyle.Normal:
- nWS = SW_SHOWNORMAL;
- break;
-
- case ProcessWindowStyle.Minimized:
- nWS = SW_SHOWMINNOACTIVE;
- break;
-
- case ProcessWindowStyle.Maximized:
- nWS = SW_SHOWMAXIMIZED;
- break;
-
- default: // ProcessWindowStyle.Hidden
- throw new ArgumentException("Unsupported ProcessWindowStyle value.");
- }
-
- m_Link.SetShowCmd( nWS );
-
- }
- }
-
- ///
- /// Gets or sets the hotkey for the shortcut.
- ///
- public Keys Hotkey
- {
- get
- {
- short wHotkey;
- int dwHotkey;
-
- m_Link.GetHotkey( out wHotkey );
-
- //
- // Convert from IShellLink 16-bit format to Keys enumeration 32-bit value
- // IShellLink: 0xMMVK
- // Keys: 0x00MM00VK
- // MM = Modifier (Alt, Control, Shift)
- // VK = Virtual key code
- //
- dwHotkey = ((wHotkey & 0xFF00) << 8) | (wHotkey & 0xFF);
- return (Keys) dwHotkey;
- }
- set
- {
- short wHotkey;
-
- if ( (value & Keys.Modifiers) == 0 )
- throw new ArgumentException("Hotkey must include a modifier key.");
-
- //
- // Convert from Keys enumeration 32-bit value to IShellLink 16-bit format
- // IShellLink: 0xMMVK
- // Keys: 0x00MM00VK
- // MM = Modifier (Alt, Control, Shift)
- // VK = Virtual key code
- //
- wHotkey = unchecked((short) ( ((int) (value & Keys.Modifiers) >> 8) | (int) (value & Keys.KeyCode) ));
- m_Link.SetHotkey( wHotkey );
-
- }
- }
-
- ///
- /// Saves the shortcut to disk.
- ///
- public void Save()
- {
- IPersistFile pf = (IPersistFile) m_Link;
- pf.Save( m_sPath, true );
- }
-
- ///
- /// Returns a reference to the internal ShellLink object,
- /// which can be used to perform more advanced operations
- /// not supported by this wrapper class, by using the
- /// IShellLink interface directly.
- ///
- public object ShellLink
- {
- get { return m_Link; }
- }
-
-
- #region Native Win32 API functions
- private class Native
- {
- [DllImport("shell32.dll", CharSet=CharSet.Auto)]
- public static extern IntPtr ExtractIcon(IntPtr hInst, string lpszExeFileName, int nIconIndex);
-
- [DllImport("user32.dll")]
- public static extern bool DestroyIcon(IntPtr hIcon);
- }
- #endregion
-
- }
-}
diff --git a/MediaBrowser.Installer/Icon.ico b/MediaBrowser.Installer/Icon.ico
deleted file mode 100644
index 4acd8f9219..0000000000
Binary files a/MediaBrowser.Installer/Icon.ico and /dev/null differ
diff --git a/MediaBrowser.Installer/MainWindow.xaml b/MediaBrowser.Installer/MainWindow.xaml
deleted file mode 100644
index 06727dfaee..0000000000
--- a/MediaBrowser.Installer/MainWindow.xaml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MediaBrowser.Installer/MainWindow.xaml.cs b/MediaBrowser.Installer/MainWindow.xaml.cs
deleted file mode 100644
index 6e4ad1258d..0000000000
--- a/MediaBrowser.Installer/MainWindow.xaml.cs
+++ /dev/null
@@ -1,642 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Configuration;
-using System.Diagnostics;
-using System.IO;
-using System.Net;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Linq;
-using Ionic.Zip;
-using MediaBrowser.Installer.Code;
-using Microsoft.Win32;
-using ServiceStack.Text;
-
-namespace MediaBrowser.Installer
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- protected PackageVersionClass PackageClass = PackageVersionClass.Release;
- protected Version RequestedVersion = new Version(4,0,0,0);
- protected Version ActualVersion;
- protected string PackageName = "MBServer";
- protected string RootSuffix = "-Server";
- protected string TargetExe = "MediaBrowser.ServerApplication.exe";
- protected string TargetArgs = "";
- protected string FriendlyName = "Media Browser Server";
- protected string Archive = null;
- protected bool InstallPismo = true;
- protected string RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser-Server");
- protected string EndInstallPath = 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");
-
- protected WebClient MainClient = new WebClient();
-
- public MainWindow()
- {
- try
- {
- GetArgs();
- InitializeComponent();
- DoInstall(Archive);
- }
- catch (Exception e)
- {
- MessageBox.Show("Error: " + e.Message + " \n\n" + e.StackTrace);
- }
- }
-
- private void btnCancel_Click(object sender, RoutedEventArgs e)
- {
- this.Close();
- }
-
- protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
- {
- if (!SystemClosing && MessageBox.Show("Cancel Installation - Are you sure?", "Cancel", MessageBoxButton.YesNo) == MessageBoxResult.No)
- {
- e.Cancel = true;
- }
- if (MainClient.IsBusy)
- {
- MainClient.CancelAsync();
- while (MainClient.IsBusy)
- {
- // wait to finish
- }
- }
- MainClient.Dispose();
- ClearTempLocation(TempLocation);
- base.OnClosing(e);
- }
-
- protected void SystemClose(string message = null)
- {
- if (message != null)
- {
- MessageBox.Show(message, "Error");
- }
- SystemClosing = true;
- this.Close();
- }
-
- protected void GetArgs()
- {
- //cmd line args should be name/value pairs like: product=server archive="c:\.." caller=34552
- var cmdArgs = Environment.GetCommandLineArgs();
- var args = new Dictionary(StringComparer.OrdinalIgnoreCase);
- foreach (var pair in cmdArgs)
- {
- var nameValue = pair.Split('=');
- if (nameValue.Length == 2)
- {
- args[nameValue[0]] = nameValue[1];
- }
- }
- Archive = args.GetValueOrDefault("archive", null);
- if (args.GetValueOrDefault("pismo","true") == "false") InstallPismo = false;
-
- var product = args.GetValueOrDefault("product", null) ?? ConfigurationManager.AppSettings["product"] ?? "server";
- PackageClass = (PackageVersionClass) Enum.Parse(typeof (PackageVersionClass), args.GetValueOrDefault("class", null) ?? ConfigurationManager.AppSettings["class"] ?? "Release");
- RequestedVersion = new Version(args.GetValueOrDefault("version", "4.0"));
-
- var callerId = args.GetValueOrDefault("caller", null);
- if (callerId != null)
- {
- // Wait for our caller to exit
- try
- {
- var process = Process.GetProcessById(Convert.ToInt32(callerId));
- process.WaitForExit();
- }
- catch (ArgumentException)
- {
- // wasn't running
- }
-
- IsUpdate = true;
- }
-
- //MessageBox.Show(string.Format("Called with args: product: {0} archive: {1} caller: {2}", product, Archive, callerId));
-
- switch (product.ToLower())
- {
- case "mbt":
- PackageName = "MBTheater";
- RootSuffix = "-Theater";
- TargetExe = "MediaBrowser.UI.exe";
- FriendlyName = "Media Browser Theater";
- RootPath = EndInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser" + RootSuffix);
- EndInstallPath = Path.Combine(RootPath, "system");
- break;
-
- case "mbc":
- PackageName = "MBClassic";
- RootSuffix = "-WMC";
- TargetExe = "ehshell.exe";
- TargetArgs = @"/nostartupanimation /entrypoint:{CE32C570-4BEC-4aeb-AD1D-CF47B91DE0B2}\{FC9ABCCC-36CB-47ac-8BAB-03E8EF5F6F22}";
- FriendlyName = "Media Browser Classic";
- RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser" + RootSuffix);
- EndInstallPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), "ehome");
- break;
-
- default:
- PackageName = "MBServer";
- RootSuffix = "-Server";
- TargetExe = "MediaBrowser.ServerApplication.exe";
- FriendlyName = "Media Browser Server";
- RootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser" + RootSuffix);
- EndInstallPath = Path.Combine(RootPath, "system");
- break;
- }
-
-
- }
-
- ///
- /// Execute the install process
- ///
- ///
- protected async Task DoInstall(string archive)
- {
- lblStatus.Text = string.Format("Installing {0}...", FriendlyName);
-
- // Determine Package version
- var version = archive == null ? await GetPackageVersion() : null;
- ActualVersion = version != null ? version.version : new Version(3,0);
-
- // 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 (!IsUpdate && PackageName == "MBServer" && server != null)
- {
- lblStatus.Text = "Shutting Down Media Browser Server...";
- using (var client = new WebClient())
- {
- try
- {
- client.UploadString("http://localhost:8096/mediabrowser/System/Shutdown", "");
- try
- {
- server.WaitForExit(30000); //don't hang indefinitely
- }
- catch (ArgumentException)
- {
- // already gone
- }
- }
- catch (WebException e)
- {
- if (e.Status == WebExceptionStatus.Timeout || e.Message.StartsWith("Unable to connect",StringComparison.OrdinalIgnoreCase)) return; // just wasn't running
-
- MessageBox.Show("Error shutting down server. Please be sure it is not running before hitting OK.\n\n" + e.Status + "\n\n" + e.Message);
- }
- }
- }
- else
- {
- if (!IsUpdate && PackageName == "MBTheater")
- {
- // Uninstalling MBT - shut it down if it is running
- var processes = Process.GetProcessesByName("mediabrowser.ui");
- if (processes.Length > 0)
- {
- lblStatus.Text = "Shutting Down Media Browser Theater...";
- try
- {
- processes[0].Kill();
- }
- catch (Exception ex)
- {
- MessageBox.Show("Unable to shutdown Media Browser Theater. Please ensure it is not running before hitting OK.\n\n" + ex.Message, "Error");
- }
- }
-
- }
- }
-
- // Download if we don't already have it
- if (archive == null)
- {
- lblStatus.Text = string.Format("Downloading {0} (version {1})...", FriendlyName, version.versionStr);
- try
- {
- archive = await DownloadPackage(version);
- }
- catch (Exception e)
- {
- SystemClose("Error Downloading Package - " + e.GetType().FullName + "\n\n" + e.Message);
- return;
- }
- }
-
- if (archive == null) return; //we canceled or had an error that was already reported
-
- if (Path.GetExtension(archive) == ".msi")
- {
-
- // Create directory for our installer log
- if (!Directory.Exists(RootPath)) Directory.CreateDirectory(RootPath);
- var logPath = Path.Combine(RootPath, "Logs");
- if (!Directory.Exists(logPath)) Directory.CreateDirectory(logPath);
-
- // Run in silent mode and wait for it to finish
- // First uninstall any previous version
- lblStatus.Text = "Uninstalling any previous version...";
- var logfile = Path.Combine(RootPath, "logs", "UnInstall.log");
- var uninstaller = Process.Start("msiexec", "/x \"" + archive + "\" /quiet /le \"" + logfile + "\"");
- if (uninstaller != null) uninstaller.WaitForExit();
- // And now installer
- lblStatus.Text = "Installing " + FriendlyName;
- logfile = Path.Combine(RootPath, "logs", "Install.log");
- var installer = Process.Start(archive, "/quiet /le \""+logfile+"\"");
- installer.WaitForExit(); // let this throw if there is a problem
- }
- else
- {
- // Extract
- lblStatus.Text = "Extracting Package...";
- var retryCount = 0;
- var success = false;
- while (!success && retryCount < 3)
- {
- try
- {
- ExtractPackage(archive);
- success = true;
- // We're done with it so delete it (this is necessary for update operations)
- TryDelete(archive);
- }
- catch (Exception e)
- {
- if (retryCount < 3)
- {
- retryCount++;
- Thread.Sleep(500);
- }
- else
- {
- // Delete archive even if failed so we don't try again with this one
- TryDelete(archive);
- SystemClose("Error Extracting - " + e.GetType().FullName + "\n\n" + e.Message);
- return;
- }
- }
- }
-
- // Create shortcut
- lblStatus.Text = "Creating Shortcuts...";
- var fullPath = Path.Combine(RootPath, "System", TargetExe);
- try
- {
- CreateShortcuts(fullPath);
- }
- catch (Exception e)
- {
- SystemClose("Error Creating Shortcut - "+e.GetType().FullName+"\n\n"+e.Message);
- return;
- }
-
- // Install Pismo
- if (InstallPismo)
- {
- lblStatus.Text = "Installing ISO Support...";
- try
- {
- PismoInstall();
- }
- catch (Exception e)
- {
- SystemClose("Error Installing ISO support - "+e.GetType().FullName+"\n\n"+e.Message);
- }
- }
-
- // Now delete the pismo install files
- Directory.Delete(Path.Combine(RootPath, "Pismo"), true);
-
-
- }
-
- // And run
- lblStatus.Text = string.Format("Starting {0}...", FriendlyName);
- try
- {
- Process.Start(Path.Combine(EndInstallPath, TargetExe), TargetArgs);
- }
- catch (Exception e)
- {
- SystemClose("Error Executing - "+Path.Combine(EndInstallPath, TargetExe) + " " + TargetArgs + "\n\n" +e.GetType().FullName+"\n\n"+e.Message);
- return;
- }
-
- SystemClose();
-
- }
-
- private bool TryDelete(string file)
- {
- try
- {
- File.Delete(file);
- }
- catch (FileNotFoundException)
- {
- }
- catch (Exception e)
- {
- return false;
- }
-
- return true;
- }
-
- private void PismoInstall()
- {
- // Kick off the Pismo installer and wait for it to end
- var pismo = new Process();
- pismo.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
- pismo.StartInfo.FileName = Path.Combine(RootPath, "Pismo", "pfminst.exe");
- pismo.StartInfo.Arguments = "install";
- pismo.Start();
- pismo.WaitForExit();
-
- }
-
- protected async Task GetPackageVersion()
- {
- try
- {
- // get the package information for the server
- var json = await MainClient.DownloadStringTaskAsync("http://www.mb3admin.com/admin/service/package/retrieveAll?name=" + PackageName);
- var packages = JsonSerializer.DeserializeFromString>(json);
-
- var version = packages[0].versions.Where(v => v.classification <= PackageClass).OrderByDescending(v => v.version).FirstOrDefault(v => v.version <= RequestedVersion);
- if (version == null)
- {
- SystemClose("Could not locate download package. Aborting.");
- return null;
- }
- return version;
- }
- catch (Exception e)
- {
- SystemClose(e.GetType().FullName + "\n\n" + e.Message);
- }
-
- return null;
- }
-
- ///
- /// Download our specified package to an archive in a temp location
- ///
- /// The fully qualified name of the downloaded package
- protected async Task DownloadPackage(PackageVersionInfo version)
- {
- var success = false;
- var retryCount = 0;
- var archiveFile = Path.Combine(PrepareTempLocation(), version.targetFilename);
-
- try
- {
- while (!success && retryCount < 3)
- {
-
- // setup download progress and download the package
- MainClient.DownloadProgressChanged += DownloadProgressChanged;
- try
- {
- await MainClient.DownloadFileTaskAsync(version.sourceUrl, archiveFile);
- success = true;
- }
- catch (WebException e)
- {
- if (e.Status == WebExceptionStatus.RequestCanceled)
- {
- return null;
- }
- if (retryCount < 3 && (e.Status == WebExceptionStatus.Timeout || e.Status == WebExceptionStatus.ConnectFailure || e.Status == WebExceptionStatus.ProtocolError))
- {
- Thread.Sleep(500); //wait just a sec
- PrepareTempLocation(); //clear this out
- retryCount++;
- }
- else
- {
- throw;
- }
- }
- }
-
- return archiveFile;
- }
- catch (Exception e)
- {
- SystemClose(e.GetType().FullName + "\n\n" + e.Message);
- }
- return "";
-
- }
-
- void DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
- {
- rectProgress.Width = (this.Width * e.ProgressPercentage)/100f;
- }
-
- ///
- /// Extract the provided archive to our program root
- /// It is assumed the archive is a zip file relative to that root (with all necessary sub-folders)
- ///
- ///
- protected void ExtractPackage(string archive)
- {
- // Delete old content of system
- var systemDir = Path.Combine(RootPath, "System");
- var backupDir = Path.Combine(RootPath, "System.old");
- if (Directory.Exists(systemDir))
- {
- try
- {
- if (Directory.Exists(backupDir)) Directory.Delete(backupDir,true);
-
- }
- catch (Exception e)
- {
- throw new ApplicationException("Could not delete previous backup directory.\n\n"+e.Message);
- }
-
- try
- {
- Directory.Move(systemDir, backupDir);
- }
- catch (Exception e)
- {
- throw new ApplicationException("Could not move system directory to backup.\n\n"+e.Message);
- }
- }
-
- // And extract
- var retryCount = 0;
- var success = false;
- while (!success && retryCount < 3)
- {
- try
- {
- using (var fileStream = File.OpenRead(archive))
- {
- using (var zipFile = ZipFile.Read(fileStream))
- {
- zipFile.ExtractAll(RootPath, ExtractExistingFileAction.OverwriteSilently);
- success = true;
- }
- }
- }
- catch (Exception e)
- {
- if (retryCount < 3)
- {
- Thread.Sleep(250);
- retryCount++;
- }
- else
- {
- //Rollback
- RollBack(systemDir, backupDir);
- throw new ApplicationException(string.Format("Could not extract {0} to {1} after {2} attempts.\n\n{3}", archive, RootPath, retryCount, e.Message));
- }
- }
- }
- }
-
- protected void RollBack(string systemDir, string backupDir)
- {
- if (Directory.Exists(backupDir))
- {
- if (Directory.Exists(systemDir)) Directory.Delete(systemDir);
- Directory.Move(backupDir, systemDir);
- }
- }
-
- ///
- /// Create a shortcut in the current user's start menu
- /// Only do current user to avoid need for admin elevation
- ///
- ///
- protected void CreateShortcuts(string targetExe)
- {
- // get path to all users start menu
- var startMenu = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.StartMenu),"Media Browser 3");
- if (!Directory.Exists(startMenu)) Directory.CreateDirectory(startMenu);
- var product = new ShellShortcut(Path.Combine(startMenu, FriendlyName+".lnk")) {Path = targetExe, Description = "Run " + FriendlyName};
- product.Save();
-
- if (PackageName == "MBServer")
- {
- var path = Path.Combine(startMenu, "MB Dashboard.lnk");
- var dashboard = new ShellShortcut(path)
- {Path = @"http://localhost:8096/mediabrowser/dashboard/dashboard.html", Description = "Open the Media Browser Server Dashboard (configuration)"};
- dashboard.Save();
-
- }
- CreateUninstaller(Path.Combine(Path.GetDirectoryName(targetExe) ?? "", "MediaBrowser.Uninstaller.exe")+ " "+ (PackageName == "MBServer" ? "server" : "mbt"), targetExe);
-
- }
-
- ///
- /// Create uninstall entry in add/remove
- ///
- ///
- ///
- private void CreateUninstaller(string uninstallPath, string targetExe)
- {
- var parent = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", true);
- {
- if (parent == null)
- {
- 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
- {
- RegistryKey key = null;
-
- try
- {
- const string guidText = "{4E76DB4E-1BB9-4A7B-860C-7940779CF7A0}";
- key = parent.OpenSubKey(guidText, true) ??
- parent.CreateSubKey(guidText);
-
- if (key == null)
- {
- MessageBox.Show(String.Format("Unable to create uninstaller entry'{0}\\{1}'. Program is still installed successfully.", @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", guidText));
- return;
- }
-
- key.SetValue("DisplayName", FriendlyName);
- key.SetValue("ApplicationVersion", ActualVersion);
- key.SetValue("Publisher", "Media Browser Team");
- key.SetValue("DisplayIcon", targetExe);
- key.SetValue("DisplayVersion", ActualVersion.ToString(2));
- key.SetValue("URLInfoAbout", "http://www.mediabrowser3.com");
- key.SetValue("Contact", "http://community.mediabrowser.tv");
- key.SetValue("InstallDate", DateTime.Now.ToString("yyyyMMdd"));
- key.SetValue("UninstallString", uninstallPath);
- }
- finally
- {
- if (key != null)
- {
- key.Close();
- }
- }
- }
- catch (Exception ex)
- {
- MessageBox.Show("An error occurred writing uninstall information to the registry.");
- }
- }
- }
-
- ///
- /// Prepare a temporary location to download to
- ///
- /// The path to the temporary location
- protected string PrepareTempLocation()
- {
- ClearTempLocation(TempLocation);
- Directory.CreateDirectory(TempLocation);
- return TempLocation;
- }
-
- ///
- /// Clear out (delete recursively) the supplied temp location
- ///
- ///
- protected void ClearTempLocation(string location)
- {
- if (Directory.Exists(location))
- {
- Directory.Delete(location, true);
- }
- }
-
- }
-}
diff --git a/MediaBrowser.Installer/MediaBrowser.Installer.csproj b/MediaBrowser.Installer/MediaBrowser.Installer.csproj
deleted file mode 100644
index fee14ee9b1..0000000000
--- a/MediaBrowser.Installer/MediaBrowser.Installer.csproj
+++ /dev/null
@@ -1,214 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}
- WinExe
- Properties
- MediaBrowser.Installer
- MediaBrowser.Installer
- v4.5
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
- true
- ..\
- true
- http://www.mb3admin.com/downloads/dev/server/
- false
- Web
- false
- Foreground
- 7
- Days
- false
- false
- true
- http://community.mediabrowser.tv
- Media Browser Installer
- Media Browser Team
- Media Browser
- false
- 64
- 0.1.1.%2a
- false
- true
- true
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- x86
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
- 45143DAA4FF6F1512702FCBADCB0D7C1AB7E39FB
-
-
- MediaBrowser.Installer_1_TemporaryKey.pfx
-
-
- true
-
-
- true
-
-
- LocalIntranet
-
-
- Properties\app.manifest
-
-
- Icon.ico
-
-
-
- False
- ..\packages\DotNetZip.1.9.1.8\lib\net20\Ionic.Zip.dll
-
-
- False
- ..\packages\ServiceStack.Text.3.9.43\lib\net35\ServiceStack.Text.dll
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- Designer
- MSBuild:Compile
-
-
- MSBuild:Compile
- Designer
-
-
- Properties\SharedVersion.cs
-
-
- App.xaml
- Code
-
-
- DownloadAnimation.xaml
-
-
-
-
-
-
-
-
-
- MainWindow.xaml
- Code
-
-
-
-
- Code
-
-
- True
- True
- Resources.resx
-
-
- True
- Settings.settings
- True
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- Designer
-
-
-
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
-
-
-
- Designer
-
-
-
-
- False
- Microsoft .NET Framework 4.5 %28x86 and x64%29
- true
-
-
- False
- .NET Framework 3.5 SP1 Client Profile
- false
-
-
- False
- .NET Framework 3.5 SP1
- false
-
-
- False
- Visual C++ 2010 Runtime Libraries %28x86%29
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Installer/MediaBrowser.Installer_1_TemporaryKey.pfx b/MediaBrowser.Installer/MediaBrowser.Installer_1_TemporaryKey.pfx
deleted file mode 100644
index 0b1fff555f..0000000000
Binary files a/MediaBrowser.Installer/MediaBrowser.Installer_1_TemporaryKey.pfx and /dev/null differ
diff --git a/MediaBrowser.Installer/MediaBrowser.Installer_TemporaryKey.pfx b/MediaBrowser.Installer/MediaBrowser.Installer_TemporaryKey.pfx
deleted file mode 100644
index 18ec3ef6b3..0000000000
Binary files a/MediaBrowser.Installer/MediaBrowser.Installer_TemporaryKey.pfx and /dev/null differ
diff --git a/MediaBrowser.Installer/Properties/AssemblyInfo.cs b/MediaBrowser.Installer/Properties/AssemblyInfo.cs
deleted file mode 100644
index 66ed12d739..0000000000
--- a/MediaBrowser.Installer/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-using System.Reflection;
-using System.Resources;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-using System.Windows;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("MediaBrowser.Server.Installer")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Microsoft")]
-[assembly: AssemblyProduct("MediaBrowser.Server.Installer")]
-[assembly: AssemblyCopyright("Copyright © Microsoft 2013")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-//In order to begin building localizable applications, set
-//CultureYouAreCodingWith in your .csproj file
-//inside a . For example, if you are using US english
-//in your source files, set the to en-US. Then uncomment
-//the NeutralResourceLanguage attribute below. Update the "en-US" in
-//the line below to match the UICulture setting in the project file.
-
-//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
-
-
-[assembly: ThemeInfo(
- ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
- // or application resource dictionaries)
- ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
- // app, or any theme specific resource dictionaries)
-)]
-
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
\ No newline at end of file
diff --git a/MediaBrowser.Installer/Properties/Resources.Designer.cs b/MediaBrowser.Installer/Properties/Resources.Designer.cs
deleted file mode 100644
index 27baf2785d..0000000000
--- a/MediaBrowser.Installer/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,71 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.17929
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace MediaBrowser.Installer.Properties
-{
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources
- {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources()
- {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
- get
- {
- if ((resourceMan == null))
- {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MediaBrowser.Server.Installer.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
- get
- {
- return resourceCulture;
- }
- set
- {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/MediaBrowser.Installer/Properties/Resources.resx b/MediaBrowser.Installer/Properties/Resources.resx
deleted file mode 100644
index af7dbebbac..0000000000
--- a/MediaBrowser.Installer/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Installer/Properties/Settings.Designer.cs b/MediaBrowser.Installer/Properties/Settings.Designer.cs
deleted file mode 100644
index a5c5374640..0000000000
--- a/MediaBrowser.Installer/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.17929
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace MediaBrowser.Installer.Properties
-{
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
- {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default
- {
- get
- {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/MediaBrowser.Installer/Properties/Settings.settings b/MediaBrowser.Installer/Properties/Settings.settings
deleted file mode 100644
index 033d7a5e9e..0000000000
--- a/MediaBrowser.Installer/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Installer/Properties/app.manifest b/MediaBrowser.Installer/Properties/app.manifest
deleted file mode 100644
index 887fa2b9d7..0000000000
--- a/MediaBrowser.Installer/Properties/app.manifest
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Installer/mbt.config b/MediaBrowser.Installer/mbt.config
deleted file mode 100644
index b94d81797d..0000000000
--- a/MediaBrowser.Installer/mbt.config
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Installer/packages.config b/MediaBrowser.Installer/packages.config
deleted file mode 100644
index 8d0ce68b42..0000000000
--- a/MediaBrowser.Installer/packages.config
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj
index 38ece1cdb3..cee13f5747 100644
--- a/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj
+++ b/MediaBrowser.ServerApplication/MediaBrowser.ServerApplication.csproj
@@ -387,11 +387,10 @@ mkdir "$(SolutionDir)..\Deploy\Server\System"
rmdir "$(SolutionDir)..\Deploy\Server\Pismo" /s /q
mkdir "$(SolutionDir)..\Deploy\Server\Pismo"
xcopy "$(TargetDir)$(TargetFileName)" "$(SolutionDir)..\Deploy\Server\System\" /y
-xcopy "$(SolutionDir)Mediabrowser.Uninstaller\bin\Release\MediaBrowser.Uninstaller.exe.config" "$(SolutionDir)..\Deploy\Server\System\" /y
-xcopy "$(SolutionDir)Mediabrowser.Uninstaller.Execute\bin\Release\MediaBrowser.Uninstaller.Execute.exe.config" "$(SolutionDir)..\Deploy\Server\System\" /y
-xcopy "$(SolutionDir)Mediabrowser.Uninstaller\bin\Release\MediaBrowser.Uninstaller.exe" "$(SolutionDir)..\Deploy\Server\System\" /y
-xcopy "$(SolutionDir)Mediabrowser.Uninstaller.Execute\bin\Release\MediaBrowser.Uninstaller.Execute.exe" "$(SolutionDir)..\Deploy\Server\System\" /y
-xcopy "$(SolutionDir)Mediabrowser.Installer\bin\Release\MediaBrowser.Installer.exe" "$(SolutionDir)..\Deploy\Server\System\" /y
+xcopy "$(SolutionDir)Installation\MediaBrowser.Uninstaller.exe.config" "$(SolutionDir)..\Deploy\Server\System\" /y
+xcopy "$(SolutionDir)Installation\MediaBrowser.Uninstaller.exe" "$(SolutionDir)..\Deploy\Server\System\" /y
+xcopy "$(SolutionDir)Installation\MediaBrowser.InstallUtil.dll" "$(SolutionDir)..\Deploy\Server\System\" /y
+xcopy "$(SolutionDir)Installation\MediaBrowser.Updater.exe" "$(SolutionDir)..\Deploy\Server\System\" /y
//Pismo
"$(SolutionDir)ThirdParty\7zip\7za" x "$(SolutionDir)ThirdParty\Pismo-Install\pfm-168-mediabrowser-win.zip" -o"$(SolutionDir)..\Deploy\Server\Pismo\" -y
diff --git a/MediaBrowser.Uninstaller/App.config b/MediaBrowser.Uninstaller/App.config
deleted file mode 100644
index 8e15646352..0000000000
--- a/MediaBrowser.Uninstaller/App.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Uninstaller/App.xaml b/MediaBrowser.Uninstaller/App.xaml
deleted file mode 100644
index 59eab9383a..0000000000
--- a/MediaBrowser.Uninstaller/App.xaml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
diff --git a/MediaBrowser.Uninstaller/App.xaml.cs b/MediaBrowser.Uninstaller/App.xaml.cs
deleted file mode 100644
index 165eb4ff8a..0000000000
--- a/MediaBrowser.Uninstaller/App.xaml.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System.Windows;
-
-namespace MediaBrowser.Uninstaller
-{
- ///
- /// Interaction logic for App.xaml
- ///
- public partial class App : Application
- {
- }
-}
diff --git a/MediaBrowser.Uninstaller/MainWindow.xaml b/MediaBrowser.Uninstaller/MainWindow.xaml
deleted file mode 100644
index 99a5052bab..0000000000
--- a/MediaBrowser.Uninstaller/MainWindow.xaml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/MediaBrowser.Uninstaller/MainWindow.xaml.cs b/MediaBrowser.Uninstaller/MainWindow.xaml.cs
deleted file mode 100644
index 1db83a3197..0000000000
--- a/MediaBrowser.Uninstaller/MainWindow.xaml.cs
+++ /dev/null
@@ -1,312 +0,0 @@
-using System;
-using System.Diagnostics;
-using System.Net;
-using System.Reflection;
-using Microsoft.Win32;
-using System.IO;
-using System.Threading;
-using System.Windows;
-
-namespace MediaBrowser.Uninstaller
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- protected string Product = "Server";
- protected string RootSuffix = "-Server";
-
- public MainWindow()
- {
-
- var args = Environment.GetCommandLineArgs();
- var product = args.Length > 1 ? args[1] : null;
- if (product == null)
- {
- MessageBox.Show("Please use 'Programs and Features' to uninstall.");
- Close();
- }
- else
- {
- var callerId = args.Length > 2 ? args[2] : null;
- if (callerId != null)
- {
- // Wait for our caller to exit
- try
- {
- var process = Process.GetProcessById(Convert.ToInt32(callerId));
- process.WaitForExit();
- }
- catch (ArgumentException)
- {
- // wasn't running
- }
- }
- else
- {
- // No caller - means we were called directly and need to move to temp file and execute there
- //copy the real program to a temp location so we can delete everything here (including us)
- var us = Assembly.GetExecutingAssembly().Location;
- var tempExe = Path.Combine(Path.GetTempPath(), Path.GetFileName(us) ?? "Mediabrowser.Uninstaller.exe");
- File.Copy(us,tempExe,true);
- //get our pid to pass to the uninstaller so it can wait for us to exit
- var pid = Process.GetCurrentProcess().Id;
- //kick off the copy
- Process.Start(tempExe, product + " " + pid);
- //and shut down
- Close();
- }
-
- InitializeComponent();
-
-
- switch (product)
- {
- case "server":
- Product = "Server";
- RootSuffix = "-Server";
- break;
-
- case "mbt":
- Product = "Theater";
- RootSuffix = "-Theater";
- break;
-
- default:
- MessageBox.Show("Please Use 'Programs and Features' to uninstall.");
- Close();
- break;
-
- }
-
- lblHeading.Content = this.Title = "Uninstall Media Browser " + Product;
-
- }
-
- }
-
- private void btnCancel_Click(object sender, RoutedEventArgs e)
- {
- Close();
- }
-
- private void cbxRemoveAll_Checked(object sender, RoutedEventArgs e)
- {
- if (cbxRemoveAll.IsChecked == true)
- {
- cbxRemoveCache.IsChecked = cbxRemoveConfig.IsChecked = cbxRemovePlugins.IsChecked = true;
- }
-
- cbxRemoveCache.IsEnabled = cbxRemoveConfig.IsEnabled = cbxRemovePlugins.IsEnabled = !cbxRemoveAll.IsChecked.Value;
- }
-
- private void btnUninstall_Click(object sender, RoutedEventArgs e)
- {
- // First remove our shortcuts
- lblHeading.Content = "Removing Shortcuts...";
- btnCancel.IsEnabled = btnUninstall.IsEnabled = false;
- grdOptions.Visibility = Visibility.Hidden;
-
- 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")
- {
- RemoveShortcut(Path.Combine(startMenu, "MB Dashboard.lnk"));
- var procs = Process.GetProcessesByName("mediabrowser.serverapplication");
- var server = procs.Length > 0 ? procs[0] : null;
- if (server != null)
- {
- using (var client = new WebClient())
- {
- lblHeading.Content = "Shutting Down Media Browser Server...";
- try
- {
- client.UploadString("http://localhost:8096/mediabrowser/system/shutdown", "");
- try
- {
- server.WaitForExit();
- }
- catch (ArgumentException)
- {
- // already gone
- }
- }
- catch (WebException ex)
- {
- if (ex.Status != WebExceptionStatus.ConnectFailure && !ex.Message.StartsWith("Unable to connect", StringComparison.OrdinalIgnoreCase))
- {
- MessageBox.Show("Error shutting down server. Please be sure it is not running before hitting OK.\n\n" + ex.Status + "\n\n" + ex.Message);
- }
- }
- }
- }
- }
- else
- {
- // Installing MBT - shut it down if it is running
- var processes = Process.GetProcessesByName("mediabrowser.ui");
- if (processes.Length > 0)
- {
- lblHeading.Content = "Shutting Down Media Browser Theater...";
- try
- {
- processes[0].Kill();
- }
- catch (Exception ex)
- {
- MessageBox.Show("Unable to shutdown Media Browser Theater. Please ensure it is not running before hitting OK.\n\n" + ex.Message, "Error");
- }
- }
- }
- // if the startmenu item is empty now - delete it too
- if (Directory.GetFiles(startMenu).Length == 0)
- {
- try
- {
- Directory.Delete(startMenu);
- }
- catch (DirectoryNotFoundException)
- {
- }
- catch (Exception ex)
- {
- {
- MessageBox.Show(string.Format("Error attempting to remove shortcut folder {0}\n\n {1}", startMenu, ex.Message), "Error");
- }
- }
- }
-
- var rootPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData), "MediaBrowser" + RootSuffix);
-
- lblHeading.Content = "Removing System Files...";
- if (cbxRemoveAll.IsChecked == true)
- {
- // Just remove our whole directory
- RemovePath(rootPath);
- }
- else
- {
- // First remove the system
- RemovePath(Path.Combine(rootPath, "System"));
- RemovePath(Path.Combine(rootPath, "MediaTools"));
-
- // And then the others specified
- if (cbxRemoveCache.IsChecked == true)
- {
- lblHeading.Content = "Removing Cache and Data Files...";
- RemovePath(Path.Combine(rootPath, "cache"));
- RemovePath(Path.Combine(rootPath, "data"));
- }
- if (cbxRemoveConfig.IsChecked == true)
- {
- lblHeading.Content = "Removing Config Files...";
- RemovePath(Path.Combine(rootPath, "config"));
- RemovePath(Path.Combine(rootPath, "logs"));
- }
- if (cbxRemovePlugins.IsChecked == true)
- {
- lblHeading.Content = "Removing Plugin Files...";
- RemovePath(Path.Combine(rootPath, "plugins"));
- }
- }
-
- // Remove reference to us
- RemoveUninstall();
-
- // Remove pismo
- try
- {
- UnInstallPismo();
- }
- catch
- {
- // No biggie - maybe they uninstalled it themselves
- }
-
- // and done
- lblHeading.Content = string.Format("Media Browser {0} Uninstalled.", Product);
- btnUninstall.Visibility = Visibility.Hidden;
- btnFinished.Visibility = Visibility.Visible;
- }
-
- private void UnInstallPismo()
- {
- // Kick off the Pismo uninstaller and wait for it to end
- var pismo = new Process();
- pismo.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
- pismo.StartInfo.FileName = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Windows), "pfm.exe");
- pismo.StartInfo.Arguments = "uninstall pfm-license-mediabrowser.txt";
- pismo.Start();
- pismo.WaitForExit();
- }
-
- private void RemoveUninstall()
- {
-
- using (var parent = Registry.CurrentUser.OpenSubKey(
- @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall", true))
- {
- if (parent == null)
- {
- MessageBox.Show("Uninstall registry key not found.");
- return;
- }
- try
- {
- const string guidText = "{4E76DB4E-1BB9-4A7B-860C-7940779CF7A0}";
- parent.DeleteSubKey(guidText,false);
-
- }
- catch (Exception ex)
- {
- throw new Exception(
- "An error occurred removing uninstall information from the registry.",
- ex);
- }
- }
- }
-
- private static
- void RemoveShortcut(string path)
- {
- try
- {
- File.Delete(path);
- }
- catch (FileNotFoundException)
- {
- } // we're trying to get rid of it anyway
- catch (Exception ex)
- {
- MessageBox.Show(string.Format("Error attempting to remove shortcut {0}\n\n {1}", path, ex.Message), "Error");
- }
-
- }
-
- private static void RemovePath(string path)
- {
- try
- {
- Directory.Delete(path, true);
- }
- catch (DirectoryNotFoundException)
- {
- }
- catch (Exception ex)
- {
- MessageBox.Show(string.Format("Error attempting to remove progam folder {0}\n\n {1}", path, ex.Message), "Error");
- }
-
- }
-
- private void BtnFinished_OnClick(object sender, RoutedEventArgs e)
- {
- Close();
- }
- }
-}
diff --git a/MediaBrowser.Uninstaller/MediaBrowser.Uninstaller.csproj b/MediaBrowser.Uninstaller/MediaBrowser.Uninstaller.csproj
deleted file mode 100644
index a9db3ee9b0..0000000000
--- a/MediaBrowser.Uninstaller/MediaBrowser.Uninstaller.csproj
+++ /dev/null
@@ -1,110 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {FACAF749-3E28-46DD-B613-654FCD434959}
- WinExe
- Properties
- MediaBrowser.Uninstaller
- MediaBrowser.Uninstaller
- v4.5
- 512
- {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 4
-
-
- AnyCPU
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- AnyCPU
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
-
-
-
-
-
-
-
- 4.0
-
-
-
-
-
-
-
- MSBuild:Compile
- Designer
-
-
- MSBuild:Compile
- Designer
-
-
- App.xaml
- Code
-
-
- MainWindow.xaml
- Code
-
-
-
-
- Code
-
-
- True
- True
- Resources.resx
-
-
- True
- Settings.settings
- True
-
-
- ResXFileCodeGenerator
- Resources.Designer.cs
-
-
- SettingsSingleFileGenerator
- Settings.Designer.cs
-
-
-
-
-
-
-
-
-
- Code\Images\mb3logo800.png
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Uninstaller/Properties/AssemblyInfo.cs b/MediaBrowser.Uninstaller/Properties/AssemblyInfo.cs
deleted file mode 100644
index 613589a7dc..0000000000
--- a/MediaBrowser.Uninstaller/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-using System.Reflection;
-using System.Resources;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-using System.Windows;
-
-// General Information about an assembly is controlled through the following
-// set of attributes. Change these attribute values to modify the information
-// associated with an assembly.
-[assembly: AssemblyTitle("MediaBrowser.Uninstaller")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("Media Browser Team")]
-[assembly: AssemblyProduct("MediaBrowser.Uninstaller")]
-[assembly: AssemblyCopyright("Copyright © Media Browser Team 2013")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-// Setting ComVisible to false makes the types in this assembly not visible
-// to COM components. If you need to access a type in this assembly from
-// COM, set the ComVisible attribute to true on that type.
-[assembly: ComVisible(false)]
-
-//In order to begin building localizable applications, set
-//CultureYouAreCodingWith in your .csproj file
-//inside a . For example, if you are using US english
-//in your source files, set the to en-US. Then uncomment
-//the NeutralResourceLanguage attribute below. Update the "en-US" in
-//the line below to match the UICulture setting in the project file.
-
-//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
-
-
-[assembly: ThemeInfo(
- ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
- // or application resource dictionaries)
- ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
- // app, or any theme specific resource dictionaries)
-)]
-
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/MediaBrowser.Uninstaller/Properties/Resources.Designer.cs b/MediaBrowser.Uninstaller/Properties/Resources.Designer.cs
deleted file mode 100644
index e1a3952e32..0000000000
--- a/MediaBrowser.Uninstaller/Properties/Resources.Designer.cs
+++ /dev/null
@@ -1,63 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.17929
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace MediaBrowser.Uninstaller.Properties {
- using System;
-
-
- ///
- /// A strongly-typed resource class, for looking up localized strings, etc.
- ///
- // This class was auto-generated by the StronglyTypedResourceBuilder
- // class via a tool like ResGen or Visual Studio.
- // To add or remove a member, edit your .ResX file then rerun ResGen
- // with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- internal class Resources {
-
- private static global::System.Resources.ResourceManager resourceMan;
-
- private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources() {
- }
-
- ///
- /// Returns the cached ResourceManager instance used by this class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager {
- get {
- if (object.ReferenceEquals(resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MediaBrowser.Uninstaller.Properties.Resources", typeof(Resources).Assembly);
- resourceMan = temp;
- }
- return resourceMan;
- }
- }
-
- ///
- /// Overrides the current thread's CurrentUICulture property for all
- /// resource lookups using this strongly typed resource class.
- ///
- [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture {
- get {
- return resourceCulture;
- }
- set {
- resourceCulture = value;
- }
- }
- }
-}
diff --git a/MediaBrowser.Uninstaller/Properties/Resources.resx b/MediaBrowser.Uninstaller/Properties/Resources.resx
deleted file mode 100644
index af7dbebbac..0000000000
--- a/MediaBrowser.Uninstaller/Properties/Resources.resx
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
\ No newline at end of file
diff --git a/MediaBrowser.Uninstaller/Properties/Settings.Designer.cs b/MediaBrowser.Uninstaller/Properties/Settings.Designer.cs
deleted file mode 100644
index 2223bc3052..0000000000
--- a/MediaBrowser.Uninstaller/Properties/Settings.Designer.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.17929
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-namespace MediaBrowser.Uninstaller.Properties {
-
-
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
- internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
-
- private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
-
- public static Settings Default {
- get {
- return defaultInstance;
- }
- }
- }
-}
diff --git a/MediaBrowser.Uninstaller/Properties/Settings.settings b/MediaBrowser.Uninstaller/Properties/Settings.settings
deleted file mode 100644
index 033d7a5e9e..0000000000
--- a/MediaBrowser.Uninstaller/Properties/Settings.settings
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/MediaBrowser.sln b/MediaBrowser.sln
index d43ba947a8..f9f5e94365 100644
--- a/MediaBrowser.sln
+++ b/MediaBrowser.sln
@@ -27,14 +27,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget (2)", ".nuget (2)",
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.Installer", "MediaBrowser.Installer\MediaBrowser.Installer.csproj", "{3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}"
-EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.Common.Implementations", "MediaBrowser.Common.Implementations\MediaBrowser.Common.Implementations.csproj", "{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.Server.Implementations", "MediaBrowser.Server.Implementations\MediaBrowser.Server.Implementations.csproj", "{2E781478-814D-4A48-9D80-BFF206441A65}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MediaBrowser.Uninstaller", "MediaBrowser.Uninstaller\MediaBrowser.Uninstaller.csproj", "{FACAF749-3E28-46DD-B613-654FCD434959}"
-EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -145,20 +141,6 @@ Global
{5624B7B5-B5A7-41D8-9F10-CC5611109619}.Release|x64.ActiveCfg = Release|Any CPU
{5624B7B5-B5A7-41D8-9F10-CC5611109619}.Release|x86.ActiveCfg = Release|Any CPU
{5624B7B5-B5A7-41D8-9F10-CC5611109619}.Release|x86.Build.0 = Release|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Debug|x64.ActiveCfg = Debug|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Debug|x86.ActiveCfg = Debug|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|Any CPU.Build.0 = Release|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|Win32.ActiveCfg = Release|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|x64.ActiveCfg = Release|Any CPU
- {3879F78A-D6F6-45E5-B2A8-D8DCF2DABB74}.Release|x86.ActiveCfg = Release|Any CPU
{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C4D2573A-3FD3-441F-81AF-174AC4CD4E1D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
@@ -187,25 +169,8 @@ Global
{2E781478-814D-4A48-9D80-BFF206441A65}.Release|Win32.ActiveCfg = Release|Any CPU
{2E781478-814D-4A48-9D80-BFF206441A65}.Release|x64.ActiveCfg = Release|Any CPU
{2E781478-814D-4A48-9D80-BFF206441A65}.Release|x86.ActiveCfg = Release|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Debug|Win32.ActiveCfg = Debug|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Debug|x64.ActiveCfg = Debug|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Debug|x86.ActiveCfg = Debug|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Release|Any CPU.Build.0 = Release|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Release|Mixed Platforms.Build.0 = Release|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Release|Win32.ActiveCfg = Release|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Release|x64.ActiveCfg = Release|Any CPU
- {FACAF749-3E28-46DD-B613-654FCD434959}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
- GlobalSection(Performance) = preSolution
- HasPerformanceSessions = true
- EndGlobalSection
EndGlobal