| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | 
							- using MediaBrowser.Common;
 
- using MediaBrowser.Controller.Configuration;
 
- using MediaBrowser.Controller.Library;
 
- using MediaBrowser.Controller.Plugins;
 
- using System.Linq;
 
- namespace MediaBrowser.ServerApplication.EntryPoints
 
- {
 
-     /// <summary>
 
-     /// Class StartupWizard
 
-     /// </summary>
 
-     public class StartupWizard : IServerEntryPoint
 
-     {
 
-         /// <summary>
 
-         /// The _app host
 
-         /// </summary>
 
-         private readonly IApplicationHost _appHost;
 
-         /// <summary>
 
-         /// The _user manager
 
-         /// </summary>
 
-         private readonly IUserManager _userManager;
 
-         private readonly IServerConfigurationManager _configurationManager;
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="StartupWizard" /> class.
 
-         /// </summary>
 
-         /// <param name="appHost">The app host.</param>
 
-         /// <param name="userManager">The user manager.</param>
 
-         public StartupWizard(IApplicationHost appHost, IUserManager userManager, IServerConfigurationManager configurationManager)
 
-         {
 
-             _appHost = appHost;
 
-             _userManager = userManager;
 
-             _configurationManager = configurationManager;
 
-         }
 
-         /// <summary>
 
-         /// Runs this instance.
 
-         /// </summary>
 
-         public void Run()
 
-         {
 
-             if (_appHost.IsFirstRun)
 
-             {
 
-                 LaunchStartupWizard();
 
-             }
 
-         }
 
-         /// <summary>
 
-         /// Launches the startup wizard.
 
-         /// </summary>
 
-         private void LaunchStartupWizard()
 
-         {
 
-             var user = _userManager.Users.FirstOrDefault(u => u.Configuration.IsAdministrator);
 
-             App.OpenDashboardPage("wizardStart.html", user, _configurationManager);
 
-         }
 
-         /// <summary>
 
-         /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
 
-         /// </summary>
 
-         public void Dispose()
 
-         {
 
-         }
 
-     }
 
- }
 
 
  |