├── .github └── workflows │ └── powershell-analysis.yml ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── Clear Client Cache ├── Confirm-SecureBootUEFI for devices.ps1 ├── Count of Operating Systems per collection ├── How to add an entry to Hosts file.xml ├── How to set Remote Desktop & Firewalls.xml ├── Install-Edge.ps1 ├── LICENSE ├── List of devices which have a service installed ├── List of devices with storage information ├── Logical Disk per Device Chart ├── Query Device Architecture.ps1 ├── Query Windows Power plan per device.ps1 ├── README.md ├── Recently used applications ├── SECURITY.md ├── Shows when devices have restarted in the last seven days ├── objects ├── Application │ └── System Center Updates Publisher.xml ├── Baseline │ ├── Microsoft Exchange Server Vulnerability March 2021.xml │ └── Speculative Execution Side-Channel Vulnerabilities.xml ├── CMPivotQuery │ └── Get Autopilot CSV Info ├── ConfigurationItem │ ├── CVE-2017-5715 - Branch Target Injection.xml │ ├── CVE-2017-5754 - Rogue Data Cache Load.xml │ ├── CVE-2018-12126, CVE-2018-12130, CVE-2018-12127 and CVE-2019-11091 - Microarchitectural Data Sampling.xml │ ├── CVE-2018-3620 - L1 Terminal Fault.xml │ ├── CVE-2018-3639 - Speculative Store Bypass.xml │ └── Microsoft Exchange 2013, 2016, 2019 SSRF vulnerability check..xml ├── PowerBIReport │ ├── Client Status.pbit │ ├── Content Status.pbit │ ├── Microsoft Edge Management.pbit │ ├── Software Update Compliance Status.pbit │ └── Software Update Deployment Status.pbit ├── Script │ ├── Apply deployment package settings for automatic deployment rule.ps1 │ ├── CMTraceUpdate.ps1 │ ├── Clear Cache.ps1 │ ├── Enable .Net 3.5 Framework.ps1 │ ├── Force software update scan cycle.ps1 │ ├── List last good and current SUP for clients.ps1 │ ├── Resend Software Update State Messages.ps1 │ ├── Reset Client Policy.ps1 │ └── Run Software Update Scan.ps1 └── TaskSequence │ ├── How to Set High Performance Power Plan.xml │ ├── How to Test for HyperVisor.xml │ ├── How to add command line options for OS Upgrade.xml │ ├── How to set Current OS Language to a TS Variable.xml │ ├── How to set timeout for the software updates scan.xml │ ├── How to use & set Windows 10 1803+ Rollback options.xml │ ├── How to use Condition to check if Battery is in use.xml │ ├── How to use Download Retry Variables.xml │ ├── How to use OSDDoNotLogCommand variable.xml │ ├── How to use SMSTSPreserveContent variable.xml │ └── How to use Windows 10 Upgrade Compatibility checks.xml └── pipelines └── secure-scan.yml /.github/workflows/powershell-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/.github/workflows/powershell-analysis.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Clear Client Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Clear Client Cache -------------------------------------------------------------------------------- /Confirm-SecureBootUEFI for devices.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Confirm-SecureBootUEFI for devices.ps1 -------------------------------------------------------------------------------- /Count of Operating Systems per collection: -------------------------------------------------------------------------------- 1 | OperatingSystem | summarize count() by Caption | render piechart -------------------------------------------------------------------------------- /How to add an entry to Hosts file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/How to add an entry to Hosts file.xml -------------------------------------------------------------------------------- /How to set Remote Desktop & Firewalls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/How to set Remote Desktop & Firewalls.xml -------------------------------------------------------------------------------- /Install-Edge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Install-Edge.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/LICENSE -------------------------------------------------------------------------------- /List of devices which have a service installed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/List of devices which have a service installed -------------------------------------------------------------------------------- /List of devices with storage information: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/List of devices with storage information -------------------------------------------------------------------------------- /Logical Disk per Device Chart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Logical Disk per Device Chart -------------------------------------------------------------------------------- /Query Device Architecture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Query Device Architecture.ps1 -------------------------------------------------------------------------------- /Query Windows Power plan per device.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Query Windows Power plan per device.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/README.md -------------------------------------------------------------------------------- /Recently used applications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Recently used applications -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Shows when devices have restarted in the last seven days: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/Shows when devices have restarted in the last seven days -------------------------------------------------------------------------------- /objects/Application/System Center Updates Publisher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Application/System Center Updates Publisher.xml -------------------------------------------------------------------------------- /objects/Baseline/Microsoft Exchange Server Vulnerability March 2021.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Baseline/Microsoft Exchange Server Vulnerability March 2021.xml -------------------------------------------------------------------------------- /objects/Baseline/Speculative Execution Side-Channel Vulnerabilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Baseline/Speculative Execution Side-Channel Vulnerabilities.xml -------------------------------------------------------------------------------- /objects/CMPivotQuery/Get Autopilot CSV Info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/CMPivotQuery/Get Autopilot CSV Info -------------------------------------------------------------------------------- /objects/ConfigurationItem/CVE-2017-5715 - Branch Target Injection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/ConfigurationItem/CVE-2017-5715 - Branch Target Injection.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/CVE-2017-5754 - Rogue Data Cache Load.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/ConfigurationItem/CVE-2017-5754 - Rogue Data Cache Load.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/CVE-2018-12126, CVE-2018-12130, CVE-2018-12127 and CVE-2019-11091 - Microarchitectural Data Sampling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/ConfigurationItem/CVE-2018-12126, CVE-2018-12130, CVE-2018-12127 and CVE-2019-11091 - Microarchitectural Data Sampling.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/CVE-2018-3620 - L1 Terminal Fault.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/ConfigurationItem/CVE-2018-3620 - L1 Terminal Fault.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/CVE-2018-3639 - Speculative Store Bypass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/ConfigurationItem/CVE-2018-3639 - Speculative Store Bypass.xml -------------------------------------------------------------------------------- /objects/ConfigurationItem/Microsoft Exchange 2013, 2016, 2019 SSRF vulnerability check..xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/ConfigurationItem/Microsoft Exchange 2013, 2016, 2019 SSRF vulnerability check..xml -------------------------------------------------------------------------------- /objects/PowerBIReport/Client Status.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/PowerBIReport/Client Status.pbit -------------------------------------------------------------------------------- /objects/PowerBIReport/Content Status.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/PowerBIReport/Content Status.pbit -------------------------------------------------------------------------------- /objects/PowerBIReport/Microsoft Edge Management.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/PowerBIReport/Microsoft Edge Management.pbit -------------------------------------------------------------------------------- /objects/PowerBIReport/Software Update Compliance Status.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/PowerBIReport/Software Update Compliance Status.pbit -------------------------------------------------------------------------------- /objects/PowerBIReport/Software Update Deployment Status.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/PowerBIReport/Software Update Deployment Status.pbit -------------------------------------------------------------------------------- /objects/Script/Apply deployment package settings for automatic deployment rule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/Apply deployment package settings for automatic deployment rule.ps1 -------------------------------------------------------------------------------- /objects/Script/CMTraceUpdate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/CMTraceUpdate.ps1 -------------------------------------------------------------------------------- /objects/Script/Clear Cache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/Clear Cache.ps1 -------------------------------------------------------------------------------- /objects/Script/Enable .Net 3.5 Framework.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/Enable .Net 3.5 Framework.ps1 -------------------------------------------------------------------------------- /objects/Script/Force software update scan cycle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/Force software update scan cycle.ps1 -------------------------------------------------------------------------------- /objects/Script/List last good and current SUP for clients.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/List last good and current SUP for clients.ps1 -------------------------------------------------------------------------------- /objects/Script/Resend Software Update State Messages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/Resend Software Update State Messages.ps1 -------------------------------------------------------------------------------- /objects/Script/Reset Client Policy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/Reset Client Policy.ps1 -------------------------------------------------------------------------------- /objects/Script/Run Software Update Scan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/Script/Run Software Update Scan.ps1 -------------------------------------------------------------------------------- /objects/TaskSequence/How to Set High Performance Power Plan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to Set High Performance Power Plan.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to Test for HyperVisor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to Test for HyperVisor.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to add command line options for OS Upgrade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to add command line options for OS Upgrade.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to set Current OS Language to a TS Variable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to set Current OS Language to a TS Variable.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to set timeout for the software updates scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to set timeout for the software updates scan.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to use & set Windows 10 1803+ Rollback options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to use & set Windows 10 1803+ Rollback options.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to use Condition to check if Battery is in use.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to use Condition to check if Battery is in use.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to use Download Retry Variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to use Download Retry Variables.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to use OSDDoNotLogCommand variable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to use OSDDoNotLogCommand variable.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to use SMSTSPreserveContent variable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to use SMSTSPreserveContent variable.xml -------------------------------------------------------------------------------- /objects/TaskSequence/How to use Windows 10 Upgrade Compatibility checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/objects/TaskSequence/How to use Windows 10 Upgrade Compatibility checks.xml -------------------------------------------------------------------------------- /pipelines/secure-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/configmgr-hub-firstparty/HEAD/pipelines/secure-scan.yml --------------------------------------------------------------------------------