├── Autopilot ├── Add-GroupTagToAllAPDevices.ps1 ├── BrokenAutopilotDeviceCleanup.ps1 └── changelog.MD ├── Azure └── AzureNetworkRequirements │ └── Test-AzureNetworkRequirements ├── Entra ├── Create-RandomUsersUsingGraph.ps1 └── changelog.md ├── GlobalSecureAccess ├── Get-GSAPolicyRuleIDandName.ps1 ├── Script-ShowSignOutAndDisablePrivateAccessButton.ps1 └── changelog.md ├── Intune ├── Autopatch │ └── Autopatch-FindFUEnrollingDevices.ps1 ├── Custom Compliance │ ├── Compliance_SentinelOne.json │ └── Compliance_SentinelOne.ps1 ├── IntuneNetworkRequirements │ └── readme.md ├── Other │ ├── AutopilotDualDeviceFinder.ps1 │ ├── Connect-SettingsCatalog-To-Group.ps1 │ ├── Convert-PolicySet.ps1 │ ├── List-EAMApplications.ps1 │ ├── Rename-ComputerRandomizer.ps1 │ ├── ScriptWrapper.ps1 │ ├── Search-IntuneSetting.ps1 │ ├── Win32App-Wait.ps1 │ └── changelog.md ├── Platform Scripts │ ├── Reset-WindowsUpdateSettings.ps1 │ ├── Set-BackgroundWallpaperAsUser.ps1 │ ├── Set-TimeZoneUsingAzureMaps.ps1 │ └── changelog.md ├── README.MD ├── Remediations │ ├── Detect-DisableDomainCreds.ps1 │ ├── Detect-DisableWPADService.ps1 │ ├── Detect-DisableWebDavService.ps1 │ ├── Detect-NewOutlookDEVICE.ps1 │ ├── Detect-NewOutlookUSER.ps1 │ ├── Detect-PrintToPDFandXPS.ps1 │ ├── Remediate-DisableDomainCreds.ps1 │ ├── Remediate-DisableWPADService.ps1 │ ├── Remediate-DisableWebDavService.ps1 │ ├── Remediate-NewOutlookDEVICE.ps1 │ ├── Remediate-NewOutlookUSER.ps1 │ └── Remediate-PrintToPDFandXPS.ps1 └── Runbooks │ ├── Add-ExcludeTagToEntraDeviceFromGroup.ps1 │ ├── Add-InfoToEntraDeviceExtensions.ps1 │ ├── README.md │ └── changelog.md ├── LICENSE └── Windows Migration └── Windows11BasicInformationCollection.ps1 /Autopilot/Add-GroupTagToAllAPDevices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Autopilot/Add-GroupTagToAllAPDevices.ps1 -------------------------------------------------------------------------------- /Autopilot/BrokenAutopilotDeviceCleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Autopilot/BrokenAutopilotDeviceCleanup.ps1 -------------------------------------------------------------------------------- /Autopilot/changelog.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Autopilot/changelog.MD -------------------------------------------------------------------------------- /Azure/AzureNetworkRequirements/Test-AzureNetworkRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Azure/AzureNetworkRequirements/Test-AzureNetworkRequirements -------------------------------------------------------------------------------- /Entra/Create-RandomUsersUsingGraph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Entra/Create-RandomUsersUsingGraph.ps1 -------------------------------------------------------------------------------- /Entra/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Entra/changelog.md -------------------------------------------------------------------------------- /GlobalSecureAccess/Get-GSAPolicyRuleIDandName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/GlobalSecureAccess/Get-GSAPolicyRuleIDandName.ps1 -------------------------------------------------------------------------------- /GlobalSecureAccess/Script-ShowSignOutAndDisablePrivateAccessButton.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/GlobalSecureAccess/Script-ShowSignOutAndDisablePrivateAccessButton.ps1 -------------------------------------------------------------------------------- /GlobalSecureAccess/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/GlobalSecureAccess/changelog.md -------------------------------------------------------------------------------- /Intune/Autopatch/Autopatch-FindFUEnrollingDevices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Autopatch/Autopatch-FindFUEnrollingDevices.ps1 -------------------------------------------------------------------------------- /Intune/Custom Compliance/Compliance_SentinelOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Custom Compliance/Compliance_SentinelOne.json -------------------------------------------------------------------------------- /Intune/Custom Compliance/Compliance_SentinelOne.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Custom Compliance/Compliance_SentinelOne.ps1 -------------------------------------------------------------------------------- /Intune/IntuneNetworkRequirements/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/IntuneNetworkRequirements/readme.md -------------------------------------------------------------------------------- /Intune/Other/AutopilotDualDeviceFinder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/AutopilotDualDeviceFinder.ps1 -------------------------------------------------------------------------------- /Intune/Other/Connect-SettingsCatalog-To-Group.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/Connect-SettingsCatalog-To-Group.ps1 -------------------------------------------------------------------------------- /Intune/Other/Convert-PolicySet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/Convert-PolicySet.ps1 -------------------------------------------------------------------------------- /Intune/Other/List-EAMApplications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/List-EAMApplications.ps1 -------------------------------------------------------------------------------- /Intune/Other/Rename-ComputerRandomizer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/Rename-ComputerRandomizer.ps1 -------------------------------------------------------------------------------- /Intune/Other/ScriptWrapper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/ScriptWrapper.ps1 -------------------------------------------------------------------------------- /Intune/Other/Search-IntuneSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/Search-IntuneSetting.ps1 -------------------------------------------------------------------------------- /Intune/Other/Win32App-Wait.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/Win32App-Wait.ps1 -------------------------------------------------------------------------------- /Intune/Other/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Other/changelog.md -------------------------------------------------------------------------------- /Intune/Platform Scripts/Reset-WindowsUpdateSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Platform Scripts/Reset-WindowsUpdateSettings.ps1 -------------------------------------------------------------------------------- /Intune/Platform Scripts/Set-BackgroundWallpaperAsUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Platform Scripts/Set-BackgroundWallpaperAsUser.ps1 -------------------------------------------------------------------------------- /Intune/Platform Scripts/Set-TimeZoneUsingAzureMaps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Platform Scripts/Set-TimeZoneUsingAzureMaps.ps1 -------------------------------------------------------------------------------- /Intune/Platform Scripts/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Platform Scripts/changelog.md -------------------------------------------------------------------------------- /Intune/README.MD: -------------------------------------------------------------------------------- 1 | # Warning notice 2 | 3 | Tools around Intune - use at your own risk! 4 | -------------------------------------------------------------------------------- /Intune/Remediations/Detect-DisableDomainCreds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Detect-DisableDomainCreds.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Detect-DisableWPADService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Detect-DisableWPADService.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Detect-DisableWebDavService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Detect-DisableWebDavService.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Detect-NewOutlookDEVICE.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Detect-NewOutlookDEVICE.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Detect-NewOutlookUSER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Detect-NewOutlookUSER.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Detect-PrintToPDFandXPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Detect-PrintToPDFandXPS.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Remediate-DisableDomainCreds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Remediate-DisableDomainCreds.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Remediate-DisableWPADService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Remediate-DisableWPADService.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Remediate-DisableWebDavService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Remediate-DisableWebDavService.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Remediate-NewOutlookDEVICE.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Remediate-NewOutlookDEVICE.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Remediate-NewOutlookUSER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Remediate-NewOutlookUSER.ps1 -------------------------------------------------------------------------------- /Intune/Remediations/Remediate-PrintToPDFandXPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Remediations/Remediate-PrintToPDFandXPS.ps1 -------------------------------------------------------------------------------- /Intune/Runbooks/Add-ExcludeTagToEntraDeviceFromGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Runbooks/Add-ExcludeTagToEntraDeviceFromGroup.ps1 -------------------------------------------------------------------------------- /Intune/Runbooks/Add-InfoToEntraDeviceExtensions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Runbooks/Add-InfoToEntraDeviceExtensions.ps1 -------------------------------------------------------------------------------- /Intune/Runbooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Runbooks/README.md -------------------------------------------------------------------------------- /Intune/Runbooks/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Intune/Runbooks/changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /Windows Migration/Windows11BasicInformationCollection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MHimken/toolbox/HEAD/Windows Migration/Windows11BasicInformationCollection.ps1 --------------------------------------------------------------------------------