├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── general.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── linter.__yml.disabled ├── .gitignore ├── .gitmodules ├── ActiveDirectory ├── Convert-ADDistinguishedNameForAllUser.ps1 ├── Copy-ADGroupUserMembership.ps1 ├── Copy-ADUserGroupMembership.ps1 ├── Copy-ADUserGroupMembershipSimple.ps1 ├── Export-ADSyncConnectorInformation.ps1 ├── Find-enADDuplicateServicePrincipalName.ps1 ├── Get-ADUserLockout.ps1 ├── Get-enADDNSServerInformation.ps1 ├── Get-enADDomainControllerInfo.ps1 ├── Get-enADFSMORole.ps1 ├── Get-enADForestInformation.ps1 ├── Get-enADGPOReplication.ps1 ├── Get-enADGroupChange.ps1 ├── Get-enADObject.ps1 ├── Get-enADServicePrincipalName.ps1 ├── Get-enADSiteAndSubnet.ps1 ├── Get-enDomainInfo.ps1 ├── LICENSE ├── README.md ├── Set-ADAllUserPicture.ps1 └── Set-ADServerUsage.ps1 ├── AdvancedInstaller ├── Invoke-AdvancedInstallerUpdate.ps1 └── LICENSE ├── AzureAD ├── Add-LocalDeviceAdmin.ps1 ├── Convert-AzureADObjectIdToSid.ps1 ├── Convert-AzureADSidToObjectId.ps1 ├── Get-AzureADTeantIdForDomain.ps1 ├── Get-AzureADUserDevices.ps1 ├── LICENSE ├── Remove-AzureADDevicesWithNoOwner.ps1 └── Remove-AzureADInactiveDevices.ps1 ├── BGInfo ├── Invoke-InstallCustomBGInfo.ps1 └── enserver.bgi ├── BitLocker ├── Get-DsRegStatusInfo.ps1 ├── Invoke-BackupBitlockerRecoveryKey.ps1 ├── LICENSE └── New-BitlockerRecoveryKey.ps1 ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Exchange ├── CleanupExchangeLogs.ps1 ├── Clear-LogFileDirectory.ps1 ├── Enable-ModernAuth-Exchange.ps1 ├── Get-ADExchangeServers.ps1 ├── Get-HafniumReports.ps1 ├── Invoke-UpdateAllExchangeAdressBooks.ps1 ├── LICENSE ├── README.md └── Remove-AntiSpamAgents.ps1 ├── ExchangeNodeMaintenanceMode └── readme.md ├── ExchangeOnline ├── Approve-CASMailboxSettings.ps1 ├── Export-DistributionGroup2Cloud.ps1 ├── Get-MobileDeviceReporting.ps1 ├── Get-enMailboxFolderPermission.ps1 ├── Get-enMailboxFolderPermissionReport.ps1 ├── Get-enMailboxPermissionReport.ps1 ├── Get-enMailboxSendAsReport.ps1 ├── LICENSE ├── Search-MailboxItemDeletion.ps1 └── Set-ExchangeSaveSentItemsInSharedMailbox.ps1 ├── Graph └── Get-GraphGuestReportsInEntra.ps1 ├── Intune ├── 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 │ ├── FeatureUpdateAppraisal-Detection.ps1 │ ├── FeatureUpdateAppraisal-Remediation.ps1 │ ├── Remediate-NewTeamsQos.ps1 │ ├── Remediate-OneDriveDelayFlag.ps1 │ ├── Remediate-TeamsFirewallPerUser.ps1 │ ├── Remediate-TeamsQos.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 │ ├── RemoteDesktopMultimediaRedirectionUpdater-Detection.ps1 │ ├── RemoteDesktopMultimediaRedirectionUpdater-Remediation.ps1 │ ├── images │ │ ├── remediations_lic1.png │ │ └── remediations_lic2.png │ ├── readme.md │ └── remediate-LsaHardening.ps1 └── readme.md ├── LICENSE ├── Microsoft365 ├── ConditionalAccessNamedLocationToolingForGraph.ps1 ├── Convert-HolidayFromApiToCsAutoAttendantHolidays.ps1 ├── ConvertFrom-SafeLinksURL.ps1 ├── Convert_O365_SKUs_and_Services.ps1 ├── Disable-AzAccountLinkingExperience.ps1 ├── Find-AdminAssignedLicenses.ps1 ├── FixPersonalSPOSite.ps1 ├── Get-MFAUserReport.ps1 ├── Get-Microsoft365LicenseIdNames.ps1 ├── Get-MicrosoftCloudTenantInfo.ps1 ├── Get-MicrosoftWhiteboardReport.ps1 ├── Get-O365MailboxServerDatacenterLocation.ps1 ├── Get-Office365Endpoints.ps1 ├── Get-OneDriveUsageReport.ps1 ├── Initialize-ActivityAlertSet.ps1 ├── Initialize-ProtectionAlertSet.ps1 ├── Invoke-GetAzureADAuditSignInLogs.ps1 ├── LICENSE ├── ReplaceDomainForAllUnifiedGroups.ps1 ├── Set-AzureADNamingPolicyForOffice365Groups.ps1 ├── Set-MicrosoftNewWhiteboardOwner.ps1 ├── Set-Office365GroupMailAddress.ps1 ├── Set-bdcMsolMFAState.ps1 ├── Setup-MSCommerceProductPolicies.ps1 ├── TweakSafeLinksPolicy.ps1 └── bootstrap-Office365Tenant.ps1 ├── MicrosoftTeams ├── Clear-MicrosoftTeamsClientCache.ps1 ├── Default_MicrosoftTeams_DesktopConfig.ps1 ├── Get-AllExternalTeamsApps.ps1 ├── Get-TeamsAssignedNumbers.ps1 ├── Get-TeamsServiceNumbers.ps1 ├── Get-bdcMicrosoftTeamsReporting.ps1 ├── Invoke-BootstrapTeamsPoliciesForATenant.ps1 ├── Invoke-OptimizeAppsForTerminalService.ps1 ├── Invoke-TweakTeamsClientFirewall.ps1 ├── Invoke-mtrDisableModernAuthentication.ps1 ├── LICENSE ├── New-AITMicrosoftTeams.ps1 ├── ProjectTeamStructure.ps1 ├── RemoveWiki.ps1 ├── ReplaceDomainForAllUnifiedGroups.ps1 ├── Set-QoSForMicrosoftTeams.ps1 ├── Set-QoSForMicrosoftTeamsRoomDevices.ps1 ├── Set-TeamsAudioVideoPermissionInBrowser.ps1 ├── SetupTeamsRoom.ps1 ├── Update-UnifiedGroupsToTeams.ps1 └── enable-AttendanceListMicrosoftTeams.ps1 ├── Misc ├── Bootstrap-MicrosoftDefenderConfiguration │ ├── Bootstrap-MicrosoftDefenderConfiguration.csv │ ├── Bootstrap-MicrosoftDefenderConfiguration.ps1 │ ├── LICENSE │ └── Readme.md ├── Check-ServiceMonitor.ps1 ├── Clear-EnAllEventLogs.ps1 ├── Clear-EnAllEventLogs_TESTS.ps1 ├── Clear-EnAllEventLogs_v2.ps1 ├── DisableDotNetTelemetry.ps1 ├── Enable-DNSOverHTTPS.ps1 ├── Find-Log4jVulnerabilities.ps1 ├── ForceTimeResync.ps1 ├── Generate-Dynamic-LockScreen-Wallpaper-During-Installation.ps1 ├── Get-AllCookiesFromWebRequestSession.ps1 ├── Get-BadFontPaths.ps1 ├── Get-DateIntervalHumanReadable.ps1 ├── Get-DirectorySize.ps1 ├── Get-DotNetExecutableVersion.ps1 ├── Get-FritzBoxEvents.ps1 ├── Get-IPv6InWindows.ps1 ├── Get-IpInfo.ps1 ├── Get-LocalGroupMembership.ps1 ├── Get-LocalIpAddresses.ps1 ├── Get-MyIpAddress.ps1 ├── Get-OneDriveSizeOnDisk.ps1 ├── Get-OutdatedPowerShellModules.ps1 ├── Get-RunAsAdmin.ps1 ├── Get-RunAsSystem.ps1 ├── Get-WellKnownAAGUIDs.ps1 ├── Get-WindowsBuildForMigrationSupport__SNIPPET.ps1 ├── Get-etLatestNuGetRelease.ps1 ├── Grant-LogOnAsService.ps1 ├── Hosts_helper.ps1 ├── Install-DSCResourceKit.ps1 ├── Install-SysInternalsSuite.ps1 ├── Invoke-ApplyBasicTweakWindows11.ps1 ├── Invoke-CVE202221907handling.ps1 ├── Invoke-CheckPowerShellModules.ps1 ├── Invoke-CleanupOldGalleryModuleVersions.ps1 ├── Invoke-CleanupTestVM.ps1 ├── Invoke-CloudFlareDDNSUpdate.ps1 ├── Invoke-DSCPerfReqConfigCheck.ps1 ├── Invoke-DotNetToolingUpgradeAll.ps1 ├── Invoke-ExportDrivers.ps1 ├── Invoke-FritzBoxSmartHomePrototyping.ps1 ├── Invoke-InstallNewTeamsClientOnWindows365.ps1 ├── Invoke-InstallWindowsTerminalFromGitHub.ps1 ├── Invoke-KeepYouGreenInTheNewMicrosoftTeams.ps1 ├── Invoke-MitigateCVE202230190.ps1 ├── Invoke-PSReadlineHistoryHandler.ps1 ├── Invoke-PSWindowsUpdateWrapper.ps1 ├── Invoke-SSHConnect.ps1 ├── Invoke-ScanForCVE20223602.ps1 ├── Invoke-SetNetworkToPreferIPv4OverIPv6.ps1 ├── Invoke-ShrinkADSyncSqlDatabase.ps1 ├── Invoke-SpeedtestCLI.ps1 ├── Invoke-SpeedtestViaCli.ps1 ├── Invoke-UpdateAllGalleryModules.ps1 ├── Invoke-Windows11HardwareReadinessCheck.ps1 ├── Invoke-dotNETNativeImageGeneratorRecompile.ps1 ├── LICENSE ├── New-ComputerCheckpoint.ps1 ├── Optimize-MicrosoftDefenderExclusions.ps1 ├── Optimize-MicrosoftDefenderExclusionsForMicrosoftTeams.ps1 ├── Out-ZipArchive.ps1 ├── PowerShell_PSTypeNames_and_custom_FormatData.ps1 ├── Publish-BitbucketDownload.ps1 ├── Remove-FileEndingBlankLines.ps1 ├── Remove-SendToOneNoteLnk.ps1 ├── Remove-Signature.ps1 ├── Resolve-DNSHost.ps1 ├── Set-AllowPingAndRemoteDesktop.ps1 ├── Set-ChromeDefaultPreferences.ps1 ├── Set-DesktopBackGroundColor.ps1 ├── Set-DisplayBrightness.ps1 ├── Set-IPv6InWindows.ps1 ├── Set-NtpTime.ps1 ├── Set-PowerPlanToAuto.ps1 ├── Set-PowerPlanToHighPerformance.ps1 ├── Set-PreventOutlookIndexing.ps1 ├── Set-PublishUserActivities.ps1 ├── Subscribe-LogonLogoffEvents.ps1 ├── Test-IsAdmin.ps1 ├── Test-Port.ps1 ├── Test-ValidEmail.ps1 ├── Transfer_PSGallery_Installed_Modules.ps1 ├── Tweak_UDPforFastSend.ps1 ├── UnixTimeStampTools.ps1 ├── Update-BootWIM.ps1 ├── Update-ModuleFromPSGallery.ps1 ├── invoke-CPUWorkload.ps1 ├── invoke-GetDSCResources.ps1 └── invoke-ModuleMaint.ps1 ├── Office_Related ├── Force_Office_Click2Run-Update.ps1 ├── LICENSE ├── README.md ├── Set-OfficeInsider.ps1 ├── Set-PreventBingInstallRegistryKey.ps1 └── Set-PreventBingInstallRegistryKey_splat.ps1 ├── README.md ├── SECURITY.md ├── Skype_for_Business ├── Collect-CsClientLogs.ps1 ├── Get-CsActiveConferences.ps1 ├── Invoke-FindS4BUsersToDisable.ps1 ├── LICENSE ├── QoS │ ├── Client_GPO.ps1 │ ├── Edge_REG.ps1 │ ├── ExchangeUM_GPO.ps1 │ ├── LICENSE │ ├── Server_GPO.ps1 │ ├── Skype_Server_Config.ps1 │ ├── readme.md │ └── readme_old.md ├── Set-Skype4BProxyUsage.ps1 ├── Test-LyncSRVRecords.ps1 ├── readme.md └── rms4bcert │ ├── LICENSE │ ├── bin │ └── x64 │ │ ├── LICENSE │ │ ├── rms4bcert.exe │ │ └── rms4bcert.exe.config │ ├── rms4bcert.ps1 │ └── rms4bcert.ps1.psbuild ├── UniFiTooling └── readme.md ├── WSUS ├── Approve-WSUSDefinitionUpdates.ps1 ├── Approve-WSUSLicenseAgreementAcceptance.ps1 ├── LICENSE └── README.md ├── Windows11 ├── Invoke-ForceRemoveMicrosoft365AppAndOneNote.ps1 ├── Invoke-GetComputerRestorePoint.ps1 ├── Invoke-NativeImageGeneratorTool.ps1 ├── Invoke-RemoveBitLockerGroupPolicySettings.ps1 ├── Invoke-RemoveUnwantedApps.ps1 ├── Invoke-SetNetworkToPreferIPv4OverIPv6.ps1 ├── Set-DisplayBrightness.ps1 └── Set-WiFiRandomMacState.ps1 ├── bdc.MtrTooling └── readme.md └── bdcBusylight ├── LICENSE ├── bdcBusylight.ps1 └── readme.md /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/.github/ISSUE_TEMPLATE/general.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/linter.__yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/.github/workflows/linter.__yml.disabled -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ActiveDirectory/Convert-ADDistinguishedNameForAllUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Convert-ADDistinguishedNameForAllUser.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Copy-ADGroupUserMembership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Copy-ADGroupUserMembership.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Copy-ADUserGroupMembership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Copy-ADUserGroupMembership.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Copy-ADUserGroupMembershipSimple.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Copy-ADUserGroupMembershipSimple.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Export-ADSyncConnectorInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Export-ADSyncConnectorInformation.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Find-enADDuplicateServicePrincipalName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Find-enADDuplicateServicePrincipalName.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-ADUserLockout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-ADUserLockout.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADDNSServerInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADDNSServerInformation.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADDomainControllerInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADDomainControllerInfo.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADFSMORole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADFSMORole.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADForestInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADForestInformation.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADGPOReplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADGPOReplication.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADGroupChange.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADGroupChange.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADObject.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADServicePrincipalName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADServicePrincipalName.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enADSiteAndSubnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enADSiteAndSubnet.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Get-enDomainInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Get-enDomainInfo.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/LICENSE -------------------------------------------------------------------------------- /ActiveDirectory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/README.md -------------------------------------------------------------------------------- /ActiveDirectory/Set-ADAllUserPicture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Set-ADAllUserPicture.ps1 -------------------------------------------------------------------------------- /ActiveDirectory/Set-ADServerUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ActiveDirectory/Set-ADServerUsage.ps1 -------------------------------------------------------------------------------- /AdvancedInstaller/Invoke-AdvancedInstallerUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AdvancedInstaller/Invoke-AdvancedInstallerUpdate.ps1 -------------------------------------------------------------------------------- /AdvancedInstaller/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AdvancedInstaller/LICENSE -------------------------------------------------------------------------------- /AzureAD/Add-LocalDeviceAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/Add-LocalDeviceAdmin.ps1 -------------------------------------------------------------------------------- /AzureAD/Convert-AzureADObjectIdToSid.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/Convert-AzureADObjectIdToSid.ps1 -------------------------------------------------------------------------------- /AzureAD/Convert-AzureADSidToObjectId.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/Convert-AzureADSidToObjectId.ps1 -------------------------------------------------------------------------------- /AzureAD/Get-AzureADTeantIdForDomain.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/Get-AzureADTeantIdForDomain.ps1 -------------------------------------------------------------------------------- /AzureAD/Get-AzureADUserDevices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/Get-AzureADUserDevices.ps1 -------------------------------------------------------------------------------- /AzureAD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/LICENSE -------------------------------------------------------------------------------- /AzureAD/Remove-AzureADDevicesWithNoOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/Remove-AzureADDevicesWithNoOwner.ps1 -------------------------------------------------------------------------------- /AzureAD/Remove-AzureADInactiveDevices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/AzureAD/Remove-AzureADInactiveDevices.ps1 -------------------------------------------------------------------------------- /BGInfo/Invoke-InstallCustomBGInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/BGInfo/Invoke-InstallCustomBGInfo.ps1 -------------------------------------------------------------------------------- /BGInfo/enserver.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/BGInfo/enserver.bgi -------------------------------------------------------------------------------- /BitLocker/Get-DsRegStatusInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/BitLocker/Get-DsRegStatusInfo.ps1 -------------------------------------------------------------------------------- /BitLocker/Invoke-BackupBitlockerRecoveryKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/BitLocker/Invoke-BackupBitlockerRecoveryKey.ps1 -------------------------------------------------------------------------------- /BitLocker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/BitLocker/LICENSE -------------------------------------------------------------------------------- /BitLocker/New-BitlockerRecoveryKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/BitLocker/New-BitlockerRecoveryKey.ps1 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Exchange/CleanupExchangeLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/CleanupExchangeLogs.ps1 -------------------------------------------------------------------------------- /Exchange/Clear-LogFileDirectory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/Clear-LogFileDirectory.ps1 -------------------------------------------------------------------------------- /Exchange/Enable-ModernAuth-Exchange.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/Enable-ModernAuth-Exchange.ps1 -------------------------------------------------------------------------------- /Exchange/Get-ADExchangeServers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/Get-ADExchangeServers.ps1 -------------------------------------------------------------------------------- /Exchange/Get-HafniumReports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/Get-HafniumReports.ps1 -------------------------------------------------------------------------------- /Exchange/Invoke-UpdateAllExchangeAdressBooks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/Invoke-UpdateAllExchangeAdressBooks.ps1 -------------------------------------------------------------------------------- /Exchange/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/LICENSE -------------------------------------------------------------------------------- /Exchange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/README.md -------------------------------------------------------------------------------- /Exchange/Remove-AntiSpamAgents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Exchange/Remove-AntiSpamAgents.ps1 -------------------------------------------------------------------------------- /ExchangeNodeMaintenanceMode/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeNodeMaintenanceMode/readme.md -------------------------------------------------------------------------------- /ExchangeOnline/Approve-CASMailboxSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Approve-CASMailboxSettings.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/Export-DistributionGroup2Cloud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Export-DistributionGroup2Cloud.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/Get-MobileDeviceReporting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Get-MobileDeviceReporting.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/Get-enMailboxFolderPermission.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Get-enMailboxFolderPermission.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/Get-enMailboxFolderPermissionReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Get-enMailboxFolderPermissionReport.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/Get-enMailboxPermissionReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Get-enMailboxPermissionReport.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/Get-enMailboxSendAsReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Get-enMailboxSendAsReport.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/LICENSE -------------------------------------------------------------------------------- /ExchangeOnline/Search-MailboxItemDeletion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Search-MailboxItemDeletion.ps1 -------------------------------------------------------------------------------- /ExchangeOnline/Set-ExchangeSaveSentItemsInSharedMailbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/ExchangeOnline/Set-ExchangeSaveSentItemsInSharedMailbox.ps1 -------------------------------------------------------------------------------- /Graph/Get-GraphGuestReportsInEntra.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Graph/Get-GraphGuestReportsInEntra.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Busylight4MSTeams/Icon/Product_omega_Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Busylight4MSTeams/Icon/Product_omega_Alpha.png -------------------------------------------------------------------------------- /Intune/Apps/Busylight4MSTeams/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Busylight4MSTeams/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Busylight4MSTeams/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Busylight4MSTeams/Source/Busylight4MS_Teams_Setup.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Busylight4MSTeams/Source/Busylight4MS_Teams_Setup.mst -------------------------------------------------------------------------------- /Intune/Apps/Busylight4MSTeams/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Busylight4MSTeams/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Busylight4MSTeams/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Busylight4MSTeams/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Busylight4MSTeams/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Busylight4MSTeams/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/ChocoInstaller/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/ChocoInstaller/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/ChocoInstaller/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/ChocoInstaller/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/ChocoInstaller/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/ChocoInstaller/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/ChocoInstaller/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/ChocoInstaller/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/ChocoInstaller/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/ChocoInstaller/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/ChocoInstaller/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/ChocoInstaller/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/ChocoInstaller/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_7Zip/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_7Zip/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_7Zip/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_7Zip/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_7Zip/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_7Zip/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_7Zip/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_7Zip/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_7Zip/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_7Zip/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_7Zip/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_7Zip/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_7Zip/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_AcrobatReaderDC/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_AcrobatReaderDC/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_AcrobatReaderDC/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_AcrobatReaderDC/Icon/icon.jpg -------------------------------------------------------------------------------- /Intune/Apps/Choco_AcrobatReaderDC/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_AcrobatReaderDC/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_AcrobatReaderDC/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_AcrobatReaderDC/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_AcrobatReaderDC/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_AcrobatReaderDC/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_AcrobatReaderDC/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_AcrobatReaderDC/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_AcrobatReaderDC/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Audacity/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Audacity/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Audacity/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Audacity/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Audacity/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Audacity/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_Audacity/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_Audacity/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Audacity/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Audacity/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Audacity/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Audacity/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Audacity/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_FileZilla/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_FileZilla/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_FileZilla/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_FileZilla/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_FileZilla/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_FileZilla/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_FileZilla/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_FileZilla/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_FileZilla/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_FileZilla/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_FileZilla/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_FileZilla/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_FileZilla/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Foxitreader/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Foxitreader/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Foxitreader/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Foxitreader/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Foxitreader/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Foxitreader/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_Foxitreader/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_Foxitreader/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Foxitreader/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Foxitreader/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Foxitreader/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Foxitreader/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Foxitreader/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Greenshot/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Greenshot/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Greenshot/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Greenshot/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Greenshot/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Greenshot/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_Greenshot/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_Greenshot/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Greenshot/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Greenshot/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Greenshot/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Greenshot/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Greenshot/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_HPSupportAssistant/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_HPSupportAssistant/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_HPSupportAssistant/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_HPSupportAssistant/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_HPSupportAssistant/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_HPSupportAssistant/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_HPSupportAssistant/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_HPSupportAssistant/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_HPSupportAssistant/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_HPSupportAssistant/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_HPSupportAssistant/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_HPSupportAssistant/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_HPSupportAssistant/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_KeePass2/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_KeePass2/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_KeePass2/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_KeePass2/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_KeePass2/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_KeePass2/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_KeePass2/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_KeePass2/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_KeePass2/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_KeePass2/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_KeePass2/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_KeePass2/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_KeePass2/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MicrosoftTeamsDesktopApp/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MicrosoftTeamsDesktopApp/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MicrosoftTeamsDesktopApp/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MobaXTerm/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MobaXTerm/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_MobaXTerm/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MobaXTerm/Icon/icon.jpg -------------------------------------------------------------------------------- /Intune/Apps/Choco_MobaXTerm/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MobaXTerm/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_MobaXTerm/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_MobaXTerm/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MobaXTerm/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MobaXTerm/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MobaXTerm/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MobaXTerm/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MobaXTerm/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MozillaFirefox/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MozillaFirefox/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_MozillaFirefox/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MozillaFirefox/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_MozillaFirefox/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MozillaFirefox/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_MozillaFirefox/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_MozillaFirefox/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MozillaFirefox/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MozillaFirefox/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MozillaFirefox/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_MozillaFirefox/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_MozillaFirefox/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_NextcloudDesktopClient/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_NextcloudDesktopClient/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_NextcloudDesktopClient/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_NextcloudDesktopClient/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_NextcloudDesktopClient/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_NextcloudDesktopClient/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_NextcloudDesktopClient/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_NextcloudDesktopClient/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_NextcloudDesktopClient/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_NextcloudDesktopClient/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_NextcloudDesktopClient/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_NextcloudDesktopClient/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_NextcloudDesktopClient/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Notepad++/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Notepad++/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Notepad++/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Notepad++/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Notepad++/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Notepad++/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_Notepad++/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_Notepad++/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Notepad++/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Notepad++/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Notepad++/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Notepad++/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Notepad++/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PDF24Creator/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PDF24Creator/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_PDF24Creator/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PDF24Creator/Icon/icon.jpg -------------------------------------------------------------------------------- /Intune/Apps/Choco_PDF24Creator/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PDF24Creator/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_PDF24Creator/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_PDF24Creator/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PDF24Creator/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PDF24Creator/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PDF24Creator/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PDF24Creator/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PDF24Creator/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PlantronicsHub/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PlantronicsHub/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_PlantronicsHub/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PlantronicsHub/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_PlantronicsHub/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PlantronicsHub/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_PlantronicsHub/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_PlantronicsHub/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PlantronicsHub/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PlantronicsHub/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PlantronicsHub/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PlantronicsHub/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PlantronicsHub/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Postman/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Postman/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Postman/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Postman/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Postman/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/Source/postInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Postman/Source/postInstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Postman/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Postman/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PuTTY/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PuTTY/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_PuTTY/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PuTTY/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_PuTTY/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PuTTY/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_PuTTY/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_PuTTY/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PuTTY/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PuTTY/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PuTTY/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_PuTTY/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_PuTTY/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Snagit/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Snagit/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Snagit/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Snagit/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Snagit/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Snagit/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_Snagit/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_Snagit/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Snagit/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Snagit/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Snagit/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Snagit/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Snagit/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Teamviewer/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Teamviewer/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Teamviewer/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Teamviewer/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_Teamviewer/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Teamviewer/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_Teamviewer/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_Teamviewer/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Teamviewer/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Teamviewer/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Teamviewer/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_Teamviewer/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_Teamviewer/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinRAR/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinRAR/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinRAR/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinRAR/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinRAR/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinRAR/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinRAR/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinRAR/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinRAR/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinRAR/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinRAR/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinRAR/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinRAR/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinSCP/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinSCP/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinSCP/Icon/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinSCP/Icon/icon.jpg -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinSCP/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinSCP/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinSCP/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinSCP/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinSCP/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinSCP/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinSCP/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_WinSCP/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_WinSCP/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_git/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_git/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_git/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_git/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_git/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_git/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_git/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_git/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_git/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_git/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_git/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_git/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_git/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_vscode/Icon/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_vscode/Icon/fallback.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_vscode/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_vscode/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/Choco_vscode/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_vscode/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/Choco_vscode/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/Choco_vscode/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_vscode/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_vscode/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_vscode/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/Choco_vscode/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/Choco_vscode/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/FortiClientVPN/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/FortiClientVPN/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/FortiClientVPN/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/FortiClientVPN/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/FortiClientVPN/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/FortiClientVPN/Source/FortiClientVPN.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/FortiClientVPN/Source/FortiClientVPN.mst -------------------------------------------------------------------------------- /Intune/Apps/FortiClientVPN/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/FortiClientVPN/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/FortiClientVPN/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/FortiClientVPN/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/FortiClientVPN/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/FortiClientVPN/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/README.md -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Icon/icon.png -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Autopilot/AutopilotConfigurationFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Autopilot/AutopilotConfigurationFile.json -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/PowerShell/Enable-BitLockerEncryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/PowerShell/Enable-BitLockerEncryption.ps1 -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/PowerShell/EnhanceIntuneAgentLogging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/PowerShell/EnhanceIntuneAgentLogging.ps1 -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/PowerShell/Get-AadJoinInformation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/PowerShell/Get-AadJoinInformation.ps1 -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/PowerShell/Install-AllMissingMicrosoftUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/PowerShell/Install-AllMissingMicrosoftUpdates.ps1 -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/PowerShell/Install-AutoPilotRelated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/PowerShell/Install-AutoPilotRelated.ps1 -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/PowerShell/Update-PowerShellModulesHelp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/PowerShell/Update-PowerShellModulesHelp.ps1 -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/System32/oemlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/System32/oemlogo.bmp -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Tools/cmtrace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Tools/cmtrace.exe -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Tools/enaTec_Installer.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Tools/enaTec_Installer.exe.config -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Tools/logon.bgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Tools/logon.bgi -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Tools/sysinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Tools/sysinfo.exe -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Wallpaper/TransparentLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Wallpaper/TransparentLogo.png -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-dark.jpg -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Wallpaper/WIP-6th-anniversary-wallpaper-light.jpg -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-dark.jpg -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/Wallpaper/WIP-7th-anniversary-wallpaper-light.jpg -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/etc/hosts -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/etc/lmhosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/etc/lmhosts -------------------------------------------------------------------------------- /Intune/Apps/basepackage/Source/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/Source/setup.ps1 -------------------------------------------------------------------------------- /Intune/Apps/basepackage/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/basepackage/create.ps1 -------------------------------------------------------------------------------- /Intune/Apps/folge/Icon/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/folge/Icon/logo.ico -------------------------------------------------------------------------------- /Intune/Apps/folge/Icon/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/folge/Icon/logo.png -------------------------------------------------------------------------------- /Intune/Apps/folge/Info/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/folge/Info/Description.txt -------------------------------------------------------------------------------- /Intune/Apps/folge/Output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Intune/Apps/folge/Source/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/folge/Source/Install.ps1 -------------------------------------------------------------------------------- /Intune/Apps/folge/Source/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/folge/Source/Uninstall.ps1 -------------------------------------------------------------------------------- /Intune/Apps/folge/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Apps/folge/create.ps1 -------------------------------------------------------------------------------- /Intune/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.json -------------------------------------------------------------------------------- /Intune/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/Compliance/Invoke-CheckIfUnapprovedAppsAreInstalled.ps1 -------------------------------------------------------------------------------- /Intune/PowerShell/Add-EntraUserAsLocalGroupMember.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/PowerShell/Add-EntraUserAsLocalGroupMember.ps1 -------------------------------------------------------------------------------- /Intune/PowerShell/Get-DeviceAutoPilotInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/PowerShell/Get-DeviceAutoPilotInfo.ps1 -------------------------------------------------------------------------------- /Intune/PowerShell/InstallpendingWindowsUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/PowerShell/InstallpendingWindowsUpdates.ps1 -------------------------------------------------------------------------------- /Intune/PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/PowerShell/README.md -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/3rdparty/Detect - WebRTC - Detection Script - 0.2.3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/3rdparty/Detect - WebRTC - Detection Script - 0.2.3.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/3rdparty/Remediate - WebRTC - Remediation Script - 0.2.8.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/3rdparty/Remediate - WebRTC - Remediation Script - 0.2.8.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/AllowAllNETUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/AllowAllNETUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AllowNonAdminsToManageThePublicDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AllowNonAdminsToManageThePublicDesktop.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AllowSideLoadingForTrustedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AllowSideLoadingForTrustedApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AnonymousAccessHardeningLSA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AnonymousAccessHardeningLSA.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AttackSurfaceReductionRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AttackSurfaceReductionRules.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AutoPatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AutoPatch.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-AutoTimeZoneUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-AutoTimeZoneUpdate.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-BuiltInTeamsChatAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-BuiltInTeamsChatAsSystem.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-BuiltInTeamsChatAsUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-BuiltInTeamsChatAsUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-CVE-2023-36884.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-CVE-2023-36884.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-CheckDrivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-CheckDrivers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-CloudKerberosTicketRetrievalEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-CloudKerberosTicketRetrievalEnabled.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-ConfigureOneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-ConfigureOneDrive.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-CorpProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-CorpProfile.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DNSSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DNSSettings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DefenderApplicationGuard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DefenderApplicationGuard.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableBuiltInDnsClient.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableBuiltInDnsClient.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableChangingLockScreenBackgroundForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableChangingLockScreenBackgroundForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableCopilotForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableCopilotForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableDownfallSecurityMitigation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableDownfallSecurityMitigation.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableIPSourceRouting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableIPSourceRouting.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableQUIC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableQUIC.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableSMB1Protocol.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableSMB1Protocol.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableShowLockScreenBackgroundOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableShowLockScreenBackgroundOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableTLS12ForEAPAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableTLS12ForEAPAuthentication.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DisableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DisableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-DoNotDisplayLastUsernameOnSignIn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-DoNotDisplayLastUsernameOnSignIn.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableAdministratorProtection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableAdministratorProtection.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableAutomaticallyLockComputerAfterInactivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableAutomaticallyLockComputerAfterInactivity.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableEdgeAutomaticUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableEdgeAutomaticUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableOneDriveIntegration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableOneDriveIntegration.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableOrDisableWindowsCopilotForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableOrDisableWindowsCopilotForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnablePhotoViewer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnablePhotoViewer.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnablePowerThrottling.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnablePowerThrottling.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableSecureSignIn_CAD_ForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableSecureSignIn_CAD_ForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableUACPromptForBuiltInAdministratorAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableUACPromptForBuiltInAdministratorAccount.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-EnableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-EnableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-GetLatestUpdatesAsSoonAsAvailable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-GetLatestUpdatesAsSoonAsAvailable.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-GlobalSecureAccessConnectedLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-GlobalSecureAccessConnectedLocal.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-GlobalSecureAccessDefaultSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-GlobalSecureAccessDefaultSetup.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-GlobalSecureAccessSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-GlobalSecureAccessSettings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-GlobalSecureAccessUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-GlobalSecureAccessUserSettings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-HKCU_DisablePersonalSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-HKCU_DisablePersonalSync.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-HKLM_DisableNewAccountDetection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-HKLM_DisableNewAccountDetection.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-HideWSLLinuxIconFromDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-HideWSLLinuxIconFromDesktop.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-IsWVDEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-IsWVDEnvironment.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-IsWinGetInstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-IsWinGetInstalled.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-L2TPNATSupport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-L2TPNATSupport.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-L2TPNATSupportAndTweaks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-L2TPNATSupportAndTweaks.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-LLMNR-Multicast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-LLMNR-Multicast.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-LidNotifyReliable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-LidNotifyReliable.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-LockScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-LockScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MMAgent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MMAgent.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MSRDC2Insider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MSRDC2Insider.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MicrosoftDefenderConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MicrosoftDefenderConfig.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MicrosoftUpdateNoAutoUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MicrosoftUpdateNoAutoUpdate.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MicrosoftWindowsUnquotedServicePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MicrosoftWindowsUnquotedServicePath.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MitigateCVE202230190.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MitigateCVE202230190.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MitigateOutlookCrashingWorkaroundJune2025.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MitigateOutlookCrashingWorkaroundJune2025.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-MitigateSearchMS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-MitigateSearchMS.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-NCAllowNetBridgeNLA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-NCAllowNetBridgeNLA.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-NCStdDomainUserSetLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-NCStdDomainUserSetLocation.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-Netbios.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-Netbios.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-NewTeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-NewTeamsQos.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-NoCopilotPlusAndRecall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-NoCopilotPlusAndRecall.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-OfficeCopilotFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-OfficeCopilotFeatures.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-OfficeUpdateHideEnableDisableUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-OfficeUpdateHideEnableDisableUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-OneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-OneDrive.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-OneDriveDelayFlag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-OneDriveDelayFlag.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-OutdatedChocolateyApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-OutdatedChocolateyApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-OutdatedWingetApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-OutdatedWingetApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-PSModuleUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-PSModuleUpdate.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-PendingWinGetUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-PendingWinGetUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-RegisteredOwnerAndOrganization.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-RegisteredOwnerAndOrganization.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-RemoveSystemRequirementsNotMetWatermark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-RemoveSystemRequirementsNotMetWatermark.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForAllUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForAllUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-RemoveWslDesktopIcon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-RemoveWslDesktopIcon.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-RenameThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-RenameThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-SaveSentItemsInSharedMailbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-SaveSentItemsInSharedMailbox.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-SetDefenderDisableRemovableDriveScanningOff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-SetDefenderDisableRemovableDriveScanningOff.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-SetupBraveBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-SetupBraveBrowser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-SetupMicrosoftEdgeBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-SetupMicrosoftEdgeBrowser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-ShowThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-ShowThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-SystemWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-SystemWPADOverride.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TeamsFirewallPerUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TeamsFirewallPerUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TeamsQos.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TurnOffPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TurnOffPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TurnOffUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TurnOffUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TurnOnAutoEndTasksForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TurnOnAutoEndTasksForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TurnOnCoreIsolationMemoryIntegrity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TurnOnCoreIsolationMemoryIntegrity.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TurnOnPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TurnOnPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-TurnOnUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-TurnOnUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-UACAlwaysNotify.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-UACAlwaysNotify.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-UACDefault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-UACDefault.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-UACDoNotDim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-UACDoNotDim.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-UptimeToLong.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-UptimeToLong.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-UserWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-UserWPADOverride.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-VSthroughMUUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-VSthroughMUUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-WOLSurfaceStudio2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-WOLSurfaceStudio2.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-WindowsExplorerSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-WindowsExplorerSettings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-WlanfixForWindows11Release24H2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-WlanfixForWindows11Release24H2.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-localAdminEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-localAdminEnabled.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Detection-localAdminName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Detection-localAdminName.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/FeatureUpdateAppraisal-Detection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/FeatureUpdateAppraisal-Detection.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/FeatureUpdateAppraisal-Remediation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/FeatureUpdateAppraisal-Remediation.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediate-NewTeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediate-NewTeamsQos.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediate-OneDriveDelayFlag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediate-OneDriveDelayFlag.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediate-TeamsFirewallPerUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediate-TeamsFirewallPerUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediate-TeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediate-TeamsQos.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AllowNonAdminsToManageThePublicDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AllowNonAdminsToManageThePublicDesktop.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AllowSideLoadingForTrustedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AllowSideLoadingForTrustedApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AlwaysEnableMicrosoftDefenderPUAProtectionAndBlockApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AlwaysOnStoreAutomaticDownloadInstallUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AnonymousAccessHardeningLSA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AnonymousAccessHardeningLSA.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AttackSurfaceReductionRules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AttackSurfaceReductionRules.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AutoPatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AutoPatch.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-AutoTimeZoneUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-AutoTimeZoneUpdate.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-BuiltInTeamsChatAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-BuiltInTeamsChatAsSystem.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-BuiltInTeamsChatAsUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-BuiltInTeamsChatAsUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-CVE-2023-36884.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-CVE-2023-36884.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-CheckDrivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-CheckDrivers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-CloudKerberosTicketRetrievalEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-CloudKerberosTicketRetrievalEnabled.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-ConfigureOneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-ConfigureOneDrive.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-CorpProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-CorpProfile.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DNSSetings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DNSSetings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DefenderApplicationGuard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DefenderApplicationGuard.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableBuiltInDnsClient.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableBuiltInDnsClient.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableChangingLockScreenBackgroundForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableChangingLockScreenBackgroundForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableCopilotForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableCopilotForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableDownfallSecurityMitigation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableDownfallSecurityMitigation.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableIPSourceRouting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableIPSourceRouting.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableQUIC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableQUIC.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableSMB1Protocol.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableSMB1Protocol.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableShowLockScreenBackgroundOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableShowLockScreenBackgroundOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableTLS12ForEAPAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableTLS12ForEAPAuthentication.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DisableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DisableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-DoNotDisplayLastUsernameOnSignIn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-DoNotDisplayLastUsernameOnSignIn.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableAdministratorProtection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableAdministratorProtection.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableAutomaticallyLockComputerAfterInactivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableAutomaticallyLockComputerAfterInactivity.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableCellularDataRoaming.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableCellularDataRoaming.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableCopilotButtonOnTaskbarForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableCopilotButtonOnTaskbarForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableDontDisplayLastSignedinUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableDontDisplayLastSignedinUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableEdgeAutomaticUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableEdgeAutomaticUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableOneDriveIntegration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableOneDriveIntegration.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableOrDisableWindowsCopilotForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableOrDisableWindowsCopilotForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnablePhoneLinkAppForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnablePhoneLinkAppForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnablePhotoViewer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnablePhotoViewer.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnablePowerThrottling.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnablePowerThrottling.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableSecureSignIn_CAD_ForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableSecureSignIn_CAD_ForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableUACPromptForBuiltInAdministratorAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableUACPromptForBuiltInAdministratorAccount.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableUserChoiceShowAccountEmailAddressOnSignInScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-EnableWinHttpAutoProxySvcService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-EnableWinHttpAutoProxySvcService.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-GetLatestUpdatesAsSoonAsAvailable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-GetLatestUpdatesAsSoonAsAvailable.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-GlobalSecureAccessConnectedLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-GlobalSecureAccessConnectedLocal.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-GlobalSecureAccessDefaultSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-GlobalSecureAccessDefaultSetup.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-GlobalSecureAccessSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-GlobalSecureAccessSettings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-GlobalSecureAccessUserSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-GlobalSecureAccessUserSettings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-HKCU_DisablePersonalSync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-HKCU_DisablePersonalSync.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-HKLM_DisableNewAccountDetection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-HKLM_DisableNewAccountDetection.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-HideWSLLinuxIconFromDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-HideWSLLinuxIconFromDesktop.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-IsWVDEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-IsWVDEnvironment.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-IsWinGetInstalled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-IsWinGetInstalled.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-L2TPNATSupport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-L2TPNATSupport.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-L2TPNATSupportAndTweaks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-L2TPNATSupportAndTweaks.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-LLMNR-Multicast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-LLMNR-Multicast.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-LidNotifyReliable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-LidNotifyReliable.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-LockScreen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-LockScreen.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MMAgent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MMAgent.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MSRDC2Insider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MSRDC2Insider.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MicrosoftDefenderConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MicrosoftDefenderConfig.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MicrosoftUpdateNoAutoUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MicrosoftUpdateNoAutoUpdate.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MicrosoftWindowsUnquotedServicePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MicrosoftWindowsUnquotedServicePath.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MitigateCVE202230190.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MitigateCVE202230190.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MitigateOutlookCrashingWorkaroundJune2025.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MitigateOutlookCrashingWorkaroundJune2025.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-MitigateSearchMS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-MitigateSearchMS.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-NCAllowNetBridgeNLA.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-NCAllowNetBridgeNLA.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-NCStdDomainUserSetLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-NCStdDomainUserSetLocation.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-Netbios.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-Netbios.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-NewTeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-NewTeamsQos.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-NoCopilotPlusAndRecall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-NoCopilotPlusAndRecall.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-OfficeCopilotFeatures.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-OfficeCopilotFeatures.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-OfficeUpdateHideEnableDisableUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-OfficeUpdateHideEnableDisableUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-OneDrive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-OneDrive.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-OneDriveDelayFlag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-OneDriveDelayFlag.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-OutdatedChocolateyApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-OutdatedChocolateyApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-OutdatedWingetApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-OutdatedWingetApps.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-PSModuleUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-PSModuleUpdate.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-PendingWinGetUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-PendingWinGetUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-RegisteredOwnerAndOrganization.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-RegisteredOwnerAndOrganization.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-RemoveCopilotButtonFromTaskbarForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-RemoveSystemRequirementsNotMetWatermark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-RemoveSystemRequirementsNotMetWatermark.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForAllUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForAllUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-RemoveWindowsWatermarkOnDesktopForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-RemoveWslDesktopIcon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-RemoveWslDesktopIcon.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-RenameThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-RenameThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-SaveSentItemsInSharedMailbox.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-SaveSentItemsInSharedMailbox.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-SetDefenderDisableRemovableDriveScanningOff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-SetDefenderDisableRemovableDriveScanningOff.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-SetupBraveBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-SetupBraveBrowser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-SetupMicrosoftEdgeBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-SetupMicrosoftEdgeBrowser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-ShowThisPCIcon_USER.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-ShowThisPCIcon_USER.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-SystemWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-SystemWPADOverride.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TeamsFirewallPerUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TeamsFirewallPerUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TeamsQos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TeamsQos.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TurnOffPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TurnOffPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TurnOffUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TurnOffUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TurnOnAutoEndTasksForAllUsers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TurnOnAutoEndTasksForAllUsers.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TurnOnCoreIsolationMemoryIntegrity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TurnOnCoreIsolationMemoryIntegrity.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TurnOnLocalSecurityAuthorityProtectionWithoutUefiLock.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TurnOnPhoneLinkForCurrentUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TurnOnPhoneLinkForCurrentUser.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-TurnOnUseCellularWhenWiFiIsPoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-TurnOnUseCellularWhenWiFiIsPoor.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-UACAlwaysNotify.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-UACAlwaysNotify.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-UACDefault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-UACDefault.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-UACDoNotDim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-UACDoNotDim.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-UptimeToLong.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-UptimeToLong.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-UserWPADOverride.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-UserWPADOverride.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-VSthroughMUUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-VSthroughMUUpdates.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-WOLSurfaceStudio2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-WOLSurfaceStudio2.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-WindowsExplorerSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-WindowsExplorerSettings.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-WlanfixForWindows11Release24H2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-WlanfixForWindows11Release24H2.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-localAdminEnabled.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-localAdminEnabled.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation-localAdminName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation-localAdminName.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/Remediation_StarfaceAutoUpdateFeature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/Remediation_StarfaceAutoUpdateFeature.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/RemoteDesktopMultimediaRedirectionUpdater-Detection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/RemoteDesktopMultimediaRedirectionUpdater-Detection.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/RemoteDesktopMultimediaRedirectionUpdater-Remediation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/RemoteDesktopMultimediaRedirectionUpdater-Remediation.ps1 -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/images/remediations_lic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/images/remediations_lic1.png -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/images/remediations_lic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/images/remediations_lic2.png -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/readme.md -------------------------------------------------------------------------------- /Intune/ProactiveRemediations/remediate-LsaHardening.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/ProactiveRemediations/remediate-LsaHardening.ps1 -------------------------------------------------------------------------------- /Intune/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Intune/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft365/ConditionalAccessNamedLocationToolingForGraph.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/ConditionalAccessNamedLocationToolingForGraph.ps1 -------------------------------------------------------------------------------- /Microsoft365/Convert-HolidayFromApiToCsAutoAttendantHolidays.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Convert-HolidayFromApiToCsAutoAttendantHolidays.ps1 -------------------------------------------------------------------------------- /Microsoft365/ConvertFrom-SafeLinksURL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/ConvertFrom-SafeLinksURL.ps1 -------------------------------------------------------------------------------- /Microsoft365/Convert_O365_SKUs_and_Services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Convert_O365_SKUs_and_Services.ps1 -------------------------------------------------------------------------------- /Microsoft365/Disable-AzAccountLinkingExperience.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Disable-AzAccountLinkingExperience.ps1 -------------------------------------------------------------------------------- /Microsoft365/Find-AdminAssignedLicenses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Find-AdminAssignedLicenses.ps1 -------------------------------------------------------------------------------- /Microsoft365/FixPersonalSPOSite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/FixPersonalSPOSite.ps1 -------------------------------------------------------------------------------- /Microsoft365/Get-MFAUserReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Get-MFAUserReport.ps1 -------------------------------------------------------------------------------- /Microsoft365/Get-Microsoft365LicenseIdNames.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Get-Microsoft365LicenseIdNames.ps1 -------------------------------------------------------------------------------- /Microsoft365/Get-MicrosoftCloudTenantInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Get-MicrosoftCloudTenantInfo.ps1 -------------------------------------------------------------------------------- /Microsoft365/Get-MicrosoftWhiteboardReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Get-MicrosoftWhiteboardReport.ps1 -------------------------------------------------------------------------------- /Microsoft365/Get-O365MailboxServerDatacenterLocation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Get-O365MailboxServerDatacenterLocation.ps1 -------------------------------------------------------------------------------- /Microsoft365/Get-Office365Endpoints.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Get-Office365Endpoints.ps1 -------------------------------------------------------------------------------- /Microsoft365/Get-OneDriveUsageReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Get-OneDriveUsageReport.ps1 -------------------------------------------------------------------------------- /Microsoft365/Initialize-ActivityAlertSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Initialize-ActivityAlertSet.ps1 -------------------------------------------------------------------------------- /Microsoft365/Initialize-ProtectionAlertSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Initialize-ProtectionAlertSet.ps1 -------------------------------------------------------------------------------- /Microsoft365/Invoke-GetAzureADAuditSignInLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Invoke-GetAzureADAuditSignInLogs.ps1 -------------------------------------------------------------------------------- /Microsoft365/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/LICENSE -------------------------------------------------------------------------------- /Microsoft365/ReplaceDomainForAllUnifiedGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/ReplaceDomainForAllUnifiedGroups.ps1 -------------------------------------------------------------------------------- /Microsoft365/Set-AzureADNamingPolicyForOffice365Groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Set-AzureADNamingPolicyForOffice365Groups.ps1 -------------------------------------------------------------------------------- /Microsoft365/Set-MicrosoftNewWhiteboardOwner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Set-MicrosoftNewWhiteboardOwner.ps1 -------------------------------------------------------------------------------- /Microsoft365/Set-Office365GroupMailAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Set-Office365GroupMailAddress.ps1 -------------------------------------------------------------------------------- /Microsoft365/Set-bdcMsolMFAState.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Set-bdcMsolMFAState.ps1 -------------------------------------------------------------------------------- /Microsoft365/Setup-MSCommerceProductPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/Setup-MSCommerceProductPolicies.ps1 -------------------------------------------------------------------------------- /Microsoft365/TweakSafeLinksPolicy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/TweakSafeLinksPolicy.ps1 -------------------------------------------------------------------------------- /Microsoft365/bootstrap-Office365Tenant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Microsoft365/bootstrap-Office365Tenant.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Clear-MicrosoftTeamsClientCache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Clear-MicrosoftTeamsClientCache.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Default_MicrosoftTeams_DesktopConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Default_MicrosoftTeams_DesktopConfig.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Get-AllExternalTeamsApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Get-AllExternalTeamsApps.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Get-TeamsAssignedNumbers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Get-TeamsAssignedNumbers.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Get-TeamsServiceNumbers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Get-TeamsServiceNumbers.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Get-bdcMicrosoftTeamsReporting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Get-bdcMicrosoftTeamsReporting.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Invoke-BootstrapTeamsPoliciesForATenant.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Invoke-BootstrapTeamsPoliciesForATenant.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Invoke-OptimizeAppsForTerminalService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Invoke-OptimizeAppsForTerminalService.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Invoke-TweakTeamsClientFirewall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Invoke-TweakTeamsClientFirewall.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Invoke-mtrDisableModernAuthentication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Invoke-mtrDisableModernAuthentication.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/LICENSE -------------------------------------------------------------------------------- /MicrosoftTeams/New-AITMicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/New-AITMicrosoftTeams.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/ProjectTeamStructure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/ProjectTeamStructure.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/RemoveWiki.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/RemoveWiki.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/ReplaceDomainForAllUnifiedGroups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/ReplaceDomainForAllUnifiedGroups.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Set-QoSForMicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Set-QoSForMicrosoftTeams.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Set-QoSForMicrosoftTeamsRoomDevices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Set-QoSForMicrosoftTeamsRoomDevices.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Set-TeamsAudioVideoPermissionInBrowser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Set-TeamsAudioVideoPermissionInBrowser.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/SetupTeamsRoom.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/SetupTeamsRoom.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/Update-UnifiedGroupsToTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/Update-UnifiedGroupsToTeams.ps1 -------------------------------------------------------------------------------- /MicrosoftTeams/enable-AttendanceListMicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/MicrosoftTeams/enable-AttendanceListMicrosoftTeams.ps1 -------------------------------------------------------------------------------- /Misc/Bootstrap-MicrosoftDefenderConfiguration/Bootstrap-MicrosoftDefenderConfiguration.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Bootstrap-MicrosoftDefenderConfiguration/Bootstrap-MicrosoftDefenderConfiguration.csv -------------------------------------------------------------------------------- /Misc/Bootstrap-MicrosoftDefenderConfiguration/Bootstrap-MicrosoftDefenderConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Bootstrap-MicrosoftDefenderConfiguration/Bootstrap-MicrosoftDefenderConfiguration.ps1 -------------------------------------------------------------------------------- /Misc/Bootstrap-MicrosoftDefenderConfiguration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Bootstrap-MicrosoftDefenderConfiguration/LICENSE -------------------------------------------------------------------------------- /Misc/Bootstrap-MicrosoftDefenderConfiguration/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Bootstrap-MicrosoftDefenderConfiguration/Readme.md -------------------------------------------------------------------------------- /Misc/Check-ServiceMonitor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Check-ServiceMonitor.ps1 -------------------------------------------------------------------------------- /Misc/Clear-EnAllEventLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Clear-EnAllEventLogs.ps1 -------------------------------------------------------------------------------- /Misc/Clear-EnAllEventLogs_TESTS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Clear-EnAllEventLogs_TESTS.ps1 -------------------------------------------------------------------------------- /Misc/Clear-EnAllEventLogs_v2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Clear-EnAllEventLogs_v2.ps1 -------------------------------------------------------------------------------- /Misc/DisableDotNetTelemetry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/DisableDotNetTelemetry.ps1 -------------------------------------------------------------------------------- /Misc/Enable-DNSOverHTTPS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Enable-DNSOverHTTPS.ps1 -------------------------------------------------------------------------------- /Misc/Find-Log4jVulnerabilities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Find-Log4jVulnerabilities.ps1 -------------------------------------------------------------------------------- /Misc/ForceTimeResync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/ForceTimeResync.ps1 -------------------------------------------------------------------------------- /Misc/Generate-Dynamic-LockScreen-Wallpaper-During-Installation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Generate-Dynamic-LockScreen-Wallpaper-During-Installation.ps1 -------------------------------------------------------------------------------- /Misc/Get-AllCookiesFromWebRequestSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-AllCookiesFromWebRequestSession.ps1 -------------------------------------------------------------------------------- /Misc/Get-BadFontPaths.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-BadFontPaths.ps1 -------------------------------------------------------------------------------- /Misc/Get-DateIntervalHumanReadable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-DateIntervalHumanReadable.ps1 -------------------------------------------------------------------------------- /Misc/Get-DirectorySize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-DirectorySize.ps1 -------------------------------------------------------------------------------- /Misc/Get-DotNetExecutableVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-DotNetExecutableVersion.ps1 -------------------------------------------------------------------------------- /Misc/Get-FritzBoxEvents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-FritzBoxEvents.ps1 -------------------------------------------------------------------------------- /Misc/Get-IPv6InWindows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-IPv6InWindows.ps1 -------------------------------------------------------------------------------- /Misc/Get-IpInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-IpInfo.ps1 -------------------------------------------------------------------------------- /Misc/Get-LocalGroupMembership.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-LocalGroupMembership.ps1 -------------------------------------------------------------------------------- /Misc/Get-LocalIpAddresses.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-LocalIpAddresses.ps1 -------------------------------------------------------------------------------- /Misc/Get-MyIpAddress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-MyIpAddress.ps1 -------------------------------------------------------------------------------- /Misc/Get-OneDriveSizeOnDisk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-OneDriveSizeOnDisk.ps1 -------------------------------------------------------------------------------- /Misc/Get-OutdatedPowerShellModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-OutdatedPowerShellModules.ps1 -------------------------------------------------------------------------------- /Misc/Get-RunAsAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-RunAsAdmin.ps1 -------------------------------------------------------------------------------- /Misc/Get-RunAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-RunAsSystem.ps1 -------------------------------------------------------------------------------- /Misc/Get-WellKnownAAGUIDs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-WellKnownAAGUIDs.ps1 -------------------------------------------------------------------------------- /Misc/Get-WindowsBuildForMigrationSupport__SNIPPET.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-WindowsBuildForMigrationSupport__SNIPPET.ps1 -------------------------------------------------------------------------------- /Misc/Get-etLatestNuGetRelease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Get-etLatestNuGetRelease.ps1 -------------------------------------------------------------------------------- /Misc/Grant-LogOnAsService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Grant-LogOnAsService.ps1 -------------------------------------------------------------------------------- /Misc/Hosts_helper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Hosts_helper.ps1 -------------------------------------------------------------------------------- /Misc/Install-DSCResourceKit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Install-DSCResourceKit.ps1 -------------------------------------------------------------------------------- /Misc/Install-SysInternalsSuite.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Install-SysInternalsSuite.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-ApplyBasicTweakWindows11.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-ApplyBasicTweakWindows11.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-CVE202221907handling.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-CVE202221907handling.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-CheckPowerShellModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-CheckPowerShellModules.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-CleanupOldGalleryModuleVersions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-CleanupOldGalleryModuleVersions.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-CleanupTestVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-CleanupTestVM.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-CloudFlareDDNSUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-CloudFlareDDNSUpdate.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-DSCPerfReqConfigCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-DSCPerfReqConfigCheck.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-DotNetToolingUpgradeAll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-DotNetToolingUpgradeAll.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-ExportDrivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-ExportDrivers.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-FritzBoxSmartHomePrototyping.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-FritzBoxSmartHomePrototyping.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-InstallNewTeamsClientOnWindows365.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-InstallNewTeamsClientOnWindows365.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-InstallWindowsTerminalFromGitHub.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-InstallWindowsTerminalFromGitHub.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-KeepYouGreenInTheNewMicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-KeepYouGreenInTheNewMicrosoftTeams.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-MitigateCVE202230190.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-MitigateCVE202230190.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-PSReadlineHistoryHandler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-PSReadlineHistoryHandler.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-PSWindowsUpdateWrapper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-PSWindowsUpdateWrapper.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-SSHConnect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-SSHConnect.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-ScanForCVE20223602.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-ScanForCVE20223602.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-SetNetworkToPreferIPv4OverIPv6.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-SetNetworkToPreferIPv4OverIPv6.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-ShrinkADSyncSqlDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-ShrinkADSyncSqlDatabase.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-SpeedtestCLI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-SpeedtestCLI.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-SpeedtestViaCli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-SpeedtestViaCli.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-UpdateAllGalleryModules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-UpdateAllGalleryModules.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-Windows11HardwareReadinessCheck.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-Windows11HardwareReadinessCheck.ps1 -------------------------------------------------------------------------------- /Misc/Invoke-dotNETNativeImageGeneratorRecompile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Invoke-dotNETNativeImageGeneratorRecompile.ps1 -------------------------------------------------------------------------------- /Misc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/LICENSE -------------------------------------------------------------------------------- /Misc/New-ComputerCheckpoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/New-ComputerCheckpoint.ps1 -------------------------------------------------------------------------------- /Misc/Optimize-MicrosoftDefenderExclusions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Optimize-MicrosoftDefenderExclusions.ps1 -------------------------------------------------------------------------------- /Misc/Optimize-MicrosoftDefenderExclusionsForMicrosoftTeams.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Optimize-MicrosoftDefenderExclusionsForMicrosoftTeams.ps1 -------------------------------------------------------------------------------- /Misc/Out-ZipArchive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Out-ZipArchive.ps1 -------------------------------------------------------------------------------- /Misc/PowerShell_PSTypeNames_and_custom_FormatData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/PowerShell_PSTypeNames_and_custom_FormatData.ps1 -------------------------------------------------------------------------------- /Misc/Publish-BitbucketDownload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Publish-BitbucketDownload.ps1 -------------------------------------------------------------------------------- /Misc/Remove-FileEndingBlankLines.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Remove-FileEndingBlankLines.ps1 -------------------------------------------------------------------------------- /Misc/Remove-SendToOneNoteLnk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Remove-SendToOneNoteLnk.ps1 -------------------------------------------------------------------------------- /Misc/Remove-Signature.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Remove-Signature.ps1 -------------------------------------------------------------------------------- /Misc/Resolve-DNSHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Resolve-DNSHost.ps1 -------------------------------------------------------------------------------- /Misc/Set-AllowPingAndRemoteDesktop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-AllowPingAndRemoteDesktop.ps1 -------------------------------------------------------------------------------- /Misc/Set-ChromeDefaultPreferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-ChromeDefaultPreferences.ps1 -------------------------------------------------------------------------------- /Misc/Set-DesktopBackGroundColor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-DesktopBackGroundColor.ps1 -------------------------------------------------------------------------------- /Misc/Set-DisplayBrightness.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-DisplayBrightness.ps1 -------------------------------------------------------------------------------- /Misc/Set-IPv6InWindows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-IPv6InWindows.ps1 -------------------------------------------------------------------------------- /Misc/Set-NtpTime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-NtpTime.ps1 -------------------------------------------------------------------------------- /Misc/Set-PowerPlanToAuto.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-PowerPlanToAuto.ps1 -------------------------------------------------------------------------------- /Misc/Set-PowerPlanToHighPerformance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-PowerPlanToHighPerformance.ps1 -------------------------------------------------------------------------------- /Misc/Set-PreventOutlookIndexing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-PreventOutlookIndexing.ps1 -------------------------------------------------------------------------------- /Misc/Set-PublishUserActivities.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Set-PublishUserActivities.ps1 -------------------------------------------------------------------------------- /Misc/Subscribe-LogonLogoffEvents.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Subscribe-LogonLogoffEvents.ps1 -------------------------------------------------------------------------------- /Misc/Test-IsAdmin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Test-IsAdmin.ps1 -------------------------------------------------------------------------------- /Misc/Test-Port.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Test-Port.ps1 -------------------------------------------------------------------------------- /Misc/Test-ValidEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Test-ValidEmail.ps1 -------------------------------------------------------------------------------- /Misc/Transfer_PSGallery_Installed_Modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Transfer_PSGallery_Installed_Modules.ps1 -------------------------------------------------------------------------------- /Misc/Tweak_UDPforFastSend.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Tweak_UDPforFastSend.ps1 -------------------------------------------------------------------------------- /Misc/UnixTimeStampTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/UnixTimeStampTools.ps1 -------------------------------------------------------------------------------- /Misc/Update-BootWIM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Update-BootWIM.ps1 -------------------------------------------------------------------------------- /Misc/Update-ModuleFromPSGallery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/Update-ModuleFromPSGallery.ps1 -------------------------------------------------------------------------------- /Misc/invoke-CPUWorkload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/invoke-CPUWorkload.ps1 -------------------------------------------------------------------------------- /Misc/invoke-GetDSCResources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/invoke-GetDSCResources.ps1 -------------------------------------------------------------------------------- /Misc/invoke-ModuleMaint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Misc/invoke-ModuleMaint.ps1 -------------------------------------------------------------------------------- /Office_Related/Force_Office_Click2Run-Update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Office_Related/Force_Office_Click2Run-Update.ps1 -------------------------------------------------------------------------------- /Office_Related/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Office_Related/LICENSE -------------------------------------------------------------------------------- /Office_Related/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Office_Related/README.md -------------------------------------------------------------------------------- /Office_Related/Set-OfficeInsider.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Office_Related/Set-OfficeInsider.ps1 -------------------------------------------------------------------------------- /Office_Related/Set-PreventBingInstallRegistryKey.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Office_Related/Set-PreventBingInstallRegistryKey.ps1 -------------------------------------------------------------------------------- /Office_Related/Set-PreventBingInstallRegistryKey_splat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Office_Related/Set-PreventBingInstallRegistryKey_splat.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Skype_for_Business/Collect-CsClientLogs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/Collect-CsClientLogs.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/Get-CsActiveConferences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/Get-CsActiveConferences.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/Invoke-FindS4BUsersToDisable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/Invoke-FindS4BUsersToDisable.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/LICENSE -------------------------------------------------------------------------------- /Skype_for_Business/QoS/Client_GPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/Client_GPO.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/QoS/Edge_REG.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/Edge_REG.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/QoS/ExchangeUM_GPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/ExchangeUM_GPO.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/QoS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/LICENSE -------------------------------------------------------------------------------- /Skype_for_Business/QoS/Server_GPO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/Server_GPO.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/QoS/Skype_Server_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/Skype_Server_Config.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/QoS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/readme.md -------------------------------------------------------------------------------- /Skype_for_Business/QoS/readme_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/QoS/readme_old.md -------------------------------------------------------------------------------- /Skype_for_Business/Set-Skype4BProxyUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/Set-Skype4BProxyUsage.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/Test-LyncSRVRecords.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/Test-LyncSRVRecords.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/readme.md -------------------------------------------------------------------------------- /Skype_for_Business/rms4bcert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/rms4bcert/LICENSE -------------------------------------------------------------------------------- /Skype_for_Business/rms4bcert/bin/x64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/rms4bcert/bin/x64/LICENSE -------------------------------------------------------------------------------- /Skype_for_Business/rms4bcert/bin/x64/rms4bcert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/rms4bcert/bin/x64/rms4bcert.exe -------------------------------------------------------------------------------- /Skype_for_Business/rms4bcert/bin/x64/rms4bcert.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/rms4bcert/bin/x64/rms4bcert.exe.config -------------------------------------------------------------------------------- /Skype_for_Business/rms4bcert/rms4bcert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/rms4bcert/rms4bcert.ps1 -------------------------------------------------------------------------------- /Skype_for_Business/rms4bcert/rms4bcert.ps1.psbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Skype_for_Business/rms4bcert/rms4bcert.ps1.psbuild -------------------------------------------------------------------------------- /UniFiTooling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/UniFiTooling/readme.md -------------------------------------------------------------------------------- /WSUS/Approve-WSUSDefinitionUpdates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/WSUS/Approve-WSUSDefinitionUpdates.ps1 -------------------------------------------------------------------------------- /WSUS/Approve-WSUSLicenseAgreementAcceptance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/WSUS/Approve-WSUSLicenseAgreementAcceptance.ps1 -------------------------------------------------------------------------------- /WSUS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/WSUS/LICENSE -------------------------------------------------------------------------------- /WSUS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/WSUS/README.md -------------------------------------------------------------------------------- /Windows11/Invoke-ForceRemoveMicrosoft365AppAndOneNote.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Invoke-ForceRemoveMicrosoft365AppAndOneNote.ps1 -------------------------------------------------------------------------------- /Windows11/Invoke-GetComputerRestorePoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Invoke-GetComputerRestorePoint.ps1 -------------------------------------------------------------------------------- /Windows11/Invoke-NativeImageGeneratorTool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Invoke-NativeImageGeneratorTool.ps1 -------------------------------------------------------------------------------- /Windows11/Invoke-RemoveBitLockerGroupPolicySettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Invoke-RemoveBitLockerGroupPolicySettings.ps1 -------------------------------------------------------------------------------- /Windows11/Invoke-RemoveUnwantedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Invoke-RemoveUnwantedApps.ps1 -------------------------------------------------------------------------------- /Windows11/Invoke-SetNetworkToPreferIPv4OverIPv6.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Invoke-SetNetworkToPreferIPv4OverIPv6.ps1 -------------------------------------------------------------------------------- /Windows11/Set-DisplayBrightness.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Set-DisplayBrightness.ps1 -------------------------------------------------------------------------------- /Windows11/Set-WiFiRandomMacState.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/Windows11/Set-WiFiRandomMacState.ps1 -------------------------------------------------------------------------------- /bdc.MtrTooling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/bdc.MtrTooling/readme.md -------------------------------------------------------------------------------- /bdcBusylight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/bdcBusylight/LICENSE -------------------------------------------------------------------------------- /bdcBusylight/bdcBusylight.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/bdcBusylight/bdcBusylight.ps1 -------------------------------------------------------------------------------- /bdcBusylight/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhochwald/PowerShell-collection/HEAD/bdcBusylight/readme.md --------------------------------------------------------------------------------