├── .gitattributes ├── .gitignore ├── README.md └── src ├── App.config ├── App.xaml ├── App.xaml.cs ├── Core ├── Memory │ ├── MemoryData.cs │ ├── MemoryModel.cs │ ├── MemoryStrings.cs │ ├── MemoryViewModel.cs │ └── RegulationDataConsts.cs ├── Services │ ├── IntToServicesOptionConverter.cs │ ├── Service.cs │ ├── ServiceReqs.cs │ ├── ServiceWinCondition.cs │ ├── ServicesModel.cs │ ├── ServicesOption.cs │ ├── ServicesPreset.cs │ └── ServicesViewModel.cs ├── Settings │ ├── Setting.cs │ ├── SettingsPreset.cs │ └── SettingsViewModel.cs └── Tweaks │ ├── IntToTweaksOptionConverter.cs │ ├── Tweak.cs │ ├── TweaksModel.cs │ ├── TweaksOption.cs │ ├── TweaksPreset.cs │ └── TweaksViewModel.cs ├── Dialogs ├── DialogConsts.cs ├── IDialog.cs ├── ViewModels │ ├── DialogWindowViewModel.cs │ ├── DisclaimerWindowViewModel.cs │ ├── DownloadWindowViewModel.cs │ ├── ExpertModeDisclaimerWindowViewModel.cs │ ├── MessageWindowViewModel.cs │ ├── MethodsWindowViewModel.cs │ ├── ProgressWindowViewModel.cs │ └── SavePresetWindowViewModel.cs └── Views │ ├── DialogWindow.xaml │ ├── DialogWindow.xaml.cs │ ├── DisclaimerWindow.xaml │ ├── DisclaimerWindow.xaml.cs │ ├── DownloadWindow.xaml │ ├── DownloadWindow.xaml.cs │ ├── ExpertModeDisclaimerWindow.xaml │ ├── ExpertModeDisclaimerWindow.xaml.cs │ ├── MessageWindow.xaml │ ├── MessageWindow.xaml.cs │ ├── MethodsWindow.xaml │ ├── MethodsWindow.xaml.cs │ ├── ProgressWindow.xaml │ ├── ProgressWindow.xaml.cs │ ├── SavePresetWindow.xaml │ └── SavePresetWindow.xaml.cs ├── FodyWeavers.xml ├── Models ├── BoolToVisibilityConverter.cs ├── CollectionSearch.cs ├── ContextMenuLeftClickBehavior.cs ├── DataGridBasedModel.cs ├── DialogHelper.cs ├── DragProperty.cs ├── Helpers.cs ├── IPreset.cs ├── ISelectable.cs ├── MainModel.cs ├── MenuItems.cs ├── PresetController.cs ├── RelayCommand.cs ├── RelayCommandSender.cs ├── RestrictedTextBox.cs ├── RunAsProcess.cs ├── SetFTA.cs ├── StringConsts.cs ├── StringSearch.cs ├── VirtualToggleButton.cs └── WindowBlur.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── Fonts │ └── Segoe-UI-Variable-Static-Display.ttf ├── GPU │ ├── nvidiaConfigured.pr │ └── nvidiaDefault.pr ├── Icons │ ├── BlankIco │ ├── WinCry.ico │ ├── icon_about.png │ ├── icon_app.png │ ├── icon_apply.png │ ├── icon_donate.png │ ├── icon_exit.png │ ├── icon_github.png │ ├── icon_other.png │ ├── icon_othertweaks.png │ ├── icon_pcslc - Copy.png │ ├── icon_pcslc.png │ ├── icon_refresh.png │ ├── icon_rmb.png │ ├── icon_services.png │ ├── icon_settings.png │ ├── icon_tweaks.png │ ├── icon_vk.png │ ├── icon_youtube.png │ └── tpd_signature.png ├── Memory │ ├── PСSLC.Core.dll │ └── PСSLC_Service.exe ├── Services │ ├── HWIDDependingServices.xml │ ├── KMS38DependingServices.xml │ ├── MSStoreDependingServices.xml │ ├── ServicesRestore.zip │ ├── TrustedInstaller.reg │ └── Winmgmt.reg ├── Settings │ └── SettingsBasic.json ├── Styles │ ├── Border.xaml │ ├── Button.xaml │ ├── CheckBox.xaml │ ├── ComboBox.xaml │ ├── ContextMenu.xaml │ ├── DataGrid.xaml │ ├── Labels.xaml │ ├── ListBox.xaml │ ├── ScrollBar.xaml │ ├── TabControl.xaml │ ├── TextBox.xaml │ ├── ToolTip.xaml │ └── TreeView.xaml └── Tweaks │ ├── Activation.zip │ ├── DecreaseBootSpeed.bat │ ├── IncreaseBootSpeed.bat │ ├── PCDuke_Scheme.pow │ ├── SetTimerResolutionService.exe │ ├── TempCleaner.exe │ └── vcredist2010_x86.exe ├── ViewModels ├── BaseViewModel.cs ├── MainWindowViewModel.cs ├── TaskViewModel.cs ├── TreeBranchViewModel.cs └── TreeBranchViewModelExtension.cs ├── Views ├── MainWindow.xaml └── MainWindow.xaml.cs ├── WinCry.csproj ├── WinCry.sln ├── app.manifest └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/README.md -------------------------------------------------------------------------------- /src/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/App.config -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/App.xaml -------------------------------------------------------------------------------- /src/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/App.xaml.cs -------------------------------------------------------------------------------- /src/Core/Memory/MemoryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Memory/MemoryData.cs -------------------------------------------------------------------------------- /src/Core/Memory/MemoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Memory/MemoryModel.cs -------------------------------------------------------------------------------- /src/Core/Memory/MemoryStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Memory/MemoryStrings.cs -------------------------------------------------------------------------------- /src/Core/Memory/MemoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Memory/MemoryViewModel.cs -------------------------------------------------------------------------------- /src/Core/Memory/RegulationDataConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Memory/RegulationDataConsts.cs -------------------------------------------------------------------------------- /src/Core/Services/IntToServicesOptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/IntToServicesOptionConverter.cs -------------------------------------------------------------------------------- /src/Core/Services/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/Service.cs -------------------------------------------------------------------------------- /src/Core/Services/ServiceReqs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/ServiceReqs.cs -------------------------------------------------------------------------------- /src/Core/Services/ServiceWinCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/ServiceWinCondition.cs -------------------------------------------------------------------------------- /src/Core/Services/ServicesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/ServicesModel.cs -------------------------------------------------------------------------------- /src/Core/Services/ServicesOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/ServicesOption.cs -------------------------------------------------------------------------------- /src/Core/Services/ServicesPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/ServicesPreset.cs -------------------------------------------------------------------------------- /src/Core/Services/ServicesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Services/ServicesViewModel.cs -------------------------------------------------------------------------------- /src/Core/Settings/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Settings/Setting.cs -------------------------------------------------------------------------------- /src/Core/Settings/SettingsPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Settings/SettingsPreset.cs -------------------------------------------------------------------------------- /src/Core/Settings/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Settings/SettingsViewModel.cs -------------------------------------------------------------------------------- /src/Core/Tweaks/IntToTweaksOptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Tweaks/IntToTweaksOptionConverter.cs -------------------------------------------------------------------------------- /src/Core/Tweaks/Tweak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Tweaks/Tweak.cs -------------------------------------------------------------------------------- /src/Core/Tweaks/TweaksModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Tweaks/TweaksModel.cs -------------------------------------------------------------------------------- /src/Core/Tweaks/TweaksOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Tweaks/TweaksOption.cs -------------------------------------------------------------------------------- /src/Core/Tweaks/TweaksPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Tweaks/TweaksPreset.cs -------------------------------------------------------------------------------- /src/Core/Tweaks/TweaksViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Core/Tweaks/TweaksViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/DialogConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/DialogConsts.cs -------------------------------------------------------------------------------- /src/Dialogs/IDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/IDialog.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/DialogWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/DialogWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/DisclaimerWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/DisclaimerWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/DownloadWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/DownloadWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/ExpertModeDisclaimerWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/ExpertModeDisclaimerWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/MessageWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/MessageWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/MethodsWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/MethodsWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/ProgressWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/ProgressWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/ViewModels/SavePresetWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/ViewModels/SavePresetWindowViewModel.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/DialogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/DialogWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/DialogWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/DialogWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/DisclaimerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/DisclaimerWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/DisclaimerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/DisclaimerWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/DownloadWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/DownloadWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/DownloadWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/DownloadWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/ExpertModeDisclaimerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/ExpertModeDisclaimerWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/ExpertModeDisclaimerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/ExpertModeDisclaimerWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/MessageWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/MessageWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/MessageWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/MessageWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/MethodsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/MethodsWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/MethodsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/MethodsWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/ProgressWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/ProgressWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/ProgressWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/ProgressWindow.xaml.cs -------------------------------------------------------------------------------- /src/Dialogs/Views/SavePresetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/SavePresetWindow.xaml -------------------------------------------------------------------------------- /src/Dialogs/Views/SavePresetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Dialogs/Views/SavePresetWindow.xaml.cs -------------------------------------------------------------------------------- /src/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Models/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Models/CollectionSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/CollectionSearch.cs -------------------------------------------------------------------------------- /src/Models/ContextMenuLeftClickBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/ContextMenuLeftClickBehavior.cs -------------------------------------------------------------------------------- /src/Models/DataGridBasedModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/DataGridBasedModel.cs -------------------------------------------------------------------------------- /src/Models/DialogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/DialogHelper.cs -------------------------------------------------------------------------------- /src/Models/DragProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/DragProperty.cs -------------------------------------------------------------------------------- /src/Models/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/Helpers.cs -------------------------------------------------------------------------------- /src/Models/IPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/IPreset.cs -------------------------------------------------------------------------------- /src/Models/ISelectable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/ISelectable.cs -------------------------------------------------------------------------------- /src/Models/MainModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/MainModel.cs -------------------------------------------------------------------------------- /src/Models/MenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/MenuItems.cs -------------------------------------------------------------------------------- /src/Models/PresetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/PresetController.cs -------------------------------------------------------------------------------- /src/Models/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/RelayCommand.cs -------------------------------------------------------------------------------- /src/Models/RelayCommandSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/RelayCommandSender.cs -------------------------------------------------------------------------------- /src/Models/RestrictedTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/RestrictedTextBox.cs -------------------------------------------------------------------------------- /src/Models/RunAsProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/RunAsProcess.cs -------------------------------------------------------------------------------- /src/Models/SetFTA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/SetFTA.cs -------------------------------------------------------------------------------- /src/Models/StringConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/StringConsts.cs -------------------------------------------------------------------------------- /src/Models/StringSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/StringSearch.cs -------------------------------------------------------------------------------- /src/Models/VirtualToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/VirtualToggleButton.cs -------------------------------------------------------------------------------- /src/Models/WindowBlur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Models/WindowBlur.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Resources/Fonts/Segoe-UI-Variable-Static-Display.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Fonts/Segoe-UI-Variable-Static-Display.ttf -------------------------------------------------------------------------------- /src/Resources/GPU/nvidiaConfigured.pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/GPU/nvidiaConfigured.pr -------------------------------------------------------------------------------- /src/Resources/GPU/nvidiaDefault.pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/GPU/nvidiaDefault.pr -------------------------------------------------------------------------------- /src/Resources/Icons/BlankIco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/BlankIco -------------------------------------------------------------------------------- /src/Resources/Icons/WinCry.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/WinCry.ico -------------------------------------------------------------------------------- /src/Resources/Icons/icon_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_about.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_app.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_apply.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_donate.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_exit.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_github.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_other.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_othertweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_othertweaks.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_pcslc - Copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_pcslc - Copy.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_pcslc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_pcslc.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_refresh.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_rmb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_rmb.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_services.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_settings.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_tweaks.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_vk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_vk.png -------------------------------------------------------------------------------- /src/Resources/Icons/icon_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/icon_youtube.png -------------------------------------------------------------------------------- /src/Resources/Icons/tpd_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Icons/tpd_signature.png -------------------------------------------------------------------------------- /src/Resources/Memory/PСSLC.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Memory/PСSLC.Core.dll -------------------------------------------------------------------------------- /src/Resources/Memory/PСSLC_Service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Memory/PСSLC_Service.exe -------------------------------------------------------------------------------- /src/Resources/Services/HWIDDependingServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Services/HWIDDependingServices.xml -------------------------------------------------------------------------------- /src/Resources/Services/KMS38DependingServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Services/KMS38DependingServices.xml -------------------------------------------------------------------------------- /src/Resources/Services/MSStoreDependingServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Services/MSStoreDependingServices.xml -------------------------------------------------------------------------------- /src/Resources/Services/ServicesRestore.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Services/ServicesRestore.zip -------------------------------------------------------------------------------- /src/Resources/Services/TrustedInstaller.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Services/TrustedInstaller.reg -------------------------------------------------------------------------------- /src/Resources/Services/Winmgmt.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Services/Winmgmt.reg -------------------------------------------------------------------------------- /src/Resources/Settings/SettingsBasic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Settings/SettingsBasic.json -------------------------------------------------------------------------------- /src/Resources/Styles/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/Border.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/Button.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/CheckBox.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/ComboBox.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/ContextMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/ContextMenu.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/DataGrid.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/Labels.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/Labels.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/ListBox.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/ScrollBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/ScrollBar.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/TabControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/TabControl.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/TextBox.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/ToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/ToolTip.xaml -------------------------------------------------------------------------------- /src/Resources/Styles/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Styles/TreeView.xaml -------------------------------------------------------------------------------- /src/Resources/Tweaks/Activation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Tweaks/Activation.zip -------------------------------------------------------------------------------- /src/Resources/Tweaks/DecreaseBootSpeed.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Tweaks/DecreaseBootSpeed.bat -------------------------------------------------------------------------------- /src/Resources/Tweaks/IncreaseBootSpeed.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Tweaks/IncreaseBootSpeed.bat -------------------------------------------------------------------------------- /src/Resources/Tweaks/PCDuke_Scheme.pow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Tweaks/PCDuke_Scheme.pow -------------------------------------------------------------------------------- /src/Resources/Tweaks/SetTimerResolutionService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Tweaks/SetTimerResolutionService.exe -------------------------------------------------------------------------------- /src/Resources/Tweaks/TempCleaner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Tweaks/TempCleaner.exe -------------------------------------------------------------------------------- /src/Resources/Tweaks/vcredist2010_x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Resources/Tweaks/vcredist2010_x86.exe -------------------------------------------------------------------------------- /src/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/TaskViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/ViewModels/TaskViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/TreeBranchViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/ViewModels/TreeBranchViewModel.cs -------------------------------------------------------------------------------- /src/ViewModels/TreeBranchViewModelExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/ViewModels/TreeBranchViewModelExtension.cs -------------------------------------------------------------------------------- /src/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Views/MainWindow.xaml -------------------------------------------------------------------------------- /src/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/WinCry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/WinCry.csproj -------------------------------------------------------------------------------- /src/WinCry.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/WinCry.sln -------------------------------------------------------------------------------- /src/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/app.manifest -------------------------------------------------------------------------------- /src/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThePCDuke/WinCry/HEAD/src/packages.config --------------------------------------------------------------------------------