gitextract_mo4whkyi/ ├── .gitattributes ├── .gitignore ├── Flyby11/ │ ├── CpuCheck.cpp │ ├── Flyby11.vcxproj │ ├── Flyby11.vcxproj.filters │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── Flyby11-deprecated/ │ ├── CpuCheckNative/ │ │ ├── CpuCheckNative.rc │ │ ├── CpuCheckNative.vcxproj │ │ ├── CpuCheckNative.vcxproj.filters │ │ ├── PopcntCheck.cpp │ │ ├── dllmain.cpp │ │ ├── framework.h │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── resource.h │ ├── Flyby11/ │ │ ├── App.config │ │ ├── CanIUpgradeView.Designer.cs │ │ ├── CanIUpgradeView.cs │ │ ├── CanIUpgradeView.resx │ │ ├── ClippyUI.Designer.cs │ │ ├── ClippyUI.cs │ │ ├── ClippyUI.resx │ │ ├── CompatibilityForm.Designer.cs │ │ ├── CompatibilityForm.cs │ │ ├── CompatibilityForm.resx │ │ ├── FAQHandler.cs │ │ ├── Flyby11.csproj │ │ ├── IsoHandler.cs │ │ ├── Locales/ │ │ │ ├── Strings.Designer.cs │ │ │ ├── Strings.ar.resx │ │ │ ├── Strings.cs-CZ.resx │ │ │ ├── Strings.de.resx │ │ │ ├── Strings.fr.resx │ │ │ ├── Strings.he.resx │ │ │ ├── Strings.hu.resx │ │ │ ├── Strings.it.resx │ │ │ ├── Strings.ja.resx │ │ │ ├── Strings.ko.resx │ │ │ ├── Strings.nl.resx │ │ │ ├── Strings.pl.resx │ │ │ ├── Strings.pt-BR.resx │ │ │ ├── Strings.resx │ │ │ ├── Strings.sv-SE.resx │ │ │ ├── Strings.tr.resx │ │ │ └── Strings.zh-CN.resx │ │ ├── Logger.cs │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── ProblemsForm.Designer.cs │ │ ├── ProblemsForm.cs │ │ ├── ProblemsForm.resx │ │ ├── Program.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── SwitchView.cs │ │ └── app.manifest │ └── Flyby11.sln ├── Flyoobe/ │ ├── App.config │ ├── Features/ │ │ ├── Ads/ │ │ │ ├── FileExlorerAds.cs │ │ │ ├── FinishSetupAds.cs │ │ │ ├── LockScreenAds.cs │ │ │ ├── PersonalizedAds.cs │ │ │ ├── SettingsAds.cs │ │ │ ├── StartmenuAds.cs │ │ │ ├── TailoredExperiences.cs │ │ │ ├── TipsAndSuggestions.cs │ │ │ └── WelcomeExperienceAds.cs │ │ ├── Edge/ │ │ │ ├── BrowserSignin.cs │ │ │ ├── DefaultTopSites.cs │ │ │ ├── DefautBrowserSetting.cs │ │ │ ├── EdgeCollections.cs │ │ │ ├── EdgeShoppingAssistant.cs │ │ │ ├── FirstRunExperience.cs │ │ │ ├── GamerMode.cs │ │ │ ├── ImportOnEachLaunch.cs │ │ │ ├── StartupBoost.cs │ │ │ ├── TabPageQuickLinks.cs │ │ │ └── UserFeedback.cs │ │ ├── FeatureBase.cs │ │ ├── FeatureLoader.cs │ │ ├── FeatureManager.cs │ │ ├── FeatureNode.cs │ │ ├── Gaming/ │ │ │ ├── GameDVR.cs │ │ │ ├── PowerThrotteling.cs │ │ │ └── VisualFX.cs │ │ ├── Privacy/ │ │ │ ├── ActivityHistory.cs │ │ │ ├── LocationTracking.cs │ │ │ ├── PrivacyExperience.cs │ │ │ └── Telemetry.cs │ │ ├── System/ │ │ │ ├── BSODDetails.cs │ │ │ ├── Hibernation.cs │ │ │ ├── MenuShowDelay.cs │ │ │ ├── NetworkThrottling.cs │ │ │ ├── SpeedUpShutdown.cs │ │ │ ├── SystemResponsiveness.cs │ │ │ ├── TaskbarEndTask.cs │ │ │ └── VerboseStatus.cs │ │ └── UI/ │ │ ├── BingSearch.cs │ │ ├── FullContextMenus.cs │ │ ├── SearchBoxSuggestions.cs │ │ ├── SearchboxTaskbarMode.cs │ │ ├── ShowOrHideMostUsedApps.cs │ │ ├── ShowTaskViewButton.cs │ │ ├── SnapAssistFlyout.cs │ │ ├── StartLayout.cs │ │ ├── Transparency.cs │ │ └── WLockScreen.cs │ ├── Flyoobe.csproj │ ├── Helper/ │ │ ├── BackgroundHelper.cs │ │ ├── DonationHelper.cs │ │ ├── Logger.cs │ │ ├── UIHelper.cs │ │ └── Utils.cs │ ├── IView.cs │ ├── InstallView/ │ │ ├── AdvancedControlView.Designer.cs │ │ ├── AdvancedControlView.cs │ │ ├── AdvancedControlView.resx │ │ ├── BackupDriversProvider.cs │ │ ├── BootMenuInfoProvider.cs │ │ ├── InPlaceRepairProvider.cs │ │ ├── InstallProviders.cs │ │ ├── MctProvider.cs │ │ ├── MountIsoProvider.cs │ │ ├── NativeResetProvider.cs │ │ ├── RebootToUefiProvider.cs │ │ ├── RufusProvider.cs │ │ ├── RunSetupFromIsoProvider.cs │ │ ├── ToolHelper.cs │ │ └── VentoyProvider.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── NavButton.cs │ ├── OobeControl.Designer.cs │ ├── OobeControl.cs │ ├── OobeControl.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ToolHubView/ │ │ ├── ToolHubCategory.cs │ │ ├── ToolHubControlView.Designer.cs │ │ ├── ToolHubControlView.cs │ │ ├── ToolHubControlView.resx │ │ ├── ToolHubDefinition.cs │ │ ├── ToolHubHelper.cs │ │ ├── ToolHubItemControl.Designer.cs │ │ ├── ToolHubItemControl.cs │ │ ├── ToolHubItemControl.resx │ │ └── ToolHubUrlDialog.cs │ ├── ViewMetadata.cs │ ├── ViewNavigator.cs │ ├── Views/ │ │ ├── AccountControlView.Designer.cs │ │ ├── AccountControlView.cs │ │ ├── AccountControlView.resx │ │ ├── AiControlView.Designer.cs │ │ ├── AiControlView.cs │ │ ├── AiControlView.resx │ │ ├── AppSettingsControlView.Designer.cs │ │ ├── AppSettingsControlView.cs │ │ ├── AppSettingsControlView.resx │ │ ├── AppsControlView.Designer.cs │ │ ├── AppsControlView.cs │ │ ├── AppsControlView.resx │ │ ├── DefaultsControlView.Designer.cs │ │ ├── DefaultsControlView.cs │ │ ├── DefaultsControlView.resx │ │ ├── DeviceControlView.Designer.cs │ │ ├── DeviceControlView.cs │ │ ├── DeviceControlView.resx │ │ ├── ExperienceControlView.Designer.cs │ │ ├── ExperienceControlView.cs │ │ ├── ExperienceControlView.resx │ │ ├── HomeControlView.Designer.cs │ │ ├── HomeControlView.cs │ │ ├── HomeControlView.resx │ │ ├── HomeItemControl.Designer.cs │ │ ├── HomeItemControl.cs │ │ ├── HomeItemControl.resx │ │ ├── InstallerControlView.Designer.cs │ │ ├── InstallerControlView.cs │ │ ├── InstallerControlView.resx │ │ ├── LoggerControlView.Designer.cs │ │ ├── LoggerControlView.cs │ │ ├── LoggerControlView.resx │ │ ├── NetworkControlView.Designer.cs │ │ ├── NetworkControlView.cs │ │ ├── NetworkControlView.resx │ │ ├── PersonalizationControlView.Designer.cs │ │ ├── PersonalizationControlView.cs │ │ ├── PersonalizationControlView.resx │ │ ├── UpdatesControlView.Designer.cs │ │ ├── UpdatesControlView.cs │ │ └── UpdatesControlView.resx │ └── app.manifest ├── Flyoobe.Extensions/ │ ├── Developer Essentials.ps1 │ ├── EXTENSIONS.md │ ├── Gaming tweaks.ps1 │ ├── Microsoft Defender maintenance.ps1 │ ├── Network Tools.ps1 │ ├── Power Actions.ps1 │ └── Write-an-Extension.md ├── Flyoobe.ToolSpot-deprecated/ │ ├── Flyoobe.Spot.sln │ └── Flyoobe.ToolSpot/ │ ├── App.config │ ├── Flyoobe.Spot.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── app.manifest ├── Flyoobe.sln ├── LICENSE ├── README.md ├── assets/ │ ├── Flyoobe_Profile_Community.txt │ └── Info.md └── docs/ └── update-check.html