gitextract_on8h_p7p/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── dependabot.yml │ └── workflows/ │ └── dotnet.yml ├── .gitignore ├── LICENSE ├── README.md ├── XTR_Toolbox/ │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Classes/ │ │ ├── ColumnSorter.cs │ │ ├── Converters.cs │ │ ├── CustomProc.cs │ │ └── Shared.cs │ ├── Dialogs/ │ │ ├── ChromeProcessUC.xaml │ │ ├── ChromeProcessUC.xaml.cs │ │ ├── ForceRemoveDialog.xaml │ │ ├── ForceRemoveDialog.xaml.cs │ │ ├── GenYesNoUC.xaml │ │ ├── GenYesNoUC.xaml.cs │ │ ├── QuickToolsUc.xaml │ │ ├── QuickToolsUc.xaml.cs │ │ ├── RemoveTelemetryUc.xaml │ │ ├── RemoveTelemetryUc.xaml.cs │ │ ├── StartupCreateUC.xaml │ │ └── StartupCreateUC.xaml.cs │ ├── FodyWeavers.xml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── W1_WinApps.xaml │ ├── W1_WinApps.xaml.cs │ ├── W2_Autoruns.xaml │ ├── W2_Autoruns.xaml.cs │ ├── W3_Services.xaml │ ├── W3_Services.xaml.cs │ ├── W4_Hosts.xaml │ ├── W4_Hosts.xaml.cs │ ├── W5_Cleanup.xaml │ ├── W5_Cleanup.xaml.cs │ ├── W6_Software.xaml │ ├── W6_Software.xaml.cs │ ├── W7_Addons.xaml │ ├── W7_Addons.xaml.cs │ └── XTR_Toolbox.csproj └── XTR_Toolbox.sln