private void launchInstaller()
        {
            this.Installed = false;
            var installerWindow = new InstallerWindow();

            installerWindow.Show();
            this.Close();
        }
        private void ReinstallBackEndMenu_Click(object sender, RoutedEventArgs e)
        {
            var result = MessageBox.Show("Warning: If you reinstall the Back End, this will allow you to change the rollout directory, but all users will need to" +
                                         " reinstall from the NEW installer link placed in that new rollout directory. Are you SURE you want to reinstall the back end?",
                                         "Warning!",
                                         MessageBoxButton.YesNo,
                                         MessageBoxImage.Warning,
                                         MessageBoxResult.No);

            if (result == MessageBoxResult.Yes)
            {
                var installer = new InstallerWindow();
                installer.Show();
                this.Close();
            }
        }