├── .editorconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── script-request.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.fr.md ├── README.md ├── Tests ├── ExtensionsTests.cs ├── ScriptXmlSerializerTests.cs ├── TestScripts │ ├── Invalid │ │ ├── Empty.xml │ │ ├── Garbage.xml │ │ ├── Incomplete.xml │ │ ├── InvalidData1.xml │ │ └── InvalidData2.xml │ └── Valid │ │ ├── CreateOrDeleteFile.xml │ │ ├── Hello World.xml │ │ ├── Launch Notepad.xml │ │ ├── Noise.xml │ │ ├── Wait 1 second.xml │ │ ├── Wait 2 seconds.xml │ │ ├── Wait 3 seconds.xml │ │ ├── Wait 4 seconds.xml │ │ ├── Wait 5 seconds.xml │ │ ├── WhitespaceMadness.xml │ │ └── Write Unicode.xml └── Tests.csproj ├── WinClean.sln └── WinClean ├── App.config ├── Categories.xml ├── Extensions.cs ├── Hosts.xml ├── Impacts.xml ├── Model ├── AppDirectory.cs ├── Cached.cs ├── DispatcherSynchronizeInvoke.cs ├── DisposableEnumerable.cs ├── ErrorCallbacks.cs ├── ExecutionInfo.cs ├── ExecutionResult.cs ├── FileSystemException.cs ├── HostStartInfo.cs ├── HostTempFileStartInfo.cs ├── LocalizedString.cs ├── Metadatas │ ├── Capability.cs │ ├── Category.cs │ ├── FSVerb.cs │ ├── Host.cs │ ├── ITextProvider.cs │ ├── Impact.cs │ ├── LocalizedStringTextProvider.cs │ ├── Metadata.cs │ ├── OrderedMetadata.cs │ ├── ProgramHost.cs │ ├── ResourceTextProvider.cs │ ├── SafetyLevel.cs │ ├── ScriptExecutionState.cs │ ├── ScriptType.cs │ ├── ShellHost.cs │ └── Usage.cs ├── Multiton.cs ├── ScriptAction.cs ├── Scripts │ ├── EmbeddedScriptRepository.cs │ ├── FileScriptRepository.cs │ ├── MutableScriptRepository.cs │ ├── Script.cs │ ├── ScriptAlreadyExistsException.cs │ └── ScriptRepository.cs ├── Serialization │ ├── DeserializationChainException.cs │ ├── DeserializationException.cs │ ├── IScriptMetadataDeserializer.cs │ ├── IScriptSerializer.cs │ ├── ScriptBuilder.cs │ └── Xml │ │ ├── ScriptMetadataXmlDeserializer.cs │ │ └── ScriptXmlSerializer.cs ├── SourceControlClient.cs ├── TempFile.cs └── TypedEnumerableDictionary.cs ├── Properties ├── AssemblyInfo.cs ├── InstallerScript.iss ├── PersistentSettings.Designer.cs ├── PersistentSettings.settings ├── PublishProfiles │ ├── portable-win-x64.pubxml │ ├── portable-win-x86.pubxml │ ├── win-x64.pubxml │ └── win-x86.pubxml ├── Settings.Designer.cs ├── Settings.settings ├── deploy.ps1 └── launchSettings.json ├── Resources ├── Capabilities.Designer.cs ├── Capabilities.fr.resx ├── Capabilities.resx ├── ConsoleMode.Designer.cs ├── ConsoleMode.resx ├── ExceptionMessages.Designer.cs ├── ExceptionMessages.resx ├── ExecutionResult.Designer.cs ├── ExecutionResult.fr.resx ├── ExecutionResult.resx ├── FSVerbs.Designer.cs ├── FSVerbs.fr.resx ├── FSVerbs.resx ├── Images │ ├── Checkmark.ico │ ├── Cross.ico │ ├── Gear.png │ ├── Pause.png │ ├── Play.png │ ├── Skipped.png │ └── WinClean.png ├── LogLevels.Designer.cs ├── LogLevels.fr.resx ├── LogLevels.resx ├── Logs.Designer.cs ├── Logs.resx ├── NameFor.Designer.cs ├── NameFor.resx ├── ScriptExecutionStates.Designer.cs ├── ScriptExecutionStates.fr.resx ├── ScriptExecutionStates.resx ├── ScriptProperties.Designer.cs ├── ScriptProperties.fr.resx ├── ScriptProperties.resx ├── ScriptTypes.Designer.cs ├── ScriptTypes.fr.resx ├── ScriptTypes.resx ├── TimeRemaining.Designer.cs ├── TimeRemaining.fr.resx ├── TimeRemaining.resx ├── UI │ ├── AboutWindow.Designer.cs │ ├── AboutWindow.fr.resx │ ├── AboutWindow.resx │ ├── Buttons.Designer.cs │ ├── Buttons.fr.resx │ ├── Buttons.resx │ ├── Dialogs.Designer.cs │ ├── Dialogs.fr.resx │ ├── Dialogs.resx │ ├── ExecutionInfoView.Designer.cs │ ├── ExecutionInfoView.fr.resx │ ├── ExecutionInfoView.resx │ ├── MainWindow.Designer.cs │ ├── MainWindow.fr.resx │ ├── MainWindow.resx │ ├── Page1.Designer.cs │ ├── Page1.fr.resx │ ├── Page1.resx │ ├── Page2.Designer.cs │ ├── Page2.fr.resx │ ├── Page2.resx │ ├── Page3.Designer.cs │ ├── Page3.fr.resx │ ├── Page3.resx │ ├── ScriptActionDictionaryView.Designer.cs │ ├── ScriptActionDictionaryView.fr.resx │ ├── ScriptActionDictionaryView.resx │ ├── ScriptExecutionWizard.Designer.cs │ ├── ScriptExecutionWizard.fr.resx │ ├── ScriptExecutionWizard.resx │ ├── ScriptView.Designer.cs │ ├── ScriptView.fr.resx │ ├── ScriptView.resx │ ├── SettingsWindow.Designer.cs │ ├── SettingsWindow.fr.resx │ ├── SettingsWindow.resx │ ├── Update.Designer.cs │ ├── Update.fr.resx │ └── Update.resx ├── Usages.Designer.cs ├── Usages.fr.resx └── Usages.resx ├── SafetyLevels.xml ├── Scripts ├── Clear File Explorer history.xml ├── Clear event logs.xml ├── Delete all system restore points, except the most recent.xml ├── Delete junk files.xml ├── Disable Cortana.xml ├── Disable Explorer online help.xml ├── Disable Recent search history.xml ├── Disable Start menu web search.xml ├── Disable Timeline.xml ├── Disable UAC prompt desktop dimming.xml ├── Disable delivery optimization.xml ├── Disable hibernation.xml ├── Disable systematic short filename creation.xml ├── Disable telemetry and data collection.xml ├── Don't block downloaded files.xml ├── Enable Verbose status messages.xml ├── Hide ads and suggestions.xml ├── Keep thumbnail cache after reboot.xml ├── Optimize drives.xml ├── Remove Internet Explorer 11.xml ├── Remove Microsoft Edge.xml ├── Remove One Drive.xml ├── Remove PowerShell ISE.xml ├── Remove WordPad.xml ├── Remove scheduled tasks.xml ├── Remove shortcut sufffix.xml ├── Remove the Microsoft Windows Malware Removal Tool.xml ├── Remove useless apps.xml ├── Repair system using Dism's cleanup image.xml ├── Restore Classic Windows Photo Viewer.xml ├── Run Component Store cleanup.xml ├── Run Disk Cleanup tool.xml ├── Run Service Pack cleanup.xml ├── Run advanced disk cleanup.xml ├── Run the System File Checker tool.xml ├── Schedule Check Disk utility.xml ├── Show checkboxes near files and folders.xml ├── Show file extensions.xml ├── Show full path in Explorer title bar.xml ├── Show seconds in taskbar clock.xml └── Stop apps from running in the background.xml ├── Services ├── ApplicationInfo.cs ├── DialogCreator.cs ├── ExtensionGroup.cs ├── FilterBuilder.cs ├── IApplicationInfo.cs ├── IDialogCreator.cs ├── IFilterBuilder.cs ├── IMessageFormatter.cs ├── IMetadatasProvider.cs ├── IOperatingSystem.cs ├── IScriptStorage.cs ├── ISettings.cs ├── IThemeProvider.cs ├── IViewFactory.cs ├── MessageFormatter.cs ├── MetadatasProvider.cs ├── OperatingSystem.cs ├── ScriptStorage.cs ├── ServiceProvider.cs ├── Settings.cs ├── ThemeProvider.cs └── ViewFactory.cs ├── TypeEventHandler.cs ├── View ├── App.ConsoleCallbacks.cs ├── App.UICallbacks.cs ├── App.xaml ├── App.xaml.cs ├── Behaviors │ ├── ConfirmWindowClosing.cs │ └── DataGridLastColumnFill.cs ├── ButtonsArea.cs ├── CommandLineOptions.cs ├── Controls │ ├── ExecutionInfoListView.xaml │ ├── ExecutionInfoListView.xaml.cs │ ├── ExecutionInfoView.xaml │ ├── ExecutionInfoView.xaml.cs │ ├── ScriptActionDictionaryView.xaml │ ├── ScriptActionDictionaryView.xaml.cs │ ├── ScriptListView.xaml │ ├── ScriptListView.xaml.cs │ ├── ScriptSelectionView.xaml │ ├── ScriptSelectionView.xaml.cs │ ├── ScriptView.xaml │ ├── ScriptView.xaml.cs │ └── WizardPageBetter.cs ├── Converters │ ├── BooleanInvertConverter.cs │ ├── ColorToBrushConverter.cs │ ├── CurrentVersionSatisfiesRangeConverter.cs │ ├── DictionaryLookupConverter.cs │ ├── EqualsOrDoNothingConverter.cs │ ├── GetMetadatasConverter.cs │ ├── GoldenRatioConverter.cs │ ├── IntEnumerableToStringConverter.cs │ ├── IsNotNullConverter.cs │ ├── ItemsEqualConverter.cs │ └── SemVersionRangeConverter.cs ├── Pages │ ├── Page1.xaml │ ├── Page1.xaml.cs │ ├── Page2.xaml │ ├── Page2.xaml.cs │ ├── Page3.xaml │ └── Page3.xaml.cs ├── ResourceDictionaries │ ├── ControlTemplates.xaml │ └── Fixes.xaml ├── StandardIcons.cs ├── TabContent.cs ├── Validation │ └── SemVersionRangeValidationRule.cs └── Windows │ ├── AboutWindow.xaml │ ├── AboutWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ScriptExecutionWizard.xaml │ ├── ScriptExecutionWizard.xaml.cs │ ├── SettingsWindow.xaml │ └── SettingsWindow.xaml.cs ├── ViewModel ├── CollectionWrapper.cs ├── DialogFactory.cs ├── ExecutionInfoViewModel.cs ├── ExecutionProgressViewModel.cs ├── ExecutionResultViewModel.cs ├── Logging │ ├── LogLevel.cs │ ├── Logger.cs │ ├── Logging.ConsoleLogger.cs │ ├── Logging.CsvLogger.cs │ ├── Logging.MockLogger.cs │ └── Logging.cs ├── ObservableSet.cs ├── Pages │ ├── Page1ViewModel.cs │ ├── Page2ViewModel.cs │ ├── Page3ViewModel.cs │ └── WizardPageViewModel.cs ├── ScriptActionViewModel.cs ├── ScriptSelection.cs ├── ScriptViewModel.cs └── Windows │ ├── AboutViewModel.cs │ ├── MainViewModel.cs │ ├── ScriptExecutionWizardViewModel.cs │ └── SettingsViewModel.cs ├── WinClean.csproj ├── WinClean.ico └── app.manifest /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/script-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/.github/ISSUE_TEMPLATE/script-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/LICENSE -------------------------------------------------------------------------------- /README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/README.fr.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/README.md -------------------------------------------------------------------------------- /Tests/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/ExtensionsTests.cs -------------------------------------------------------------------------------- /Tests/ScriptXmlSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/ScriptXmlSerializerTests.cs -------------------------------------------------------------------------------- /Tests/TestScripts/Invalid/Empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/TestScripts/Invalid/Garbage.xml: -------------------------------------------------------------------------------- 1 | dfs;m*es%o,gjvlz d!:cxm¤,gl mbefd!v:r 2 | "tgerrgmùf*D 3 | mfc^ùgzrgm:g:ùf 4 | mf:lzùê*:f 5 | f;:lù*:sd§ 6 | elf*:DS -------------------------------------------------------------------------------- /Tests/TestScripts/Invalid/Incomplete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Invalid/Incomplete.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Invalid/InvalidData1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Invalid/InvalidData1.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Invalid/InvalidData2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Invalid/InvalidData2.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/CreateOrDeleteFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/CreateOrDeleteFile.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Hello World.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Hello World.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Launch Notepad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Launch Notepad.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Noise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Noise.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Wait 1 second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Wait 1 second.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Wait 2 seconds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Wait 2 seconds.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Wait 3 seconds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Wait 3 seconds.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Wait 4 seconds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Wait 4 seconds.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Wait 5 seconds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Wait 5 seconds.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/WhitespaceMadness.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/WhitespaceMadness.xml -------------------------------------------------------------------------------- /Tests/TestScripts/Valid/Write Unicode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/TestScripts/Valid/Write Unicode.xml -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /WinClean.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean.sln -------------------------------------------------------------------------------- /WinClean/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/App.config -------------------------------------------------------------------------------- /WinClean/Categories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Categories.xml -------------------------------------------------------------------------------- /WinClean/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Extensions.cs -------------------------------------------------------------------------------- /WinClean/Hosts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Hosts.xml -------------------------------------------------------------------------------- /WinClean/Impacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Impacts.xml -------------------------------------------------------------------------------- /WinClean/Model/AppDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/AppDirectory.cs -------------------------------------------------------------------------------- /WinClean/Model/Cached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Cached.cs -------------------------------------------------------------------------------- /WinClean/Model/DispatcherSynchronizeInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/DispatcherSynchronizeInvoke.cs -------------------------------------------------------------------------------- /WinClean/Model/DisposableEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/DisposableEnumerable.cs -------------------------------------------------------------------------------- /WinClean/Model/ErrorCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/ErrorCallbacks.cs -------------------------------------------------------------------------------- /WinClean/Model/ExecutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/ExecutionInfo.cs -------------------------------------------------------------------------------- /WinClean/Model/ExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/ExecutionResult.cs -------------------------------------------------------------------------------- /WinClean/Model/FileSystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/FileSystemException.cs -------------------------------------------------------------------------------- /WinClean/Model/HostStartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/HostStartInfo.cs -------------------------------------------------------------------------------- /WinClean/Model/HostTempFileStartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/HostTempFileStartInfo.cs -------------------------------------------------------------------------------- /WinClean/Model/LocalizedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/LocalizedString.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/Capability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/Capability.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/Category.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/FSVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/FSVerb.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/Host.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/ITextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/ITextProvider.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/Impact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/Impact.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/LocalizedStringTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/LocalizedStringTextProvider.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/Metadata.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/OrderedMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/OrderedMetadata.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/ProgramHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/ProgramHost.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/ResourceTextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/ResourceTextProvider.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/SafetyLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/SafetyLevel.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/ScriptExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/ScriptExecutionState.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/ScriptType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/ScriptType.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/ShellHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/ShellHost.cs -------------------------------------------------------------------------------- /WinClean/Model/Metadatas/Usage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Metadatas/Usage.cs -------------------------------------------------------------------------------- /WinClean/Model/Multiton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Multiton.cs -------------------------------------------------------------------------------- /WinClean/Model/ScriptAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/ScriptAction.cs -------------------------------------------------------------------------------- /WinClean/Model/Scripts/EmbeddedScriptRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Scripts/EmbeddedScriptRepository.cs -------------------------------------------------------------------------------- /WinClean/Model/Scripts/FileScriptRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Scripts/FileScriptRepository.cs -------------------------------------------------------------------------------- /WinClean/Model/Scripts/MutableScriptRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Scripts/MutableScriptRepository.cs -------------------------------------------------------------------------------- /WinClean/Model/Scripts/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Scripts/Script.cs -------------------------------------------------------------------------------- /WinClean/Model/Scripts/ScriptAlreadyExistsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Scripts/ScriptAlreadyExistsException.cs -------------------------------------------------------------------------------- /WinClean/Model/Scripts/ScriptRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Scripts/ScriptRepository.cs -------------------------------------------------------------------------------- /WinClean/Model/Serialization/DeserializationChainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Serialization/DeserializationChainException.cs -------------------------------------------------------------------------------- /WinClean/Model/Serialization/DeserializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Serialization/DeserializationException.cs -------------------------------------------------------------------------------- /WinClean/Model/Serialization/IScriptMetadataDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Serialization/IScriptMetadataDeserializer.cs -------------------------------------------------------------------------------- /WinClean/Model/Serialization/IScriptSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Serialization/IScriptSerializer.cs -------------------------------------------------------------------------------- /WinClean/Model/Serialization/ScriptBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Serialization/ScriptBuilder.cs -------------------------------------------------------------------------------- /WinClean/Model/Serialization/Xml/ScriptMetadataXmlDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Serialization/Xml/ScriptMetadataXmlDeserializer.cs -------------------------------------------------------------------------------- /WinClean/Model/Serialization/Xml/ScriptXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/Serialization/Xml/ScriptXmlSerializer.cs -------------------------------------------------------------------------------- /WinClean/Model/SourceControlClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/SourceControlClient.cs -------------------------------------------------------------------------------- /WinClean/Model/TempFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/TempFile.cs -------------------------------------------------------------------------------- /WinClean/Model/TypedEnumerableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Model/TypedEnumerableDictionary.cs -------------------------------------------------------------------------------- /WinClean/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinClean/Properties/InstallerScript.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/InstallerScript.iss -------------------------------------------------------------------------------- /WinClean/Properties/PersistentSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/PersistentSettings.Designer.cs -------------------------------------------------------------------------------- /WinClean/Properties/PersistentSettings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/PersistentSettings.settings -------------------------------------------------------------------------------- /WinClean/Properties/PublishProfiles/portable-win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/PublishProfiles/portable-win-x64.pubxml -------------------------------------------------------------------------------- /WinClean/Properties/PublishProfiles/portable-win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/PublishProfiles/portable-win-x86.pubxml -------------------------------------------------------------------------------- /WinClean/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /WinClean/Properties/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /WinClean/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WinClean/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/Settings.settings -------------------------------------------------------------------------------- /WinClean/Properties/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/deploy.ps1 -------------------------------------------------------------------------------- /WinClean/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Properties/launchSettings.json -------------------------------------------------------------------------------- /WinClean/Resources/Capabilities.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Capabilities.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/Capabilities.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Capabilities.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/Capabilities.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Capabilities.resx -------------------------------------------------------------------------------- /WinClean/Resources/ConsoleMode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ConsoleMode.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/ConsoleMode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ConsoleMode.resx -------------------------------------------------------------------------------- /WinClean/Resources/ExceptionMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ExceptionMessages.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/ExceptionMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ExceptionMessages.resx -------------------------------------------------------------------------------- /WinClean/Resources/ExecutionResult.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ExecutionResult.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/ExecutionResult.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ExecutionResult.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/ExecutionResult.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ExecutionResult.resx -------------------------------------------------------------------------------- /WinClean/Resources/FSVerbs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/FSVerbs.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/FSVerbs.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/FSVerbs.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/FSVerbs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/FSVerbs.resx -------------------------------------------------------------------------------- /WinClean/Resources/Images/Checkmark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Images/Checkmark.ico -------------------------------------------------------------------------------- /WinClean/Resources/Images/Cross.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Images/Cross.ico -------------------------------------------------------------------------------- /WinClean/Resources/Images/Gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Images/Gear.png -------------------------------------------------------------------------------- /WinClean/Resources/Images/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Images/Pause.png -------------------------------------------------------------------------------- /WinClean/Resources/Images/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Images/Play.png -------------------------------------------------------------------------------- /WinClean/Resources/Images/Skipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Images/Skipped.png -------------------------------------------------------------------------------- /WinClean/Resources/Images/WinClean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Images/WinClean.png -------------------------------------------------------------------------------- /WinClean/Resources/LogLevels.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/LogLevels.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/LogLevels.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/LogLevels.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/LogLevels.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/LogLevels.resx -------------------------------------------------------------------------------- /WinClean/Resources/Logs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Logs.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/Logs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Logs.resx -------------------------------------------------------------------------------- /WinClean/Resources/NameFor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/NameFor.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/NameFor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/NameFor.resx -------------------------------------------------------------------------------- /WinClean/Resources/ScriptExecutionStates.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptExecutionStates.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/ScriptExecutionStates.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptExecutionStates.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/ScriptExecutionStates.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptExecutionStates.resx -------------------------------------------------------------------------------- /WinClean/Resources/ScriptProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptProperties.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/ScriptProperties.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptProperties.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/ScriptProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptProperties.resx -------------------------------------------------------------------------------- /WinClean/Resources/ScriptTypes.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptTypes.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/ScriptTypes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptTypes.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/ScriptTypes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/ScriptTypes.resx -------------------------------------------------------------------------------- /WinClean/Resources/TimeRemaining.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/TimeRemaining.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/TimeRemaining.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/TimeRemaining.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/TimeRemaining.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/TimeRemaining.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/AboutWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/AboutWindow.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/AboutWindow.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/AboutWindow.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/AboutWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/AboutWindow.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Buttons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Buttons.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/Buttons.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Buttons.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Buttons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Buttons.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Dialogs.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Dialogs.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/Dialogs.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Dialogs.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Dialogs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Dialogs.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ExecutionInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ExecutionInfoView.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/ExecutionInfoView.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ExecutionInfoView.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ExecutionInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ExecutionInfoView.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/MainWindow.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/MainWindow.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/MainWindow.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/MainWindow.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page1.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page1.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page1.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page1.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page2.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page2.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page2.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page2.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page3.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page3.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page3.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Page3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Page3.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptActionDictionaryView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptActionDictionaryView.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptActionDictionaryView.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptActionDictionaryView.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptActionDictionaryView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptActionDictionaryView.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptExecutionWizard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptExecutionWizard.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptExecutionWizard.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptExecutionWizard.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptExecutionWizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptExecutionWizard.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptView.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptView.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptView.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/ScriptView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/ScriptView.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/SettingsWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/SettingsWindow.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/SettingsWindow.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/SettingsWindow.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/SettingsWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/SettingsWindow.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Update.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Update.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/UI/Update.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Update.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/UI/Update.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/UI/Update.resx -------------------------------------------------------------------------------- /WinClean/Resources/Usages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Usages.Designer.cs -------------------------------------------------------------------------------- /WinClean/Resources/Usages.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Usages.fr.resx -------------------------------------------------------------------------------- /WinClean/Resources/Usages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Resources/Usages.resx -------------------------------------------------------------------------------- /WinClean/SafetyLevels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/SafetyLevels.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Clear File Explorer history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Clear File Explorer history.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Clear event logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Clear event logs.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Delete all system restore points, except the most recent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Delete all system restore points, except the most recent.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Delete junk files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Delete junk files.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable Cortana.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable Cortana.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable Explorer online help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable Explorer online help.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable Recent search history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable Recent search history.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable Start menu web search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable Start menu web search.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable Timeline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable Timeline.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable UAC prompt desktop dimming.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable UAC prompt desktop dimming.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable delivery optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable delivery optimization.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable hibernation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable hibernation.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable systematic short filename creation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable systematic short filename creation.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Disable telemetry and data collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Disable telemetry and data collection.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Don't block downloaded files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Don't block downloaded files.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Enable Verbose status messages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Enable Verbose status messages.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Hide ads and suggestions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Hide ads and suggestions.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Keep thumbnail cache after reboot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Keep thumbnail cache after reboot.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Optimize drives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Optimize drives.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove Internet Explorer 11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove Internet Explorer 11.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove Microsoft Edge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove Microsoft Edge.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove One Drive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove One Drive.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove PowerShell ISE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove PowerShell ISE.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove WordPad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove WordPad.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove scheduled tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove scheduled tasks.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove shortcut sufffix.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove shortcut sufffix.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove the Microsoft Windows Malware Removal Tool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove the Microsoft Windows Malware Removal Tool.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Remove useless apps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Remove useless apps.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Repair system using Dism's cleanup image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Repair system using Dism's cleanup image.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Restore Classic Windows Photo Viewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Restore Classic Windows Photo Viewer.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Run Component Store cleanup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Run Component Store cleanup.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Run Disk Cleanup tool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Run Disk Cleanup tool.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Run Service Pack cleanup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Run Service Pack cleanup.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Run advanced disk cleanup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Run advanced disk cleanup.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Run the System File Checker tool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Run the System File Checker tool.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Schedule Check Disk utility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Schedule Check Disk utility.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Show checkboxes near files and folders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Show checkboxes near files and folders.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Show file extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Show file extensions.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Show full path in Explorer title bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Show full path in Explorer title bar.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Show seconds in taskbar clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Show seconds in taskbar clock.xml -------------------------------------------------------------------------------- /WinClean/Scripts/Stop apps from running in the background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Scripts/Stop apps from running in the background.xml -------------------------------------------------------------------------------- /WinClean/Services/ApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/ApplicationInfo.cs -------------------------------------------------------------------------------- /WinClean/Services/DialogCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/DialogCreator.cs -------------------------------------------------------------------------------- /WinClean/Services/ExtensionGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/ExtensionGroup.cs -------------------------------------------------------------------------------- /WinClean/Services/FilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/FilterBuilder.cs -------------------------------------------------------------------------------- /WinClean/Services/IApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IApplicationInfo.cs -------------------------------------------------------------------------------- /WinClean/Services/IDialogCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IDialogCreator.cs -------------------------------------------------------------------------------- /WinClean/Services/IFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IFilterBuilder.cs -------------------------------------------------------------------------------- /WinClean/Services/IMessageFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IMessageFormatter.cs -------------------------------------------------------------------------------- /WinClean/Services/IMetadatasProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IMetadatasProvider.cs -------------------------------------------------------------------------------- /WinClean/Services/IOperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IOperatingSystem.cs -------------------------------------------------------------------------------- /WinClean/Services/IScriptStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IScriptStorage.cs -------------------------------------------------------------------------------- /WinClean/Services/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/ISettings.cs -------------------------------------------------------------------------------- /WinClean/Services/IThemeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IThemeProvider.cs -------------------------------------------------------------------------------- /WinClean/Services/IViewFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/IViewFactory.cs -------------------------------------------------------------------------------- /WinClean/Services/MessageFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/MessageFormatter.cs -------------------------------------------------------------------------------- /WinClean/Services/MetadatasProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/MetadatasProvider.cs -------------------------------------------------------------------------------- /WinClean/Services/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/OperatingSystem.cs -------------------------------------------------------------------------------- /WinClean/Services/ScriptStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/ScriptStorage.cs -------------------------------------------------------------------------------- /WinClean/Services/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/ServiceProvider.cs -------------------------------------------------------------------------------- /WinClean/Services/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/Settings.cs -------------------------------------------------------------------------------- /WinClean/Services/ThemeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/ThemeProvider.cs -------------------------------------------------------------------------------- /WinClean/Services/ViewFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/Services/ViewFactory.cs -------------------------------------------------------------------------------- /WinClean/TypeEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/TypeEventHandler.cs -------------------------------------------------------------------------------- /WinClean/View/App.ConsoleCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/App.ConsoleCallbacks.cs -------------------------------------------------------------------------------- /WinClean/View/App.UICallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/App.UICallbacks.cs -------------------------------------------------------------------------------- /WinClean/View/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/App.xaml -------------------------------------------------------------------------------- /WinClean/View/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/App.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Behaviors/ConfirmWindowClosing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Behaviors/ConfirmWindowClosing.cs -------------------------------------------------------------------------------- /WinClean/View/Behaviors/DataGridLastColumnFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Behaviors/DataGridLastColumnFill.cs -------------------------------------------------------------------------------- /WinClean/View/ButtonsArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/ButtonsArea.cs -------------------------------------------------------------------------------- /WinClean/View/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/CommandLineOptions.cs -------------------------------------------------------------------------------- /WinClean/View/Controls/ExecutionInfoListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ExecutionInfoListView.xaml -------------------------------------------------------------------------------- /WinClean/View/Controls/ExecutionInfoListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ExecutionInfoListView.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Controls/ExecutionInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ExecutionInfoView.xaml -------------------------------------------------------------------------------- /WinClean/View/Controls/ExecutionInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ExecutionInfoView.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptActionDictionaryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptActionDictionaryView.xaml -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptActionDictionaryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptActionDictionaryView.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptListView.xaml -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptListView.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptSelectionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptSelectionView.xaml -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptSelectionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptSelectionView.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptView.xaml -------------------------------------------------------------------------------- /WinClean/View/Controls/ScriptView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/ScriptView.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Controls/WizardPageBetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Controls/WizardPageBetter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/BooleanInvertConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/BooleanInvertConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/ColorToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/ColorToBrushConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/CurrentVersionSatisfiesRangeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/CurrentVersionSatisfiesRangeConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/DictionaryLookupConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/DictionaryLookupConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/EqualsOrDoNothingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/EqualsOrDoNothingConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/GetMetadatasConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/GetMetadatasConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/GoldenRatioConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/GoldenRatioConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/IntEnumerableToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/IntEnumerableToStringConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/IsNotNullConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/IsNotNullConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/ItemsEqualConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/ItemsEqualConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Converters/SemVersionRangeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Converters/SemVersionRangeConverter.cs -------------------------------------------------------------------------------- /WinClean/View/Pages/Page1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Pages/Page1.xaml -------------------------------------------------------------------------------- /WinClean/View/Pages/Page1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Pages/Page1.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Pages/Page2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Pages/Page2.xaml -------------------------------------------------------------------------------- /WinClean/View/Pages/Page2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Pages/Page2.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Pages/Page3.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Pages/Page3.xaml -------------------------------------------------------------------------------- /WinClean/View/Pages/Page3.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Pages/Page3.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/ResourceDictionaries/ControlTemplates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/ResourceDictionaries/ControlTemplates.xaml -------------------------------------------------------------------------------- /WinClean/View/ResourceDictionaries/Fixes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/ResourceDictionaries/Fixes.xaml -------------------------------------------------------------------------------- /WinClean/View/StandardIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/StandardIcons.cs -------------------------------------------------------------------------------- /WinClean/View/TabContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/TabContent.cs -------------------------------------------------------------------------------- /WinClean/View/Validation/SemVersionRangeValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Validation/SemVersionRangeValidationRule.cs -------------------------------------------------------------------------------- /WinClean/View/Windows/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/AboutWindow.xaml -------------------------------------------------------------------------------- /WinClean/View/Windows/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /WinClean/View/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Windows/ScriptExecutionWizard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/ScriptExecutionWizard.xaml -------------------------------------------------------------------------------- /WinClean/View/Windows/ScriptExecutionWizard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/ScriptExecutionWizard.xaml.cs -------------------------------------------------------------------------------- /WinClean/View/Windows/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/SettingsWindow.xaml -------------------------------------------------------------------------------- /WinClean/View/Windows/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/View/Windows/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/CollectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/CollectionWrapper.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/DialogFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/DialogFactory.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/ExecutionInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/ExecutionInfoViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/ExecutionProgressViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/ExecutionProgressViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/ExecutionResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/ExecutionResultViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Logging/LogLevel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Logging/Logger.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Logging/Logging.ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Logging/Logging.ConsoleLogger.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Logging/Logging.CsvLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Logging/Logging.CsvLogger.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Logging/Logging.MockLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Logging/Logging.MockLogger.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Logging/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Logging/Logging.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/ObservableSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/ObservableSet.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Pages/Page1ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Pages/Page1ViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Pages/Page2ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Pages/Page2ViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Pages/Page3ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Pages/Page3ViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Pages/WizardPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Pages/WizardPageViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/ScriptActionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/ScriptActionViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/ScriptSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/ScriptSelection.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/ScriptViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/ScriptViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Windows/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Windows/AboutViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Windows/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Windows/MainViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Windows/ScriptExecutionWizardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Windows/ScriptExecutionWizardViewModel.cs -------------------------------------------------------------------------------- /WinClean/ViewModel/Windows/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/ViewModel/Windows/SettingsViewModel.cs -------------------------------------------------------------------------------- /WinClean/WinClean.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/WinClean.csproj -------------------------------------------------------------------------------- /WinClean/WinClean.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/WinClean.ico -------------------------------------------------------------------------------- /WinClean/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5cover/WinClean/HEAD/WinClean/app.manifest --------------------------------------------------------------------------------