├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── general.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── Windows ├── Apps │ ├── Busylight4MSTeams │ │ ├── Icon │ │ │ └── Product_omega_Alpha.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Busylight4MS_Teams_Setup.mst │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── ChocoInstaller │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_7Zip │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_AcrobatReaderDC │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.jpg │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_Audacity │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_FileZilla │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_Foxitreader │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_Greenshot │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_HPSupportAssistant │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_KeePass2 │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_MicrosoftTeamsDesktopApp │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_MobaXTerm │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.jpg │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_MozillaFirefox │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_NextcloudDesktopClient │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_Notepad++ │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_PDF24Creator │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.jpg │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_PlantronicsHub │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_Postman │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ ├── Uninstall.ps1 │ │ │ └── postInstall.ps1 │ │ └── create.ps1 │ ├── Choco_PuTTY │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_Snagit │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_Teamviewer │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_WinRAR │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_WinSCP │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.jpg │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_git │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── Choco_vscode │ │ ├── Icon │ │ │ ├── fallback.png │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── FortiClientVPN │ │ ├── Icon │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── FortiClientVPN.mst │ │ │ ├── Install.ps1 │ │ │ └── Uninstall.ps1 │ │ └── create.ps1 │ ├── README.md │ ├── basepackage │ │ ├── Icon │ │ │ └── icon.png │ │ ├── Info │ │ │ └── Description.txt │ │ ├── Output │ │ │ └── .gitkeep │ │ ├── Source │ │ │ ├── Autopilot │ │ │ │ └── AutopilotConfigurationFile.json │ │ │ ├── PowerShell │ │ │ │ ├── Enable-BitLockerEncryption.ps1 │ │ │ │ ├── EnhanceIntuneAgentLogging.ps1 │ │ │ │ ├── Get-AadJoinInformation.ps1 │ │ │ │ ├── Install-AllMissingMicrosoftUpdates.ps1 │ │ │ │ ├── Install-AutoPilotRelated.ps1 │ │ │ │ └── Update-PowerShellModulesHelp.ps1 │ │ │ ├── System32 │ │ │ │ └── oemlogo.bmp │ │ │ ├── Tools │ │ │ │ ├── cmtrace.exe │ │ │ │ ├── enaTec_Installer.exe.config │ │ │ │ ├── logon.bgi │ │ │ │ └── sysinfo.exe │ │ │ ├── Wallpaper │ │ │ │ ├── TransparentLogo.png │ │ │ │ ├── WIP-6th-anniversary-wallpaper-dark.jpg │ │ │ │ ├── WIP-6th-anniversary-wallpaper-light.jpg │ │ │ │ ├── WIP-7th-anniversary-wallpaper-dark.jpg │ │ │ │ └── WIP-7th-anniversary-wallpaper-light.jpg │ │ │ ├── etc │ │ │ │ ├── hosts │ │ │ │ └── lmhosts │ │ │ └── setup.ps1 │ │ └── create.ps1 │ └── folge │ │ ├── Icon │ │ ├── logo.ico │ │ └── logo.png │ │ ├── Info │ │ └── Description.txt │ │ ├── Output │ │ └── .gitkeep │ │ ├── Source │ │ ├── Install.ps1 │ │ └── Uninstall.ps1 │ │ └── create.ps1 ├── Compliance │ ├── Invoke-CheckIfUnapprovedAppsAreInstalled.json │ └── Invoke-CheckIfUnapprovedAppsAreInstalled.ps1 ├── PowerShell │ ├── Add-EntraUserAsLocalGroupMember.ps1 │ ├── Get-DeviceAutoPilotInfo.ps1 │ ├── InstallpendingWindowsUpdates.ps1 │ └── README.md └── ProactiveRemediations │ ├── 3rdparty │ ├── Detect - WebRTC - Detection Script - 0.2.3.ps1 │ └── Remediate - WebRTC - Remediation Script - 0.2.8.ps1 │ ├── AllowAllNETUpdates.ps1 │ ├── Detection-AllowNonAdminsToManageThePublicDesktop.ps1 │ ├── Detection-AllowSideLoadingForTrustedApps.ps1 │ ├── Detection-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1 │ ├── Detection-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1 │ ├── Detection-AnonymousAccessHardeningLSA.ps1 │ ├── Detection-AttackSurfaceReductionRules.ps1 │ ├── Detection-AutoPatch.ps1 │ ├── Detection-AutoTimeZoneUpdate.ps1 │ ├── Detection-BuiltInTeamsChatAsSystem.ps1 │ ├── Detection-BuiltInTeamsChatAsUser.ps1 │ ├── Detection-CVE-2023-36884.ps1 │ ├── Detection-CheckDrivers.ps1 │ ├── Detection-CloudKerberosTicketRetrievalEnabled.ps1 │ ├── Detection-ConfigureOneDrive.ps1 │ ├── Detection-CorpProfile.ps1 │ ├── Detection-DNSSettings.ps1 │ ├── Detection-DefenderApplicationGuard.ps1 │ ├── Detection-DisableBuiltInDnsClient.ps1 │ ├── Detection-DisableCellularDataRoaming.ps1 │ ├── Detection-DisableChangingLockScreenBackgroundForAllUsers.ps1 │ ├── Detection-DisableCopilotButtonOnTaskbarForAllUsers.ps1 │ ├── Detection-DisableCopilotForAllUsers.ps1 │ ├── Detection-DisableDontDisplayLastSignedinUser.ps1 │ ├── Detection-DisableDownfallSecurityMitigation.ps1 │ ├── Detection-DisableIPSourceRouting.ps1 │ ├── Detection-DisablePhoneLinkAppForAllUsers.ps1 │ ├── Detection-DisableQUIC.ps1 │ ├── Detection-DisableSMB1Protocol.ps1 │ ├── Detection-DisableShowLockScreenBackgroundOnSignInScreen.ps1 │ ├── Detection-DisableTLS12ForEAPAuthentication.ps1 │ ├── Detection-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 │ ├── Detection-DisableWinHttpAutoProxySvcService.ps1 │ ├── Detection-DoNotDisplayLastUsernameOnSignIn.ps1 │ ├── Detection-EnableAdministratorProtection.ps1 │ ├── Detection-EnableAutomaticallyLockComputerAfterInactivity.ps1 │ ├── Detection-EnableCellularDataRoaming.ps1 │ ├── Detection-EnableCopilotButtonOnTaskbarForAllUsers.ps1 │ ├── Detection-EnableDontDisplayLastSignedinUser.ps1 │ ├── Detection-EnableEdgeAutomaticUpdates.ps1 │ ├── Detection-EnableOneDriveIntegration.ps1 │ ├── Detection-EnableOrDisableWindowsCopilotForCurrentUser.ps1 │ ├── Detection-EnablePhoneLinkAppForAllUsers.ps1 │ ├── Detection-EnablePhotoViewer.ps1 │ ├── Detection-EnablePowerThrottling.ps1 │ ├── Detection-EnableSecureSignIn_CAD_ForAllUsers.ps1 │ ├── Detection-EnableUACPromptForBuiltInAdministratorAccount.ps1 │ ├── Detection-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 │ ├── Detection-EnableWinHttpAutoProxySvcService.ps1 │ ├── Detection-GetLatestUpdatesAsSoonAsAvailable.ps1 │ ├── Detection-GlobalSecureAccessConnectedLocal.ps1 │ ├── Detection-GlobalSecureAccessDefaultSetup.ps1 │ ├── Detection-GlobalSecureAccessSettings.ps1 │ ├── Detection-GlobalSecureAccessUserSettings.ps1 │ ├── Detection-HKCU_DisablePersonalSync.ps1 │ ├── Detection-HKLM_DisableNewAccountDetection.ps1 │ ├── Detection-HideWSLLinuxIconFromDesktop.ps1 │ ├── Detection-IsWVDEnvironment.ps1 │ ├── Detection-IsWinGetInstalled.ps1 │ ├── Detection-L2TPNATSupport.ps1 │ ├── Detection-L2TPNATSupportAndTweaks.ps1 │ ├── Detection-LLMNR-Multicast.ps1 │ ├── Detection-LidNotifyReliable.ps1 │ ├── Detection-LockScreen.ps1 │ ├── Detection-MMAgent.ps1 │ ├── Detection-MSRDC2Insider.ps1 │ ├── Detection-MicrosoftDefenderConfig.ps1 │ ├── Detection-MicrosoftUpdateNoAutoUpdate.ps1 │ ├── Detection-MicrosoftWindowsUnquotedServicePath.ps1 │ ├── Detection-MitigateCVE202230190.ps1 │ ├── Detection-MitigateOutlookCrashingWorkaroundJune2025.ps1 │ ├── Detection-MitigateSearchMS.ps1 │ ├── Detection-NCAllowNetBridgeNLA.ps1 │ ├── Detection-NCStdDomainUserSetLocation.ps1 │ ├── Detection-Netbios.ps1 │ ├── Detection-NewTeamsQos.ps1 │ ├── Detection-NoCopilotPlusAndRecall.ps1 │ ├── Detection-OfficeCopilotFeatures.ps1 │ ├── Detection-OfficeUpdateHideEnableDisableUpdates.ps1 │ ├── Detection-OneDrive.ps1 │ ├── Detection-OneDriveDelayFlag.ps1 │ ├── Detection-OutdatedChocolateyApps.ps1 │ ├── Detection-OutdatedWingetApps.ps1 │ ├── Detection-PSModuleUpdate.ps1 │ ├── Detection-PendingWinGetUpdates.ps1 │ ├── Detection-RegisteredOwnerAndOrganization.ps1 │ ├── Detection-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1 │ ├── Detection-RemoveSystemRequirementsNotMetWatermark.ps1 │ ├── Detection-RemoveWindowsWatermarkOnDesktopForAllUser.ps1 │ ├── Detection-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1 │ ├── Detection-RemoveWslDesktopIcon.ps1 │ ├── Detection-RenameThisPCIcon_USER.ps1 │ ├── Detection-SaveSentItemsInSharedMailbox.ps1 │ ├── Detection-SetDefenderDisableRemovableDriveScanningOff.ps1 │ ├── Detection-SetupBraveBrowser.ps1 │ ├── Detection-SetupMicrosoftEdgeBrowser.ps1 │ ├── Detection-ShowThisPCIcon_USER.ps1 │ ├── Detection-SystemWPADOverride.ps1 │ ├── Detection-TeamsFirewallPerUser.ps1 │ ├── Detection-TeamsQos.ps1 │ ├── Detection-TurnOffPhoneLinkForCurrentUser.ps1 │ ├── Detection-TurnOffUseCellularWhenWiFiIsPoor.ps1 │ ├── Detection-TurnOnAutoEndTasksForAllUsers.ps1 │ ├── Detection-TurnOnCoreIsolationMemoryIntegrity.ps1 │ ├── Detection-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1 │ ├── Detection-TurnOnPhoneLinkForCurrentUser.ps1 │ ├── Detection-TurnOnUseCellularWhenWiFiIsPoor.ps1 │ ├── Detection-UACAlwaysNotify.ps1 │ ├── Detection-UACDefault.ps1 │ ├── Detection-UACDoNotDim.ps1 │ ├── Detection-UptimeToLong.ps1 │ ├── Detection-UserWPADOverride.ps1 │ ├── Detection-VSthroughMUUpdates.ps1 │ ├── Detection-WOLSurfaceStudio2.ps1 │ ├── Detection-WindowsExplorerSettings.ps1 │ ├── Detection-WlanfixForWindows11Release24H2.ps1 │ ├── Detection-localAdminEnabled.ps1 │ ├── Detection-localAdminName.ps1 │ ├── Remediate-OneDriveDelayFlag.ps1 │ ├── Remediation-AllowNonAdminsToManageThePublicDesktop.ps1 │ ├── Remediation-AllowSideLoadingForTrustedApps.ps1 │ ├── Remediation-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1 │ ├── Remediation-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1 │ ├── Remediation-AnonymousAccessHardeningLSA.ps1 │ ├── Remediation-AttackSurfaceReductionRules.ps1 │ ├── Remediation-AutoPatch.ps1 │ ├── Remediation-AutoTimeZoneUpdate.ps1 │ ├── Remediation-BuiltInTeamsChatAsSystem.ps1 │ ├── Remediation-BuiltInTeamsChatAsUser.ps1 │ ├── Remediation-CVE-2023-36884.ps1 │ ├── Remediation-CheckDrivers.ps1 │ ├── Remediation-CloudKerberosTicketRetrievalEnabled.ps1 │ ├── Remediation-ConfigureOneDrive.ps1 │ ├── Remediation-CorpProfile.ps1 │ ├── Remediation-DNSSetings.ps1 │ ├── Remediation-DefenderApplicationGuard.ps1 │ ├── Remediation-DisableBuiltInDnsClient.ps1 │ ├── Remediation-DisableCellularDataRoaming.ps1 │ ├── Remediation-DisableChangingLockScreenBackgroundForAllUsers.ps1 │ ├── Remediation-DisableCopilotButtonOnTaskbarForAllUsers.ps1 │ ├── Remediation-DisableCopilotForAllUsers.ps1 │ ├── Remediation-DisableDontDisplayLastSignedinUser.ps1 │ ├── Remediation-DisableDownfallSecurityMitigation.ps1 │ ├── Remediation-DisableIPSourceRouting.ps1 │ ├── Remediation-DisablePhoneLinkAppForAllUsers.ps1 │ ├── Remediation-DisableQUIC.ps1 │ ├── Remediation-DisableSMB1Protocol.ps1 │ ├── Remediation-DisableShowLockScreenBackgroundOnSignInScreen.ps1 │ ├── Remediation-DisableTLS12ForEAPAuthentication.ps1 │ ├── Remediation-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 │ ├── Remediation-DisableWinHttpAutoProxySvcService.ps1 │ ├── Remediation-DoNotDisplayLastUsernameOnSignIn.ps1 │ ├── Remediation-EnableAdministratorProtection.ps1 │ ├── Remediation-EnableAutomaticallyLockComputerAfterInactivity.ps1 │ ├── Remediation-EnableCellularDataRoaming.ps1 │ ├── Remediation-EnableCopilotButtonOnTaskbarForAllUsers.ps1 │ ├── Remediation-EnableDontDisplayLastSignedinUser.ps1 │ ├── Remediation-EnableEdgeAutomaticUpdates.ps1 │ ├── Remediation-EnableOneDriveIntegration.ps1 │ ├── Remediation-EnableOrDisableWindowsCopilotForCurrentUser.ps1 │ ├── Remediation-EnablePhoneLinkAppForAllUsers.ps1 │ ├── Remediation-EnablePhotoViewer.ps1 │ ├── Remediation-EnablePowerThrottling.ps1 │ ├── Remediation-EnableSecureSignIn_CAD_ForAllUsers.ps1 │ ├── Remediation-EnableUACPromptForBuiltInAdministratorAccount.ps1 │ ├── Remediation-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 │ ├── Remediation-EnableWinHttpAutoProxySvcService.ps1 │ ├── Remediation-GetLatestUpdatesAsSoonAsAvailable.ps1 │ ├── Remediation-GlobalSecureAccessConnectedLocal.ps1 │ ├── Remediation-GlobalSecureAccessDefaultSetup.ps1 │ ├── Remediation-GlobalSecureAccessSettings.ps1 │ ├── Remediation-GlobalSecureAccessUserSettings.ps1 │ ├── Remediation-HKCU_DisablePersonalSync.ps1 │ ├── Remediation-HKLM_DisableNewAccountDetection.ps1 │ ├── Remediation-HideWSLLinuxIconFromDesktop.ps1 │ ├── Remediation-IsWVDEnvironment.ps1 │ ├── Remediation-IsWinGetInstalled.ps1 │ ├── Remediation-L2TPNATSupport.ps1 │ ├── Remediation-L2TPNATSupportAndTweaks.ps1 │ ├── Remediation-LLMNR-Multicast.ps1 │ ├── Remediation-LidNotifyReliable.ps1 │ ├── Remediation-LockScreen.ps1 │ ├── Remediation-MMAgent.ps1 │ ├── Remediation-MSRDC2Insider.ps1 │ ├── Remediation-MicrosoftDefenderConfig.ps1 │ ├── Remediation-MicrosoftUpdateNoAutoUpdate.ps1 │ ├── Remediation-MicrosoftWindowsUnquotedServicePath.ps1 │ ├── Remediation-MitigateCVE202230190.ps1 │ ├── Remediation-MitigateOutlookCrashingWorkaroundJune2025.ps1 │ ├── Remediation-MitigateSearchMS.ps1 │ ├── Remediation-NCAllowNetBridgeNLA.ps1 │ ├── Remediation-NCStdDomainUserSetLocation.ps1 │ ├── Remediation-Netbios.ps1 │ ├── Remediation-NewTeamsQos.ps1 │ ├── Remediation-NoCopilotPlusAndRecall.ps1 │ ├── Remediation-OfficeCopilotFeatures.ps1 │ ├── Remediation-OfficeUpdateHideEnableDisableUpdates.ps1 │ ├── Remediation-OneDrive.ps1 │ ├── Remediation-OneDriveDelayFlag.ps1 │ ├── Remediation-OutdatedChocolateyApps.ps1 │ ├── Remediation-OutdatedWingetApps.ps1 │ ├── Remediation-PSModuleUpdate.ps1 │ ├── Remediation-PendingWinGetUpdates.ps1 │ ├── Remediation-RegisteredOwnerAndOrganization.ps1 │ ├── Remediation-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1 │ ├── Remediation-RemoveSystemRequirementsNotMetWatermark.ps1 │ ├── Remediation-RemoveWindowsWatermarkOnDesktopForAllUser.ps1 │ ├── Remediation-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1 │ ├── Remediation-RemoveWslDesktopIcon.ps1 │ ├── Remediation-RenameThisPCIcon_USER.ps1 │ ├── Remediation-SaveSentItemsInSharedMailbox.ps1 │ ├── Remediation-SetDefenderDisableRemovableDriveScanningOff.ps1 │ ├── Remediation-SetupBraveBrowser.ps1 │ ├── Remediation-SetupMicrosoftEdgeBrowser.ps1 │ ├── Remediation-ShowThisPCIcon_USER.ps1 │ ├── Remediation-SystemWPADOverride.ps1 │ ├── Remediation-TeamsFirewallPerUser.ps1 │ ├── Remediation-TeamsQos.ps1 │ ├── Remediation-TurnOffPhoneLinkForCurrentUser.ps1 │ ├── Remediation-TurnOffUseCellularWhenWiFiIsPoor.ps1 │ ├── Remediation-TurnOnAutoEndTasksForAllUsers.ps1 │ ├── Remediation-TurnOnCoreIsolationMemoryIntegrity.ps1 │ ├── Remediation-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1 │ ├── Remediation-TurnOnPhoneLinkForCurrentUser.ps1 │ ├── Remediation-TurnOnUseCellularWhenWiFiIsPoor.ps1 │ ├── Remediation-UACAlwaysNotify.ps1 │ ├── Remediation-UACDefault.ps1 │ ├── Remediation-UACDoNotDim.ps1 │ ├── Remediation-UptimeToLong.ps1 │ ├── Remediation-UserWPADOverride.ps1 │ ├── Remediation-VSthroughMUUpdates.ps1 │ ├── Remediation-WOLSurfaceStudio2.ps1 │ ├── Remediation-WindowsExplorerSettings.ps1 │ ├── Remediation-WlanfixForWindows11Release24H2.ps1 │ ├── Remediation-localAdminEnabled.ps1 │ ├── Remediation-localAdminName.ps1 │ ├── Remediation_StarfaceAutoUpdateFeature.ps1 │ ├── images │ ├── remediations_lic1.png │ └── remediations_lic2.png │ ├── readme.md │ └── remediate-LsaHardening.ps1 └── macOS ├── CustomAttributesScripts ├── fetchMSCompanyPortalVersion.sh ├── fetchMSDefenderVersion.sh ├── fetchMSTeamsVersion.sh ├── getActivationLockStatus.sh ├── getBatteryCapacity.sh ├── getBatteryCycleCount.sh ├── getBatteryHealty.sh ├── getBootstrapTokenEscrowStatus.sh ├── getLastBootTime.sh ├── getMacBookModel.sh ├── getMemory.sh ├── getProcessorType.sh └── getUptime.sh ├── README.md └── Scripts └── Intune-MacOS-pspolicy.sh /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/.github/ISSUE_TEMPLATE/general.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Windows/Apps/Busylight4MSTeams/Icon/Product_omega_Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Busylight4MSTeams/Icon/Product_omega_Alpha.png -------------------------------------------------------------------------------- /Windows/Apps/Busylight4MSTeams/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Busylight4MSTeams/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Busylight4MSTeams/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Busylight4MSTeams/Source/Busylight4MS_Teams_Setup.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Busylight4MSTeams/Source/Busylight4MS_Teams_Setup.mst -------------------------------------------------------------------------------- /Windows/Apps/Busylight4MSTeams/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Busylight4MSTeams/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Busylight4MSTeams/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Busylight4MSTeams/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Busylight4MSTeams/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Busylight4MSTeams/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/ChocoInstaller/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/ChocoInstaller/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/ChocoInstaller/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/ChocoInstaller/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/ChocoInstaller/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/ChocoInstaller/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/ChocoInstaller/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/ChocoInstaller/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/ChocoInstaller/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/ChocoInstaller/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/ChocoInstaller/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/ChocoInstaller/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/ChocoInstaller/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_7Zip/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_7Zip/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_7Zip/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_7Zip/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_7Zip/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_7Zip/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_7Zip/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_7Zip/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_7Zip/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_7Zip/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_7Zip/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_7Zip/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_7Zip/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_AcrobatReaderDC/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_AcrobatReaderDC/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_AcrobatReaderDC/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_AcrobatReaderDC/Icon/icon.jpg -------------------------------------------------------------------------------- /Windows/Apps/Choco_AcrobatReaderDC/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_AcrobatReaderDC/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_AcrobatReaderDC/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_AcrobatReaderDC/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_AcrobatReaderDC/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_AcrobatReaderDC/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_AcrobatReaderDC/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_AcrobatReaderDC/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_AcrobatReaderDC/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Audacity/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Audacity/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Audacity/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Audacity/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Audacity/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Audacity/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_Audacity/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_Audacity/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Audacity/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Audacity/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Audacity/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Audacity/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Audacity/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_FileZilla/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_FileZilla/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_FileZilla/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_FileZilla/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_FileZilla/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_FileZilla/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_FileZilla/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_FileZilla/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_FileZilla/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_FileZilla/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_FileZilla/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_FileZilla/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_FileZilla/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Foxitreader/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Foxitreader/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Foxitreader/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Foxitreader/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Foxitreader/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Foxitreader/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_Foxitreader/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_Foxitreader/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Foxitreader/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Foxitreader/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Foxitreader/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Foxitreader/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Foxitreader/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Greenshot/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Greenshot/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Greenshot/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Greenshot/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Greenshot/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Greenshot/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_Greenshot/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_Greenshot/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Greenshot/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Greenshot/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Greenshot/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Greenshot/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Greenshot/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_HPSupportAssistant/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_HPSupportAssistant/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_HPSupportAssistant/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_HPSupportAssistant/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_HPSupportAssistant/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_HPSupportAssistant/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_HPSupportAssistant/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_HPSupportAssistant/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_HPSupportAssistant/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_HPSupportAssistant/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_HPSupportAssistant/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_HPSupportAssistant/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_HPSupportAssistant/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_KeePass2/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_KeePass2/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_KeePass2/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_KeePass2/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_KeePass2/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_KeePass2/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_KeePass2/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_KeePass2/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_KeePass2/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_KeePass2/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_KeePass2/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_KeePass2/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_KeePass2/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MicrosoftTeamsDesktopApp/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MicrosoftTeamsDesktopApp/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MobaXTerm/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MobaXTerm/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_MobaXTerm/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MobaXTerm/Icon/icon.jpg -------------------------------------------------------------------------------- /Windows/Apps/Choco_MobaXTerm/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MobaXTerm/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_MobaXTerm/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_MobaXTerm/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MobaXTerm/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MobaXTerm/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MobaXTerm/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MobaXTerm/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MobaXTerm/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MozillaFirefox/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MozillaFirefox/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_MozillaFirefox/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MozillaFirefox/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_MozillaFirefox/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MozillaFirefox/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_MozillaFirefox/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_MozillaFirefox/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MozillaFirefox/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MozillaFirefox/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MozillaFirefox/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_MozillaFirefox/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_MozillaFirefox/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_NextcloudDesktopClient/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_NextcloudDesktopClient/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_NextcloudDesktopClient/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_NextcloudDesktopClient/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_NextcloudDesktopClient/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_NextcloudDesktopClient/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_NextcloudDesktopClient/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_NextcloudDesktopClient/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_NextcloudDesktopClient/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_NextcloudDesktopClient/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_NextcloudDesktopClient/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_NextcloudDesktopClient/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_NextcloudDesktopClient/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Notepad++/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Notepad++/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Notepad++/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Notepad++/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Notepad++/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Notepad++/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_Notepad++/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_Notepad++/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Notepad++/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Notepad++/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Notepad++/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Notepad++/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Notepad++/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PDF24Creator/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PDF24Creator/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_PDF24Creator/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PDF24Creator/Icon/icon.jpg -------------------------------------------------------------------------------- /Windows/Apps/Choco_PDF24Creator/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PDF24Creator/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_PDF24Creator/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_PDF24Creator/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PDF24Creator/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PDF24Creator/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PDF24Creator/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PDF24Creator/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PDF24Creator/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PlantronicsHub/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PlantronicsHub/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_PlantronicsHub/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PlantronicsHub/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_PlantronicsHub/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PlantronicsHub/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_PlantronicsHub/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_PlantronicsHub/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PlantronicsHub/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PlantronicsHub/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PlantronicsHub/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PlantronicsHub/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PlantronicsHub/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Postman/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Postman/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Postman/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Postman/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Postman/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/Source/postInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Postman/Source/postInstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Postman/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Postman/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PuTTY/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PuTTY/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_PuTTY/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PuTTY/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_PuTTY/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PuTTY/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_PuTTY/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_PuTTY/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PuTTY/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PuTTY/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PuTTY/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_PuTTY/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_PuTTY/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Snagit/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Snagit/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Snagit/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Snagit/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Snagit/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Snagit/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_Snagit/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_Snagit/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Snagit/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Snagit/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Snagit/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Snagit/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Snagit/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Teamviewer/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Teamviewer/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Teamviewer/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Teamviewer/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_Teamviewer/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Teamviewer/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_Teamviewer/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_Teamviewer/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Teamviewer/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Teamviewer/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Teamviewer/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_Teamviewer/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_Teamviewer/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinRAR/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinRAR/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinRAR/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinRAR/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinRAR/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinRAR/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinRAR/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinRAR/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinRAR/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinRAR/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinRAR/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinRAR/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinRAR/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinSCP/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinSCP/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinSCP/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinSCP/Icon/icon.jpg -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinSCP/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinSCP/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinSCP/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinSCP/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinSCP/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinSCP/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinSCP/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_WinSCP/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_WinSCP/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_git/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_git/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_git/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_git/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_git/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_git/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_git/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_git/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_git/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_git/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_git/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_git/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_git/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_vscode/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_vscode/Icon/fallback.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_vscode/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_vscode/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/Choco_vscode/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_vscode/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/Choco_vscode/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/Choco_vscode/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_vscode/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_vscode/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_vscode/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/Choco_vscode/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/Choco_vscode/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/FortiClientVPN/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/FortiClientVPN/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/FortiClientVPN/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/FortiClientVPN/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/FortiClientVPN/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/FortiClientVPN/Source/FortiClientVPN.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/FortiClientVPN/Source/FortiClientVPN.mst -------------------------------------------------------------------------------- /Windows/Apps/FortiClientVPN/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/FortiClientVPN/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/FortiClientVPN/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/FortiClientVPN/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/FortiClientVPN/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/FortiClientVPN/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/README.md -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Icon/icon.png -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Autopilot/AutopilotConfigurationFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Autopilot/AutopilotConfigurationFile.json -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/PowerShell/Enable-BitLockerEncryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/PowerShell/Enable-BitLockerEncryption.ps1 -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/PowerShell/EnhanceIntuneAgentLogging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/PowerShell/EnhanceIntuneAgentLogging.ps1 -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/PowerShell/Get-AadJoinInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/PowerShell/Get-AadJoinInformation.ps1 -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/PowerShell/Install-AllMissingMicrosoftUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/PowerShell/Install-AllMissingMicrosoftUpdates.ps1 -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/PowerShell/Install-AutoPilotRelated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/PowerShell/Install-AutoPilotRelated.ps1 -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/PowerShell/Update-PowerShellModulesHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/PowerShell/Update-PowerShellModulesHelp.ps1 -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/System32/oemlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/System32/oemlogo.bmp -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Tools/cmtrace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Tools/cmtrace.exe -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Tools/enaTec_Installer.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Tools/enaTec_Installer.exe.config -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Tools/logon.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Tools/logon.bgi -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Tools/sysinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Tools/sysinfo.exe -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Wallpaper/TransparentLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Wallpaper/TransparentLogo.png -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-dark.jpg -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-light.jpg -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-dark.jpg -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-light.jpg -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/etc/hosts -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/etc/lmhosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/etc/lmhosts -------------------------------------------------------------------------------- /Windows/Apps/basepackage/Source/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/Source/setup.ps1 -------------------------------------------------------------------------------- /Windows/Apps/basepackage/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/basepackage/create.ps1 -------------------------------------------------------------------------------- /Windows/Apps/folge/Icon/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/folge/Icon/logo.ico -------------------------------------------------------------------------------- /Windows/Apps/folge/Icon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/folge/Icon/logo.png -------------------------------------------------------------------------------- /Windows/Apps/folge/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/folge/Info/Description.txt -------------------------------------------------------------------------------- /Windows/Apps/folge/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Windows/Apps/folge/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/folge/Source/Install.ps1 -------------------------------------------------------------------------------- /Windows/Apps/folge/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/folge/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Windows/Apps/folge/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Apps/folge/create.ps1 -------------------------------------------------------------------------------- /Windows/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.json -------------------------------------------------------------------------------- /Windows/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/Add-EntraUserAsLocalGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/PowerShell/Add-EntraUserAsLocalGroupMember.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/Get-DeviceAutoPilotInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/PowerShell/Get-DeviceAutoPilotInfo.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/InstallpendingWindowsUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/PowerShell/InstallpendingWindowsUpdates.ps1 -------------------------------------------------------------------------------- /Windows/PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/PowerShell/README.md -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/3rdparty/Detect - WebRTC - Detection Script - 0.2.3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/3rdparty/Detect - WebRTC - Detection Script - 0.2.3.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/3rdparty/Remediate - WebRTC - Remediation Script - 0.2.8.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/3rdparty/Remediate - WebRTC - Remediation Script - 0.2.8.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/AllowAllNETUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/AllowAllNETUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AllowNonAdminsToManageThePublicDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AllowNonAdminsToManageThePublicDesktop.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AllowSideLoadingForTrustedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AllowSideLoadingForTrustedApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AnonymousAccessHardeningLSA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AnonymousAccessHardeningLSA.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AttackSurfaceReductionRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AttackSurfaceReductionRules.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AutoPatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AutoPatch.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-AutoTimeZoneUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-AutoTimeZoneUpdate.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-BuiltInTeamsChatAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-BuiltInTeamsChatAsSystem.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-BuiltInTeamsChatAsUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-BuiltInTeamsChatAsUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-CVE-2023-36884.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-CVE-2023-36884.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-CheckDrivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-CheckDrivers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-CloudKerberosTicketRetrievalEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-CloudKerberosTicketRetrievalEnabled.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-ConfigureOneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-ConfigureOneDrive.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-CorpProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-CorpProfile.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DNSSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DNSSettings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DefenderApplicationGuard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DefenderApplicationGuard.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableBuiltInDnsClient.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableBuiltInDnsClient.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableChangingLockScreenBackgroundForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableChangingLockScreenBackgroundForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableCopilotForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableCopilotForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableDownfallSecurityMitigation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableDownfallSecurityMitigation.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableIPSourceRouting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableIPSourceRouting.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableQUIC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableQUIC.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableSMB1Protocol.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableSMB1Protocol.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableShowLockScreenBackgroundOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableShowLockScreenBackgroundOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableTLS12ForEAPAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableTLS12ForEAPAuthentication.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DisableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DisableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-DoNotDisplayLastUsernameOnSignIn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-DoNotDisplayLastUsernameOnSignIn.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableAdministratorProtection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableAdministratorProtection.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableAutomaticallyLockComputerAfterInactivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableAutomaticallyLockComputerAfterInactivity.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableEdgeAutomaticUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableEdgeAutomaticUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableOneDriveIntegration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableOneDriveIntegration.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableOrDisableWindowsCopilotForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableOrDisableWindowsCopilotForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnablePhotoViewer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnablePhotoViewer.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnablePowerThrottling.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnablePowerThrottling.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableSecureSignIn_CAD_ForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableSecureSignIn_CAD_ForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableUACPromptForBuiltInAdministratorAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableUACPromptForBuiltInAdministratorAccount.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-EnableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-EnableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-GetLatestUpdatesAsSoonAsAvailable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-GetLatestUpdatesAsSoonAsAvailable.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-GlobalSecureAccessConnectedLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-GlobalSecureAccessConnectedLocal.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-GlobalSecureAccessDefaultSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-GlobalSecureAccessDefaultSetup.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-GlobalSecureAccessSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-GlobalSecureAccessSettings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-GlobalSecureAccessUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-GlobalSecureAccessUserSettings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-HKCU_DisablePersonalSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-HKCU_DisablePersonalSync.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-HKLM_DisableNewAccountDetection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-HKLM_DisableNewAccountDetection.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-HideWSLLinuxIconFromDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-HideWSLLinuxIconFromDesktop.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-IsWVDEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-IsWVDEnvironment.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-IsWinGetInstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-IsWinGetInstalled.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-L2TPNATSupport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-L2TPNATSupport.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-L2TPNATSupportAndTweaks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-L2TPNATSupportAndTweaks.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-LLMNR-Multicast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-LLMNR-Multicast.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-LidNotifyReliable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-LidNotifyReliable.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-LockScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-LockScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MMAgent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MMAgent.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MSRDC2Insider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MSRDC2Insider.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MicrosoftDefenderConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MicrosoftDefenderConfig.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MicrosoftUpdateNoAutoUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MicrosoftUpdateNoAutoUpdate.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MicrosoftWindowsUnquotedServicePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MicrosoftWindowsUnquotedServicePath.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MitigateCVE202230190.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MitigateCVE202230190.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MitigateOutlookCrashingWorkaroundJune2025.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MitigateOutlookCrashingWorkaroundJune2025.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-MitigateSearchMS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-MitigateSearchMS.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-NCAllowNetBridgeNLA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-NCAllowNetBridgeNLA.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-NCStdDomainUserSetLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-NCStdDomainUserSetLocation.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-Netbios.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-Netbios.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-NewTeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-NewTeamsQos.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-NoCopilotPlusAndRecall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-NoCopilotPlusAndRecall.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-OfficeCopilotFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-OfficeCopilotFeatures.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-OfficeUpdateHideEnableDisableUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-OfficeUpdateHideEnableDisableUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-OneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-OneDrive.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-OneDriveDelayFlag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-OneDriveDelayFlag.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-OutdatedChocolateyApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-OutdatedChocolateyApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-OutdatedWingetApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-OutdatedWingetApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-PSModuleUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-PSModuleUpdate.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-PendingWinGetUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-PendingWinGetUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-RegisteredOwnerAndOrganization.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-RegisteredOwnerAndOrganization.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-RemoveSystemRequirementsNotMetWatermark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-RemoveSystemRequirementsNotMetWatermark.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForAllUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForAllUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-RemoveWslDesktopIcon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-RemoveWslDesktopIcon.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-RenameThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-RenameThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-SaveSentItemsInSharedMailbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-SaveSentItemsInSharedMailbox.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-SetDefenderDisableRemovableDriveScanningOff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-SetDefenderDisableRemovableDriveScanningOff.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-SetupBraveBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-SetupBraveBrowser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-SetupMicrosoftEdgeBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-SetupMicrosoftEdgeBrowser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-ShowThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-ShowThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-SystemWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-SystemWPADOverride.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TeamsFirewallPerUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TeamsFirewallPerUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TeamsQos.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TurnOffPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TurnOffPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TurnOffUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TurnOffUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TurnOnAutoEndTasksForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TurnOnAutoEndTasksForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TurnOnCoreIsolationMemoryIntegrity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TurnOnCoreIsolationMemoryIntegrity.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TurnOnPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TurnOnPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-TurnOnUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-TurnOnUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-UACAlwaysNotify.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-UACAlwaysNotify.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-UACDefault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-UACDefault.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-UACDoNotDim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-UACDoNotDim.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-UptimeToLong.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-UptimeToLong.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-UserWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-UserWPADOverride.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-VSthroughMUUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-VSthroughMUUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-WOLSurfaceStudio2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-WOLSurfaceStudio2.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-WindowsExplorerSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-WindowsExplorerSettings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-WlanfixForWindows11Release24H2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-WlanfixForWindows11Release24H2.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-localAdminEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-localAdminEnabled.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Detection-localAdminName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Detection-localAdminName.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediate-OneDriveDelayFlag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediate-OneDriveDelayFlag.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AllowNonAdminsToManageThePublicDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AllowNonAdminsToManageThePublicDesktop.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AllowSideLoadingForTrustedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AllowSideLoadingForTrustedApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AnonymousAccessHardeningLSA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AnonymousAccessHardeningLSA.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AttackSurfaceReductionRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AttackSurfaceReductionRules.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AutoPatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AutoPatch.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-AutoTimeZoneUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-AutoTimeZoneUpdate.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-BuiltInTeamsChatAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-BuiltInTeamsChatAsSystem.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-BuiltInTeamsChatAsUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-BuiltInTeamsChatAsUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-CVE-2023-36884.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-CVE-2023-36884.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-CheckDrivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-CheckDrivers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-CloudKerberosTicketRetrievalEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-CloudKerberosTicketRetrievalEnabled.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-ConfigureOneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-ConfigureOneDrive.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-CorpProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-CorpProfile.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DNSSetings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DNSSetings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DefenderApplicationGuard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DefenderApplicationGuard.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableBuiltInDnsClient.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableBuiltInDnsClient.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableChangingLockScreenBackgroundForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableChangingLockScreenBackgroundForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableCopilotForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableCopilotForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableDownfallSecurityMitigation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableDownfallSecurityMitigation.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableIPSourceRouting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableIPSourceRouting.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableQUIC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableQUIC.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableSMB1Protocol.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableSMB1Protocol.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableShowLockScreenBackgroundOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableShowLockScreenBackgroundOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableTLS12ForEAPAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableTLS12ForEAPAuthentication.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DisableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DisableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-DoNotDisplayLastUsernameOnSignIn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-DoNotDisplayLastUsernameOnSignIn.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableAdministratorProtection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableAdministratorProtection.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableAutomaticallyLockComputerAfterInactivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableAutomaticallyLockComputerAfterInactivity.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableEdgeAutomaticUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableEdgeAutomaticUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableOneDriveIntegration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableOneDriveIntegration.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableOrDisableWindowsCopilotForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableOrDisableWindowsCopilotForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnablePhotoViewer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnablePhotoViewer.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnablePowerThrottling.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnablePowerThrottling.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableSecureSignIn_CAD_ForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableSecureSignIn_CAD_ForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableUACPromptForBuiltInAdministratorAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableUACPromptForBuiltInAdministratorAccount.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-EnableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-EnableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-GetLatestUpdatesAsSoonAsAvailable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-GetLatestUpdatesAsSoonAsAvailable.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-GlobalSecureAccessConnectedLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-GlobalSecureAccessConnectedLocal.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-GlobalSecureAccessDefaultSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-GlobalSecureAccessDefaultSetup.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-GlobalSecureAccessSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-GlobalSecureAccessSettings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-GlobalSecureAccessUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-GlobalSecureAccessUserSettings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-HKCU_DisablePersonalSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-HKCU_DisablePersonalSync.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-HKLM_DisableNewAccountDetection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-HKLM_DisableNewAccountDetection.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-HideWSLLinuxIconFromDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-HideWSLLinuxIconFromDesktop.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-IsWVDEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-IsWVDEnvironment.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-IsWinGetInstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-IsWinGetInstalled.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-L2TPNATSupport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-L2TPNATSupport.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-L2TPNATSupportAndTweaks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-L2TPNATSupportAndTweaks.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-LLMNR-Multicast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-LLMNR-Multicast.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-LidNotifyReliable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-LidNotifyReliable.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-LockScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-LockScreen.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MMAgent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MMAgent.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MSRDC2Insider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MSRDC2Insider.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MicrosoftDefenderConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MicrosoftDefenderConfig.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MicrosoftUpdateNoAutoUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MicrosoftUpdateNoAutoUpdate.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MicrosoftWindowsUnquotedServicePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MicrosoftWindowsUnquotedServicePath.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MitigateCVE202230190.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MitigateCVE202230190.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MitigateOutlookCrashingWorkaroundJune2025.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MitigateOutlookCrashingWorkaroundJune2025.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-MitigateSearchMS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-MitigateSearchMS.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-NCAllowNetBridgeNLA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-NCAllowNetBridgeNLA.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-NCStdDomainUserSetLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-NCStdDomainUserSetLocation.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-Netbios.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-Netbios.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-NewTeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-NewTeamsQos.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-NoCopilotPlusAndRecall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-NoCopilotPlusAndRecall.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-OfficeCopilotFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-OfficeCopilotFeatures.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-OfficeUpdateHideEnableDisableUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-OfficeUpdateHideEnableDisableUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-OneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-OneDrive.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-OneDriveDelayFlag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-OneDriveDelayFlag.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-OutdatedChocolateyApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-OutdatedChocolateyApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-OutdatedWingetApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-OutdatedWingetApps.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-PSModuleUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-PSModuleUpdate.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-PendingWinGetUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-PendingWinGetUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-RegisteredOwnerAndOrganization.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-RegisteredOwnerAndOrganization.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-RemoveSystemRequirementsNotMetWatermark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-RemoveSystemRequirementsNotMetWatermark.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForAllUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForAllUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-RemoveWslDesktopIcon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-RemoveWslDesktopIcon.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-RenameThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-RenameThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-SaveSentItemsInSharedMailbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-SaveSentItemsInSharedMailbox.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-SetDefenderDisableRemovableDriveScanningOff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-SetDefenderDisableRemovableDriveScanningOff.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-SetupBraveBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-SetupBraveBrowser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-SetupMicrosoftEdgeBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-SetupMicrosoftEdgeBrowser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-ShowThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-ShowThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-SystemWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-SystemWPADOverride.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TeamsFirewallPerUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TeamsFirewallPerUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TeamsQos.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TurnOffPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TurnOffPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TurnOffUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TurnOffUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TurnOnAutoEndTasksForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TurnOnAutoEndTasksForAllUsers.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TurnOnCoreIsolationMemoryIntegrity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TurnOnCoreIsolationMemoryIntegrity.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TurnOnPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TurnOnPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-TurnOnUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-TurnOnUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-UACAlwaysNotify.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-UACAlwaysNotify.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-UACDefault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-UACDefault.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-UACDoNotDim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-UACDoNotDim.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-UptimeToLong.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-UptimeToLong.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-UserWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-UserWPADOverride.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-VSthroughMUUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-VSthroughMUUpdates.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-WOLSurfaceStudio2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-WOLSurfaceStudio2.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-WindowsExplorerSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-WindowsExplorerSettings.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-WlanfixForWindows11Release24H2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-WlanfixForWindows11Release24H2.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-localAdminEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-localAdminEnabled.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation-localAdminName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation-localAdminName.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/Remediation_StarfaceAutoUpdateFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/Remediation_StarfaceAutoUpdateFeature.ps1 -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/images/remediations_lic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/images/remediations_lic1.png -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/images/remediations_lic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/images/remediations_lic2.png -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/readme.md -------------------------------------------------------------------------------- /Windows/ProactiveRemediations/remediate-LsaHardening.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/Windows/ProactiveRemediations/remediate-LsaHardening.ps1 -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/fetchMSCompanyPortalVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/fetchMSCompanyPortalVersion.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/fetchMSDefenderVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/fetchMSDefenderVersion.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/fetchMSTeamsVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/fetchMSTeamsVersion.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getActivationLockStatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getActivationLockStatus.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getBatteryCapacity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getBatteryCapacity.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getBatteryCycleCount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getBatteryCycleCount.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getBatteryHealty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getBatteryHealty.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getBootstrapTokenEscrowStatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getBootstrapTokenEscrowStatus.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getLastBootTime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getLastBootTime.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getMacBookModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getMacBookModel.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getMemory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getMemory.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getProcessorType.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getProcessorType.sh -------------------------------------------------------------------------------- /macOS/CustomAttributesScripts/getUptime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/CustomAttributesScripts/getUptime.sh -------------------------------------------------------------------------------- /macOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/README.md -------------------------------------------------------------------------------- /macOS/Scripts/Intune-MacOS-pspolicy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enatec/MicrosoftEndpointManager/HEAD/macOS/Scripts/Intune-MacOS-pspolicy.sh --------------------------------------------------------------------------------