diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-03-13 13:42:41 -0400 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-03-13 13:42:41 -0400 |
| commit | 1e0a405ef39cc45654b4882546f22d27630399a3 (patch) | |
| tree | e84a7f310bcf7fb03db9f80308e4338b439b81c6 /MediaBrowser.Installer/MainWindow.xaml.cs | |
| parent | 5f3a6b22350a5da5bbb62a921791dd0c12109762 (diff) | |
More status info in installer
Diffstat (limited to 'MediaBrowser.Installer/MainWindow.xaml.cs')
| -rw-r--r-- | MediaBrowser.Installer/MainWindow.xaml.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Installer/MainWindow.xaml.cs b/MediaBrowser.Installer/MainWindow.xaml.cs index a48ce85d1..2a905293c 100644 --- a/MediaBrowser.Installer/MainWindow.xaml.cs +++ b/MediaBrowser.Installer/MainWindow.xaml.cs @@ -240,6 +240,7 @@ namespace MediaBrowser.Installer } // Create shortcut + lblStatus.Text = "Creating Shortcuts..."; var fullPath = Path.Combine(RootPath, "System", TargetExe); try { @@ -254,6 +255,7 @@ namespace MediaBrowser.Installer // Install Pismo if (InstallPismo) { + lblStatus.Text = "Installing ISO Support..."; try { PismoInstall(); @@ -269,6 +271,7 @@ namespace MediaBrowser.Installer Directory.Delete(Path.Combine(RootPath, "Pismo"), true); // And run + lblStatus.Text = string.Format("Starting {0}...", FriendlyName); try { Process.Start(fullPath); |
