├── .github └── workflows │ └── powershell-analysis.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── Communityhub └── ConsoleExtension │ ├── Get BitLocker Recovery Key for a Device.json │ ├── Removable Media Security (secRMM) ConfigMgr console extension.json │ └── Right Click Tools.json ├── LICENSE ├── README.md ├── SECURITY.md ├── external └── SetupExternalServiceNotifications.ps1 ├── media ├── 3555935-add-community-hub.png └── 3555935-join-community-hub.png ├── objects ├── Baseline │ └── Dell CVE CVE-2021-21551 Issue.xml ├── CMPivotQuery │ ├── .Net Version installed on Devices │ ├── Average Boot Times Per Model │ ├── Clients without Boundary │ ├── Collect Windows Update Logs │ ├── Count of Installed Software Title │ ├── Defender Antivirus Signature Version Overview │ ├── Devices with Debug or Verbose Logging enabled │ ├── Find Devices with Missing File │ ├── Find clients with Last SMSUID Change date today │ ├── Get Battery % for all Users │ ├── Get Compat Appraiser Version and URL (Feature Updates) │ ├── Get Edge Update Policy │ ├── Get Feature Update Gated Block IDs (Safeguard Hold IDs) │ ├── Get Models and Summarize how many BIOS versions there is for each │ ├── Get Windows Feature Update Block GUIDs │ ├── Get user profiles over 90 days old │ ├── Information on Windows cumulative updates │ ├── List - Most Recent Event │ ├── List - Wireless Adapter Info │ ├── List TFTP BlockSize and WindowSize for PXE enabled DPs │ ├── List local administrator accounts │ ├── OS - Windows Versions Summarization │ ├── Scan for Dell dbutil vulnerability impacted devices │ ├── Show Connected USB Audio Devices │ ├── Show Windows 11 incompatible devices and upgrade blockers from registry │ ├── Summarize - Corrupted Local Group Policy │ ├── Summarize - Inactivity Lockout Timeout │ ├── Summarize - PowerShell Versions │ ├── Summarize - PowerShellv2 Installation Status │ ├── Summarize - SMBv1 Client Audit │ ├── Summarize - SMBv1 Operational Status │ ├── Summarize - Windows OS Versions │ ├── Summarize Windows Client OS Editions │ ├── Teams versions │ ├── Troubleshoot Windows Update Reboot Loop - Find All Updates with CommitRequired set to 1 │ └── Use strcat() to combine two string columns ├── ConfigurationItem │ ├── CI - Audit PowerShell 2.0 Host usage.xml │ ├── CMTrace Symbolic Link.xml │ ├── Check if file exists (Log4j).xml │ ├── Dell CVE CVE-2021-21551 Issue.xml │ ├── Feature Update - No logged on interactive user - Failed.xml │ ├── Feature Update - SetupDiag Inventory.xml │ ├── LOG4J - Existence Test.xml │ ├── LOG4J - Hash Level Evaluation.xml │ ├── Log4j - Jar files containing JndiLookup.class.xml │ ├── Prune IIS Logs.xml │ ├── Show Seconds in System Clock.xml │ └── TFTP BlockSize and WindowSize for PXE enabled DPs.xml ├── ConsoleExtension │ ├── Removable Media Security (secRMM) ConfigMgr console extension.json │ └── Right Click Tools.json ├── ConsoleExtensionCab │ └── AllStatusMessageForTsDeployment.cab ├── Report │ ├── Bitlocker - Compliance by Collection.rdl │ └── History of Remeditation for specific Compliance Item.rdl ├── Script │ ├── 2012R2InstallWSUSwPreloadedSUSDB.ps1 │ ├── 2016orlater-InstallWSUSwPreloadedSUSDB.ps1 │ ├── Add local administrator.ps1 │ ├── Copy Missing File to Device.ps1 │ ├── Detect Restart.ps1 │ ├── Enable or Disable Local Administrator Account.ps1 │ ├── Fix Windows Update Boot Loop.ps1 │ ├── Get-LenovoOdometerData.ps1 │ ├── Get-RebootHistory.ps1 │ ├── Get-ScheduledTaskInfo.ps1 │ ├── Get-Windows11Compatibility.ps1 │ ├── Invoke-Command.ps1 │ ├── LocalAdminGroup.ps1 │ ├── Remove local admin.ps1 │ ├── Rename Computer.ps1 │ ├── Set-CM Client Logging Option.ps1 │ ├── Start-WindowsCleanup.ps1 │ ├── Trigger Client Baseline Evaluation.ps1 │ ├── Update - Dell BIOS.ps1 │ └── Update logged on user GPOs.ps1 └── TaskSequence │ └── Gather Light.xml ├── pipelines └── secure-scan.yml ├── samples ├── ApplicationFunctions.ps1 ├── CommonFunctions.ps1 ├── Samples.ps1 ├── TokenSample.ps1 └── readme.md └── src └── Console └── Extensions └── Actions └── 172d85e7-bb7a-4479-a6a2-768f175b75cb └── AllStatusMessagesForTsDeployment.xml /.github/workflows/powershell-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/.github/workflows/powershell-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Communityhub/ConsoleExtension/Get BitLocker Recovery Key for a Device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/Communityhub/ConsoleExtension/Get BitLocker Recovery Key for a Device.json -------------------------------------------------------------------------------- /Communityhub/ConsoleExtension/Removable Media Security (secRMM) ConfigMgr console extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/Communityhub/ConsoleExtension/Removable Media Security (secRMM) ConfigMgr console extension.json -------------------------------------------------------------------------------- /Communityhub/ConsoleExtension/Right Click Tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/Communityhub/ConsoleExtension/Right Click Tools.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/SECURITY.md -------------------------------------------------------------------------------- /external/SetupExternalServiceNotifications.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/external/SetupExternalServiceNotifications.ps1 -------------------------------------------------------------------------------- /media/3555935-add-community-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/media/3555935-add-community-hub.png -------------------------------------------------------------------------------- /media/3555935-join-community-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/media/3555935-join-community-hub.png -------------------------------------------------------------------------------- /objects/Baseline/Dell CVE CVE-2021-21551 Issue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Baseline/Dell CVE CVE-2021-21551 Issue.xml -------------------------------------------------------------------------------- /objects/CMPivotQuery/.Net Version installed on Devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/.Net Version installed on Devices -------------------------------------------------------------------------------- /objects/CMPivotQuery/Average Boot Times Per Model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Average Boot Times Per Model -------------------------------------------------------------------------------- /objects/CMPivotQuery/Clients without Boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Clients without Boundary -------------------------------------------------------------------------------- /objects/CMPivotQuery/Collect Windows Update Logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Collect Windows Update Logs -------------------------------------------------------------------------------- /objects/CMPivotQuery/Count of Installed Software Title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Count of Installed Software Title -------------------------------------------------------------------------------- /objects/CMPivotQuery/Defender Antivirus Signature Version Overview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Defender Antivirus Signature Version Overview -------------------------------------------------------------------------------- /objects/CMPivotQuery/Devices with Debug or Verbose Logging enabled: -------------------------------------------------------------------------------- 1 | ClientDiagnostics 2 | | where DebugLoggingEnabled == 'True' 3 | -------------------------------------------------------------------------------- /objects/CMPivotQuery/Find Devices with Missing File: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Find Devices with Missing File -------------------------------------------------------------------------------- /objects/CMPivotQuery/Find clients with Last SMSUID Change date today: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Find clients with Last SMSUID Change date today -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get Battery % for all Users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Get Battery % for all Users -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get Compat Appraiser Version and URL (Feature Updates): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Get Compat Appraiser Version and URL (Feature Updates) -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get Edge Update Policy: -------------------------------------------------------------------------------- 1 | Registry('HKLM:\SOFTWARE\Policies\Microsoft\EdgeUpdate') -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get Feature Update Gated Block IDs (Safeguard Hold IDs): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Get Feature Update Gated Block IDs (Safeguard Hold IDs) -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get Models and Summarize how many BIOS versions there is for each: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Get Models and Summarize how many BIOS versions there is for each -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get Windows Feature Update Block GUIDs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Get Windows Feature Update Block GUIDs -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get user profiles over 90 days old: -------------------------------------------------------------------------------- 1 | USMUserProfile | where Special == false and LastUseTime < (now() - 90d) -------------------------------------------------------------------------------- /objects/CMPivotQuery/Information on Windows cumulative updates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Information on Windows cumulative updates -------------------------------------------------------------------------------- /objects/CMPivotQuery/List - Most Recent Event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/List - Most Recent Event -------------------------------------------------------------------------------- /objects/CMPivotQuery/List - Wireless Adapter Info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/List - Wireless Adapter Info -------------------------------------------------------------------------------- /objects/CMPivotQuery/List TFTP BlockSize and WindowSize for PXE enabled DPs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/List TFTP BlockSize and WindowSize for PXE enabled DPs -------------------------------------------------------------------------------- /objects/CMPivotQuery/List local administrator accounts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/List local administrator accounts -------------------------------------------------------------------------------- /objects/CMPivotQuery/OS - Windows Versions Summarization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/OS - Windows Versions Summarization -------------------------------------------------------------------------------- /objects/CMPivotQuery/Scan for Dell dbutil vulnerability impacted devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Scan for Dell dbutil vulnerability impacted devices -------------------------------------------------------------------------------- /objects/CMPivotQuery/Show Connected USB Audio Devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Show Connected USB Audio Devices -------------------------------------------------------------------------------- /objects/CMPivotQuery/Show Windows 11 incompatible devices and upgrade blockers from registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Show Windows 11 incompatible devices and upgrade blockers from registry -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize - Corrupted Local Group Policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize - Corrupted Local Group Policy -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize - Inactivity Lockout Timeout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize - Inactivity Lockout Timeout -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize - PowerShell Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize - PowerShell Versions -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize - PowerShellv2 Installation Status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize - PowerShellv2 Installation Status -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize - SMBv1 Client Audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize - SMBv1 Client Audit -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize - SMBv1 Operational Status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize - SMBv1 Operational Status -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize - Windows OS Versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize - Windows OS Versions -------------------------------------------------------------------------------- /objects/CMPivotQuery/Summarize Windows Client OS Editions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Summarize Windows Client OS Editions -------------------------------------------------------------------------------- /objects/CMPivotQuery/Teams versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Teams versions -------------------------------------------------------------------------------- /objects/CMPivotQuery/Troubleshoot Windows Update Reboot Loop - Find All Updates with CommitRequired set to 1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Troubleshoot Windows Update Reboot Loop - Find All Updates with CommitRequired set to 1 -------------------------------------------------------------------------------- /objects/CMPivotQuery/Use strcat() to combine two string columns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/CMPivotQuery/Use strcat() to combine two string columns -------------------------------------------------------------------------------- /objects/ConfigurationItem/CI - Audit PowerShell 2.0 Host usage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/CI - Audit PowerShell 2.0 Host usage.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/CMTrace Symbolic Link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/CMTrace Symbolic Link.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Check if file exists (Log4j).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/Check if file exists (Log4j).xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Dell CVE CVE-2021-21551 Issue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/Dell CVE CVE-2021-21551 Issue.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Feature Update - No logged on interactive user - Failed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/Feature Update - No logged on interactive user - Failed.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Feature Update - SetupDiag Inventory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/Feature Update - SetupDiag Inventory.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/LOG4J - Existence Test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/LOG4J - Existence Test.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/LOG4J - Hash Level Evaluation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/LOG4J - Hash Level Evaluation.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Log4j - Jar files containing JndiLookup.class.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/Log4j - Jar files containing JndiLookup.class.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Prune IIS Logs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/Prune IIS Logs.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Show Seconds in System Clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/Show Seconds in System Clock.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/TFTP BlockSize and WindowSize for PXE enabled DPs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConfigurationItem/TFTP BlockSize and WindowSize for PXE enabled DPs.xml -------------------------------------------------------------------------------- /objects/ConsoleExtension/Removable Media Security (secRMM) ConfigMgr console extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConsoleExtension/Removable Media Security (secRMM) ConfigMgr console extension.json -------------------------------------------------------------------------------- /objects/ConsoleExtension/Right Click Tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConsoleExtension/Right Click Tools.json -------------------------------------------------------------------------------- /objects/ConsoleExtensionCab/AllStatusMessageForTsDeployment.cab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/ConsoleExtensionCab/AllStatusMessageForTsDeployment.cab -------------------------------------------------------------------------------- /objects/Report/Bitlocker - Compliance by Collection.rdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Report/Bitlocker - Compliance by Collection.rdl -------------------------------------------------------------------------------- /objects/Report/History of Remeditation for specific Compliance Item.rdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Report/History of Remeditation for specific Compliance Item.rdl -------------------------------------------------------------------------------- /objects/Script/2012R2InstallWSUSwPreloadedSUSDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/2012R2InstallWSUSwPreloadedSUSDB.ps1 -------------------------------------------------------------------------------- /objects/Script/2016orlater-InstallWSUSwPreloadedSUSDB.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/2016orlater-InstallWSUSwPreloadedSUSDB.ps1 -------------------------------------------------------------------------------- /objects/Script/Add local administrator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Add local administrator.ps1 -------------------------------------------------------------------------------- /objects/Script/Copy Missing File to Device.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Copy Missing File to Device.ps1 -------------------------------------------------------------------------------- /objects/Script/Detect Restart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Detect Restart.ps1 -------------------------------------------------------------------------------- /objects/Script/Enable or Disable Local Administrator Account.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Enable or Disable Local Administrator Account.ps1 -------------------------------------------------------------------------------- /objects/Script/Fix Windows Update Boot Loop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Fix Windows Update Boot Loop.ps1 -------------------------------------------------------------------------------- /objects/Script/Get-LenovoOdometerData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Get-LenovoOdometerData.ps1 -------------------------------------------------------------------------------- /objects/Script/Get-RebootHistory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Get-RebootHistory.ps1 -------------------------------------------------------------------------------- /objects/Script/Get-ScheduledTaskInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Get-ScheduledTaskInfo.ps1 -------------------------------------------------------------------------------- /objects/Script/Get-Windows11Compatibility.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Get-Windows11Compatibility.ps1 -------------------------------------------------------------------------------- /objects/Script/Invoke-Command.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Invoke-Command.ps1 -------------------------------------------------------------------------------- /objects/Script/LocalAdminGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/LocalAdminGroup.ps1 -------------------------------------------------------------------------------- /objects/Script/Remove local admin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Remove local admin.ps1 -------------------------------------------------------------------------------- /objects/Script/Rename Computer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Rename Computer.ps1 -------------------------------------------------------------------------------- /objects/Script/Set-CM Client Logging Option.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Set-CM Client Logging Option.ps1 -------------------------------------------------------------------------------- /objects/Script/Start-WindowsCleanup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Start-WindowsCleanup.ps1 -------------------------------------------------------------------------------- /objects/Script/Trigger Client Baseline Evaluation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Trigger Client Baseline Evaluation.ps1 -------------------------------------------------------------------------------- /objects/Script/Update - Dell BIOS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Update - Dell BIOS.ps1 -------------------------------------------------------------------------------- /objects/Script/Update logged on user GPOs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/Script/Update logged on user GPOs.ps1 -------------------------------------------------------------------------------- /objects/TaskSequence/Gather Light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/objects/TaskSequence/Gather Light.xml -------------------------------------------------------------------------------- /pipelines/secure-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/pipelines/secure-scan.yml -------------------------------------------------------------------------------- /samples/ApplicationFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/samples/ApplicationFunctions.ps1 -------------------------------------------------------------------------------- /samples/CommonFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/samples/CommonFunctions.ps1 -------------------------------------------------------------------------------- /samples/Samples.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/samples/Samples.ps1 -------------------------------------------------------------------------------- /samples/TokenSample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/samples/TokenSample.ps1 -------------------------------------------------------------------------------- /samples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/samples/readme.md -------------------------------------------------------------------------------- /src/Console/Extensions/Actions/172d85e7-bb7a-4479-a6a2-768f175b75cb/AllStatusMessagesForTsDeployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub/HEAD/src/Console/Extensions/Actions/172d85e7-bb7a-4479-a6a2-768f175b75cb/AllStatusMessagesForTsDeployment.xml --------------------------------------------------------------------------------