123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- using Microsoft.Win32;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Windows.Forms;
- namespace Optimizer {
- public sealed partial class StartupRestoreForm : Form {
- string[] _backups;
- public StartupRestoreForm() {
- InitializeComponent();
- CheckForIllegalCrossThreadCalls = false;
- OptionsHelper.ApplyTheme(this);
- // translate UI elements
- if (OptionsHelper.CurrentOptions.LanguageCode != LanguageCode.EN) Translate();
- RefreshBackups();
- }
- private void RefreshBackups() {
- _backups = Directory.GetFiles(CoreHelper.StartupItemsBackupFolder, "*.json");
- Array.Reverse(_backups);
- listRestoreItems.Items.Clear();
- txtNoBackups.Visible = _backups.Length == 0;
- foreach (string x in _backups) {
- listRestoreItems.Items.Add(Path.GetFileNameWithoutExtension(x));
- }
- if (_backups.Any()) listRestoreItems.SelectedIndex = 0;
- }
- private void Translate() {
- this.Text = OptionsHelper.TranslationList["StartupRestoreForm"];
- Dictionary<string, string> translationList = OptionsHelper.TranslationList.ToObject<Dictionary<string, string>>();
- Control element;
- foreach (var x in translationList) {
- if (x.Key == null || x.Key == string.Empty) continue;
- element = this.Controls.Find(x.Key, true).FirstOrDefault();
- if (element == null) continue;
- element.Text = x.Value;
- }
- }
- private void StartupRestoreForm_Load(object sender, EventArgs e) {
- }
- // DeleteStartupBackup
- private void button2_Click(object sender, EventArgs e) {
- if (listRestoreItems.SelectedIndex > -1) {
- if (MessageBox.Show("Do you really want to delete this backup?", "Delete Backup?", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) {
- try {
- File.Delete(_backups[listRestoreItems.SelectedIndex]);
- }
- catch (Exception ex) {
- Logger.LogError("StartupRestoreForm.DeleteStartupBackup", ex.Message, ex.StackTrace);
- }
- RefreshBackups();
- }
- }
- }
- private void ShowPreview() {
- if (listRestoreItems.SelectedIndex > -1) {
- List<BackupStartupItem> backup = JsonConvert.DeserializeObject<List<BackupStartupItem>>(File.ReadAllText(_backups[listRestoreItems.SelectedIndex]));
- StartupPreviewForm f = new StartupPreviewForm(backup);
- f.ShowDialog(this);
- }
- }
- private void button39_Click(object sender, EventArgs e) {
- ShowPreview();
- }
- private void listRestoreItems_MouseDoubleClick(object sender, MouseEventArgs e) {
- ShowPreview();
- }
- // RestoreStartupBackup
- private void button1_Click(object sender, EventArgs e) {
- if (listRestoreItems.SelectedIndex > -1) {
- List<BackupStartupItem> backup = JsonConvert.DeserializeObject<List<BackupStartupItem>>(File.ReadAllText(_backups[listRestoreItems.SelectedIndex]));
- string keyPath = string.Empty;
- RegistryKey hive = null;
- foreach (BackupStartupItem x in backup) {
- if (x.RegistryLocation == StartupItemLocation.HKLM.ToString()) {
- hive = Registry.LocalMachine;
- if (x.StartupType == StartupItemType.Run.ToString()) {
- keyPath = StartupHelper.LocalMachineRun;
- }
- else if (x.StartupType == StartupItemType.RunOnce.ToString()) {
- keyPath = StartupHelper.LocalMachineRunOnce;
- }
- }
- else if (x.RegistryLocation == StartupItemLocation.HKLMWoW.ToString()) {
- hive = Registry.LocalMachine;
- if (x.StartupType == StartupItemType.Run.ToString()) {
- keyPath = StartupHelper.LocalMachineRunWoW;
- }
- else if (x.StartupType == StartupItemType.RunOnce.ToString()) {
- keyPath = StartupHelper.LocalMachineRunOnceWow;
- }
- }
- else if (x.RegistryLocation == StartupItemLocation.HKCU.ToString()) {
- hive = Registry.CurrentUser;
- if (x.StartupType == StartupItemType.Run.ToString()) {
- keyPath = StartupHelper.CurrentUserRun;
- }
- else if (x.StartupType == StartupItemType.RunOnce.ToString()) {
- keyPath = StartupHelper.CurrentUserRunOnce;
- }
- }
- if (hive != null) {
- try {
- RegistryKey key = hive.OpenSubKey(keyPath, true);
- key.SetValue(x.Name, x.FileLocation, RegistryValueKind.String);
- }
- catch (Exception ex) {
- Logger.LogError("StartupRestoreForm.RestoreStartupBackup", ex.Message, ex.StackTrace);
- }
- }
- }
- this.Close();
- }
- }
- }
- }
|