Esempio n. 1
0
        public override void InitialActions(string[] args)
        {
            if (!IsAdministrator())
            {
                if (args.Length < 1 || args[0] != "restarted")
                {
                    RestartAsAdmin("Setup restarted");
                }
                else
                {
                    MessageBoxResult result = MessageBox.Show("This installer needs administrator permissions in order to edit your Windows Explorer Menus.\n" +
                                                              "This is essential for the primary functionality. Press OK to try again, or Cancel to install without this essential functionality",
                                                              "Kallithea Klone needs administrator permissions!", MessageBoxButton.OKCancel, MessageBoxImage.Error);

                    switch (result)
                    {
                    case MessageBoxResult.OK:
                        RestartAsAdmin("Setup restarted");
                        break;

                    default:
                        break;
                    }
                }
                return;
            }

            try
            {
                ContextMenuImplementations.RemoveAll();
                ContextMenuImplementations.CreateStandard();
                ContextMenuImplementations.CreateAdvanced();
            }
            catch
            {
                MessageBox.Show("Kallithea Klone was unable to add all of the Windows Explorer context menu items it uses.\n" +
                                "Please re-run the installer.", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
            }
            App.Current.Shutdown();
        }
Esempio n. 2
0
        public override void InitialActions(string[] args)
        {
            if (!IsAdministrator())
            {
                if (args.Length < 1 || args[0] != "restarted")
                {
                    RestartAsAdmin("Uninstall restarted");
                }
                else
                {
                    MessageBoxResult result = MessageBox.Show("This uninstaller need administrator permissions in order to edit your Windows Explorer Menus.\n" +
                                                              "This is essential to remove unused menu items. Press OK to try again or Cancel to leave the items after the uninstall.", "Kallithea Klone needs administrator permissions!", MessageBoxButton.OKCancel, MessageBoxImage.Error);

                    switch (result)
                    {
                    case MessageBoxResult.OK:
                        RestartAsAdmin("Uninstall restarted");
                        break;

                    default:
                        break;
                    }
                }
                return;
            }

            try
            {
                ContextMenuImplementations.RemoveAll();
            }
            catch
            {
                MessageBox.Show("Kallithea Klone was unable to remove all Windows Explorer context menu items.",
                                "Error", MessageBoxButton.OK, MessageBoxImage.Error);
            }

            AccountSettings.Reset();
            AccountSettings.Save();

            try
            {
                string appDataFolder = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Kallithea Klone");
                foreach (string file in Directory.GetFiles(appDataFolder))
                {
                    try
                    {
                        File.Delete(file);
                    }
                    catch
                    {
                        //If app data cannot be removed then it will have to stay
                        //This try/catch is included as well as the outer one to
                        //Allow for as many files to be removed as possible
                    }
                }
                Directory.Delete(appDataFolder);
            }
            catch
            {
                //If app data cannot be removed then it will have to stay
            }
            App.Current.Shutdown();
        }