3 Best Methods to Import SCCM PowerShell Module Cmdlets

Let’s learn 3 Best Methods to Import SCCM PowerShell Module Cmdlets. The SCCM PS module is a collection of CMDLets available to perform SCCM administration tasks.

Microsoft updates the SCCM PowerShell Commandlets with every release of the product. We perform SCCM admin Activities through the console. By default, the console is installed on the site servers such as primary and CAS. You can install it on Windows 11 or Windows 10 PCs.

No doubt, the SCCM console is user-friendly and easy to use. However, SCCM PowerShell cmdlets are equally handy in automating SCCM tasks. SCCM Automation is one of the trigger points to start using PowerShell Cmdlets.

The PowerShell module is updated with every SCCM new release. These cmdlets are not imported to PowerShell by default. We have to import it to the PowerShell in the site server.

Patch My PC

The latest release of Configuration Manager Current branch is 2111; when you install the SCCM console, the path to the SCCM PowerShell module is added to the system environment variable PSModulePath. You can get More details below section.

New CMDLets with SCCM 2203

The following are the two SCCM PowerShell CMDLets added with the release of the 2203 version. You will see How to Import SCCM PowerShell Module in the following sections.

  • Get-CMAADTenant: Get an Azure Active Directory (Azure AD) tenant from the site.
  • Set-CMCollectionCloudSync: Configure cloud sync features for a collection.
How to Import SCCM PowerShell Module 11
How to Import SCCM PowerShell Module 11

PowerShell Execution Policy Settings

You need to ensure that all the prerequisites are in place before using the SCCM PowerShell modules. You must change the execution policy with a command as the best practice. The PowerShell Execution Policy Settings are important here.

PS C:\Users\anoop.MEMCM> Get-ExecutionPolicy
RemoteSigned
How to Import SCCM PowerShell Module 6
How to Import SCCM PowerShell Module 6

You can run the Get-ExecutionPolicy command to understand whether the execution policy is set correctly or not. The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose you to security risks.

Adaptiva

Try to run the following command – Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process and select A for the LAB environments. For the production environment, you need to follow security best practices.


PS C:\Users\anoop.MEMCM> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process

Execution Policy Change
The execution policy helps protect you from scripts that you do not trust. Changing the execution policy might expose
you to the security risks described in the about_Execution_Policies help topic at
https:/go.microsoft.com/fwlink/?LinkID=135170. Do you want to change the execution policy?
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "N"):A
How to Import SCCM PowerShell Module 8
How to Import SCCM PowerShell Module 8

SCCM PowerShell Module Prerequisites

SCCM PowerShell module requires Microsoft .NET version 4.7.2 or later from 2103 onwards. So if you the workstation or Windows 10 or Windows 11 device (even terminal server) from where you are running the SCCM PowerShell command must have the Microsoft .NET version 4.7.2 or later.

You also need to have elevated permissions to perform some of the actions as explained in the below sections. Some of the SCCM PowerShell cmdlets don’t support PowerShell 7 version because of the .Net Framework dependencies.

The following error is the known issue with PowerShell v7.0 – This cmdlet only supports the “.NET Framework” runtime.

Best Method Import SCCM PowerShell Module #1

The easiest method to open the PowerShell CMDLets for SCCM is directly from the SCCM Admin console. The best method to import the SCCM PowerShell Command module.

  • Launch the SCCM console.
  • In the upper-left corner, there’s a blue rectangle.
  • Select the white arrow in the blue rectangle.
How to Import SCCM PowerShell Module 1
How to Import SCCM PowerShell Module 1

From the dropdown options, choose Connect via Windows PowerShell. You can also use Connect via the Windows PowerShell ISE option, but that is for the later stage of this post.

How to Import SCCM PowerShell Module 2
How to Import SCCM PowerShell Module 2

The above steps ensure that Windows PowerShell loads in the SCCM site context. You’ll see a prompt that contains your site code. For example, if the site code is “MEM,” the prompt looks like this: 

PS MEM:\>
How to Import SCCM PowerShell Module 3
How to Import SCCM PowerShell Module 3

You can verify whether the SCCM PowerShell module works or not using the following commend Get-CMSite cmdlet.

If everything works OK, this command must return information about the SCCM site you are connected to and any child site systems. You can see the secondary and primary server details in the following example.

PS MEM:\> Get-CMSite


SmsProviderObjectPath       : SMS_Site.SiteCode="HS0"
BuildNumber                 : 9078
ContentLibraryLocation      :
ContentLibraryMoveProgress  : 100
ContentLibraryStatus        : 3
Features                    :
InstallDir                  : C:\Program Files\Microsoft Configuration Manager\
Mode                        : 0
ReportingSiteCode           : MEM
RequestedStatus             : 125
SecondarySiteCMUpdateStatus : 1
ServerName                  : MEMCMSecondary.memcm.com
SiteCode                    : HS0
SiteName                    : HTMD Secondary Site Server
Status                      : 1
TimeZoneInfo                : 00000000 0000 0000 0000 0000 0000 0000 0000 0000 00000000 0000 0000 0000 0000 0000 0000
                              0000 0000 00000000
Type                        : 1
Version                     : 5.00.9078.1000

SmsProviderObjectPath       : SMS_Site.SiteCode="MEM"
BuildNumber                 : 9078
ContentLibraryLocation      :
ContentLibraryMoveProgress  : 100
ContentLibraryStatus        : 3
Features                    : 0000000000000000000000000000000000000000000000000000000000000000
InstallDir                  : F:\Program Files\Microsoft Configuration Manager
Mode                        : 0
ReportingSiteCode           :
RequestedStatus             : 125
SecondarySiteCMUpdateStatus : 2
ServerName                  : CMMEMCM.memcm.com
SiteCode                    : MEM
SiteName                    : MEMCM Standalone Primary Server for HTMD
Status                      : 1
TimeZoneInfo                : 00000000 0000 0000 0000 0000 0000 0000 0000 0000 00000000 0000 0000 0000 0000 0000 0000
                              0000 0000 00000000
Type                        : 2
Version                     : 5.00.9078.1000
How to Import SCCM PowerShell Module 4
How to Import SCCM PowerShell Module 4

Import the SCCM PowerShell module to the Existing PS Session #2

You can import SCCM PowerShell module to the existing PS session and use the SCCM PS CMDLets to automate the tasks in SCCM. This is the manual method of loading the SCCM module.

Previously, you had to navigate to admin console installation location C:\Program Files (x86)\Microsoft Endpoint Manager\AdminConsole\bin to import the module. You will find the PowerShell module file ConfigurationManager.psd1 in that folder.

NOTE! – You can use the following command to import the SCCM PowerShell module. This PowerShell module is added to the system environment variable PSMoudlePath from the SCCM 2111 version.

You can check environment variables using sysdm.CPL command from RUN menu. You can check the following path explained in the below screenshot as well to get more details on SCCM PowerShell module environment variables.

SCCM PS Module environment variable PSMoudlePath
SCCM PS Module environment variable PSMoudlePath

However, you don’t need to do this anymore. You can import the SCCM PowerShell module with a simple command.

Import-Module ConfigurationManager
How to Import SCCM PowerShell Module 8
How to Import SCCM PowerShell Module 8

Import SCCM PowerShell Cmdlet using PowerShell ISE

You can use a different option to import the SCCM PowerShell module or Cmdlets from the admin console using the following steps.

  • Launch the SCCM console.
  • In the upper-left corner, there’s a blue rectangle.
  • Select the white arrow in the blue rectangle.
  • From the dropdown options, choose Connect via Windows PowerShell ISE.
  • Press ‘F5’ to run this script.
Import SCCM PowerShell Cmdlet using PowerShell ISE
Import SCCM PowerShell Cmdlet using PowerShell ISE

The following is the PowerShell that is used with SCCM 2203 version to import SCCM PS modules and configure an environment variable called PSMoudlePath.

# Press 'F5' to run this script. Running this script will load the ConfigurationManager
# module for Windows PowerShell and will connect to the site.
#
# This script was auto-generated at '4/12/2022 5:01:31 AM'.

# Site configuration
$SiteCode = "MEM" # Site code 
$ProviderMachineName = "CMMEMCM.memcm.com" # SMS Provider machine name

# Customizations
$initParams = @{}
#$initParams.Add("Verbose", $true) # Uncomment this line to enable verbose logging
#$initParams.Add("ErrorAction", "Stop") # Uncomment this line to stop the script on any errors

# Do not change anything below this line

# Import the ConfigurationManager.psd1 module 
if((Get-Module ConfigurationManager) -eq $null) {
    Import-Module "$($ENV:SMS_ADMIN_UI_PATH)\..\ConfigurationManager.psd1" @initParams 
}

# Connect to the site's drive if it is not already present
if((Get-PSDrive -Name $SiteCode -PSProvider CMSite -ErrorAction SilentlyContinue) -eq $null) {
    New-PSDrive -Name $SiteCode -PSProvider CMSite -Root $ProviderMachineName @initParams
}

# Set the current location to be the site code.
Set-Location "$($SiteCode):\" @initParams

The above script that is automatically created by SCCM is not digitally signed and hence ISE gives you an error when you try to run this. This is mainly because of the PowerShell execution policy that is explained in the above section.

I have fixed it by running the PowerShell Execution policy command mentioned in the above section of this post as you can see in the screenshot below.

PS C:\WINDOWS\system32> C:\Users\MEMCM\AppData\Local\Temp\ISEConnect_MEM – MEMCM Standalone Primary Server for HTMD.ps1
File C:\Users\MEMCM\AppData\Local\Temp\ISEConnect_MEM – MEMCM Standalone Primary Server for HTMD.ps1 cannot be loaded. The file C:\Users\MEMCM\AppData\Local\Temp\ISEConnect_MEM – MEMCM Standalone Primary Server for
HTMD.ps1 is not digitally signed. You cannot run this script on the current system. For more information about running scripts and setting execution policy, see about_Execution_Policies at
https:/go.microsoft.com/fwlink/?LinkID=135170.
+ CategoryInfo : SecurityError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : unauthorized access

How to Import SCCM PowerShell Module 22
How to Import SCCM PowerShell Module 22

Import Module for SCCM 2107 or previous versions

Now, Lets us learn how to import the SCCM PowerShell Module into a site server. Since I have SCM 2107, you need to perform it manually.

  • Open PowerShell in Elevated Mode.
  • I will first navigate to "C:\Program Files (x86)\Microsoft Endpoint Manager\AdminConsole\bin and type the following command.
Import-Module "C:\Program Files (x86)\Microsoft Endpoint Manager\AdminConsole\bin\ConfigurationManager.psd1"
How to Import SCCM PowerShell Module 9
How to Import SCCM PowerShell Module 9

Now, I will create the SCCM site drive as I am importing SCCM PowerShell Module for the first time into the site server. Type the following command.

New-PSDrive -Name "<Type your Site Code here>" -PSProvider "CMSite" -Root "<Type_FQDN_Name_of_the_site_Server>" -Description "Primary site"
How to Import SCCM PowerShell Module 10
How to Import SCCM PowerShell Module 10

Verify SCCM PowerShell Cmdlets Connectivity

You can Verify SCCM PowerShell CMDLet Connectivity using the following PS command. To verify SCCM PowerShell Module is imported successfully, type the following command.

Get-CMSite
How to Import SCCM PowerShell Module 11
How to Import SCCM PowerShell Module 11

Verify the PowerShell Cmdlets Version Details

To verify latest SCCM PowerShell Module is imported, check the SCCM Module version and path. Type the following command.

 (Get-Module -Name ConfigurationManager).Version
 (Get-Module -Name ConfigurationManager).Path
How to Import SCCM PowerShell Module 12
How to Import SCCM PowerShell Module 12

To check all the available Configuration Manager commands, type the following PowerShell command.

get-command -Module ConfigurationManager
How to Import SCCM PowerShell Module 13
How to Import SCCM PowerShell Module 13

To check the number of Configuration Manager commands available, type the following PowerShell command.

get-command -Module ConfigurationManager | Measure-Object
How to Import SCCM PowerShell Module 14
How to Import SCCM PowerShell Module 14

To find cmdlets related to a particular object, for example, cmdlets related to Applications, type the PowerShell command.

get-help Application
How to Import SCCM PowerShell Module 15
How to Import SCCM PowerShell Module 15

Type the following command to display all configuration Manager commands in the Out-grid view.

get-command -Module ConfigurationManager | ogv
How to Import SCCM PowerShell Module 19
How to Import SCCM PowerShell Module 19

The next post will learn about performing various SCCM tasks using SCCM PowerShell Cmdlets.

Update SCCM PowerShell Module CMDLets

The SCCM PowerShell Module gets updated as part of SCCM updates and servicing to the newer version of the SCCM site. Example: Upgrade to the 2203 version of ConfigMgr.

NOTE! – Don’t update help if you are on the 2010 or earlier version of SCCM. You need to update the SCCM site to version 2103 or later and update the local help content.

Using the Update-Help cmdlet, you can get the latest information for the ConfigMgr PowerShell module. You can run the following command to update the CMDLet help updates.

Update-Help -Module ConfigurationManager
How to Import SCCM PowerShell Module 18
How to Import SCCM PowerShell Module 18

There is the addition of new Cmdlets and deprecated and replacement of Cmdlets for various SCCM objects. You can track the latest changes from this MS article :

Configuration Manager PowerShell cmdlets – Configuration Manager | Microsoft Docs

List of SCCM PowerShell Cmdlets Functions of SCCM 2203 Version

Let’s check the list of updated SCCM PowerShell Command Lets or Functions. I have taken an example from SCCM 2203 Version.

You can check out the following list to find the updated SCCM PowerShell Module commandlets and functions for SCCM. There are 1184 SCCM PowerShell command lets or functions available with the latest version of Configuration Manager.

List of SCCM PowerShell Command Lets Functions of SCCM 2203 Version
List of SCCM PowerShell Command Lets Functions of SCCM 2203 Version
  1. Add-CMDeviceCollectionExcludeMembershipRule
  2. Add-CMDeviceCollectionIncludeMembershipRule
  3. Add-CMUserCollectionExcludeMembershipRule
  4. Add-CMUserCollectionIncludeMembershipRule
  5. Get-CMAdvancedThreatProtectionPolicy
  6. Get-CMCertificateProfilePfx
  7. Get-CMCertificateProfileScep
  8. Get-CMCertificateProfileTrustedRootCA
  9. Get-CMClientCertificateProfileConfigurationItem
  10. Get-CMCollectionDirectMembershipRule
  11. Get-CMCollectionExcludeMembershipRule
  12. Get-CMCollectionFullEvaluationStatus
  13. Get-CMCollectionIncludeMembershipRule
  14. Get-CMCollectionIncrementalEvaluationStatus
  15. Get-CMCollectionInfoFromFullEvaluationQueue
  16. Get-CMCollectionInfoFromIncrementalEvaluationQueue
  17. Get-CMCollectionInfoFromManualEvaluationQueue
  18. Get-CMCollectionInfoFromNewEvaluationQueue
  19. Get-CMCollectionQueryMembershipRule
  20. Get-CMConfigurationPolicyXml
  21. Get-CMDeviceCollection
  22. Get-CMDeviceCollectionDirectMembershipRule
  23. Get-CMDeviceCollectionExcludeMembershipRule
  24. Get-CMDeviceCollectionIncludeMembershipRule
  25. Get-CMDeviceCollectionQueryMembershipRule
  26. Get-CMEmailProfile
  27. Get-CMMicrosoftEdgeBrowserProfiles
  28. Get-CMOneDriveBusinessProfile
  29. Get-CMRemoteConnectionProfileConfigurationItem
  30. Get-CMTermsAndConditionsConfigurationItem
  31. Get-CMTSStepApplyDataImage
  32. Get-CMTSStepApplyDriverPackage
  33. Get-CMTSStepApplyNetworkSetting
  34. Get-CMTSStepApplyOperatingSystem
  35. Get-CMTSStepApplyWindowsSetting
  36. Get-CMTSStepAutoApplyDriver
  37. Get-CMTSStepCaptureNetworkSettings
  38. Get-CMTSStepCaptureSystemImage
  39. Get-CMTSStepCaptureUserState
  40. Get-CMTSStepCaptureWindowsSettings
  41. Get-CMTSStepConnectNetworkFolder
  42. Get-CMTSStepDisableBitLocker
  43. Get-CMTSStepDownloadPackageContent
  44. Get-CMTSStepEnableBitLocker
  45. Get-CMTSStepInstallApplication
  46. Get-CMTSStepInstallSoftware
  47. Get-CMTSStepInstallUpdate
  48. Get-CMTSStepJoinDomainWorkgroup
  49. Get-CMTSStepOfflineEnableBitLocker
  50. Get-CMTSStepPartitionDisk
  51. Get-CMTSStepPrepareConfigMgrClient
  52. Get-CMTSStepPrepareWindows
  53. Get-CMTSStepPrestartCheck
  54. Get-CMTSStepReboot
  55. Get-CMTSStepReleaseStateStore
  56. Get-CMTSStepRequestStateStore
  57. Get-CMTSStepRestoreUserState
  58. Get-CMTSStepRunCommandLine
  59. Get-CMTSStepRunPowerShellScript
  60. Get-CMTSStepRunTaskSequence
  61. Get-CMTSStepSetDynamicVariable
  62. Get-CMTSStepSetupWindowsAndConfigMgr
  63. Get-CMTSStepSetVariable
  64. Get-CMTSStepUpgradeOperatingSystem
  65. Get-CMUserCollection
  66. Get-CMUserCollectionDirectMembershipRule
  67. Get-CMUserCollectionExcludeMembershipRule
  68. Get-CMUserCollectionIncludeMembershipRule
  69. Get-CMUserCollectionQueryMembershipRule
  70. Get-CMUserDataAndProfileConfigurationItem
  71. Get-CMVpnProfileConfigurationItem
  72. Get-CMWindowsEditionUpgradeConfigurationItem
  73. Get-CMWindowsFirewallPolicy
  74. Get-CMWindowsServicingPlan
  75. Get-CMWindowsUpdate
  76. Get-CMWirelessProfile
  77. Get-CMWirelessProfileConfigurationItem
  78. New-CMDeviceCollection
  79. New-CMUserCollection
  80. New-CMWindowsServicingPlan
  81. Remove-CMCollectionDirectMembershipRule
  82. Remove-CMCollectionExcludeMembershipRule
  83. Remove-CMCollectionIncludeMembershipRule
  84. Remove-CMCollectionQueryMembershipRule
  85. Remove-CMDeviceCollectionDirectMembershipRule
  86. Remove-CMDeviceCollectionExcludeMembershipRule
  87. Remove-CMDeviceCollectionIncludeMembershipRule
  88. Remove-CMDeviceCollectionQueryMembershipRule
  89. Remove-CMTSStepApplyDataImage
  90. Remove-CMTSStepApplyDriverPackage
  91. Remove-CMTSStepApplyNetworkSetting
  92. Remove-CMTSStepApplyOperatingSystem
  93. Remove-CMTSStepApplyWindowsSetting
  94. Remove-CMTSStepAutoApplyDriver
  95. Remove-CMTSStepCaptureNetworkSettings
  96. Remove-CMTSStepCaptureSystemImage
  97. Remove-CMTSStepCaptureUserState
  98. Remove-CMTSStepCaptureWindowsSettings
  99. Remove-CMTSStepConnectNetworkFolder
  100. Remove-CMTSStepDisableBitLocker
  101. Remove-CMTSStepDownloadPackageContent
  102. Remove-CMTSStepEnableBitLocker
  103. Remove-CMTSStepInstallApplication
  104. Remove-CMTSStepInstallSoftware
  105. Remove-CMTSStepInstallUpdate
  106. Remove-CMTSStepJoinDomainWorkgroup
  107. Remove-CMTSStepOfflineEnableBitLocker
  108. Remove-CMTSStepPartitionDisk
  109. Remove-CMTSStepPrepareConfigMgrClient
  110. Remove-CMTSStepPrepareWindows
  111. Remove-CMTSStepPrestartCheck
  112. Remove-CMTSStepReboot
  113. Remove-CMTSStepReleaseStateStore
  114. Remove-CMTSStepRequestStateStore
  115. Remove-CMTSStepRestoreUserState
  116. Remove-CMTSStepRunCommandLine
  117. Remove-CMTSStepRunPowerShellScript
  118. Remove-CMTSStepRunTaskSequence
  119. Remove-CMTSStepSetDynamicVariable
  120. Remove-CMTSStepSetupWindowsAndConfigMgr
  121. Remove-CMTSStepSetVariable
  122. Remove-CMTSStepUpgradeOperatingSystem
  123. Remove-CMUserCollectionDirectMembershipRule
  124. Remove-CMUserCollectionExcludeMembershipRule
  125. Remove-CMUserCollectionIncludeMembershipRule
  126. Remove-CMUserCollectionQueryMembershipRule
  127. Add-CMAppv5XDeploymentType
  128. Add-CMAppvDeploymentType
  129. Add-CMAssetIntelligenceSynchronizationPoint
  130. Add-CMBoundaryToGroup
  131. Add-CMCertificateRegistrationPoint
  132. Add-CMCIDetectionMethod
  133. Add-CMCloudManagementGatewayConnectionPoint
  134. Add-CMCollectionMembershipRule
  135. Add-CMCollectionToAdministrativeUser
  136. Add-CMCollectionToDistributionPointGroup
  137. Add-CMComplianceSettingActiveDirectoryQuery
  138. Add-CMComplianceSettingAssembly
  139. Add-CMComplianceSettingDirectory
  140. Add-CMComplianceSettingFile
  141. Add-CMComplianceSettingIisMetabase
  142. Add-CMComplianceSettingRegistryKey
  143. Add-CMComplianceSettingRegistryKeyValue
  144. Add-CMComplianceSettingRule
  145. Add-CMComplianceSettingScript
  146. Add-CMComplianceSettingSqlQuery
  147. Add-CMComplianceSettingWqlQuery
  148. Add-CMComplianceSettingXPathQuery
  149. Add-CMDataWarehouseServicePoint
  150. Add-CMDeploymentType
  151. Add-CMDeploymentTypeDependency
  152. Add-CMDeploymentTypeInstallBehavior
  153. Add-CMDeploymentTypeReturnCode
  154. Add-CMDeploymentTypeSupersedence
  155. Add-CMDeviceAffinityToUser
  156. Add-CMDeviceCollectionDirectMembershipRule
  157. Add-CMDeviceCollectionQueryMembershipRule
  158. Add-CMDistributionPoint
  159. Add-CMDistributionPointToGroup
  160. Add-CMDriverToDriverPackage
  161. Add-CMEndpointProtectionPoint
  162. Add-CMEnrollmentPoint
  163. Add-CMEnrollmentProxyPoint
  164. Add-CMFallbackStatusPoint
  165. Add-CMMacDeploymentType
  166. Add-CMManagementPoint
  167. Add-CMMobileMsiDeploymentType
  168. Add-CMMsiDeploymentType
  169. Add-CMMulticastServicePoint
  170. Add-CMObjectSecurityScope
  171. Add-CMPassiveSite
  172. Add-CMReportingServicePoint
  173. Add-CMScriptDeploymentType
  174. Add-CMSecurityRoleToAdministrativeUser
  175. Add-CMSecurityScopeToAdministrativeUser
  176. Add-CMServiceConnectionPoint
  177. Add-CMSoftwareUpdatePoint
  178. Add-CMSoftwareUpdateToGroup
  179. Add-CMStateMigrationPoint
  180. Add-CMTaskSequenceDeploymentType
  181. Add-CMTaskSequenceStep
  182. Add-CMUserAffinityToDevice
  183. Add-CMUserCollectionDirectMembershipRule
  184. Add-CMUserCollectionQueryMembershipRule
  185. Add-CMWebApplicationDeploymentType
  186. Add-CMWindowsAppxDeploymentType
  187. Add-CMWindowsPhoneDeploymentType
  188. Add-CMWindowsPhoneStoreDeploymentType
  189. Add-CMWindowsStoreDeploymentType
  190. Approve-CMApprovalRequest
  191. Approve-CMDevice
  192. Approve-CMScript
  193. Approve-CMUserDeviceAffinityRequest
  194. Block-CMCertificate
  195. Block-CMConflictingRecord
  196. Block-CMDevice
  197. Clear-CMClientOperation
  198. Clear-CMComponentStatusMessageCount
  199. Clear-CMMigrationData
  200. Clear-CMOperatingSystemImageUpdateSchedule
  201. Clear-CMOperatingSystemUpgradeUpdateSchedule
  202. Clear-CMPxeDeployment
  203. Clear-CMSiteStatusMessageCount
  204. Convert-CMApplication
  205. Convert-CMDeploymentType
  206. Convert-CMSchedule
  207. ConvertFrom-CMApplication
  208. ConvertFrom-CMConfigurationItem
  209. ConvertFrom-CMIResultObject
  210. ConvertTo-CMApplication
  211. ConvertTo-CMConfigurationItem
  212. ConvertTo-CMIResultObject
  213. Copy-CMBlmSetting
  214. Copy-CMCollection
  215. Copy-CMConfigurationPolicy
  216. Copy-CMSecurityRole
  217. Copy-CMTaskSequence
  218. Copy-CMWdacSetting
  219. Deny-CMApprovalRequest
  220. Deny-CMScript
  221. Deny-CMUserDeviceAffinityRequest
  222. Disable-CMAlert
  223. Disable-CMBaseline
  224. Disable-CMDriver
  225. Disable-CMProgram
  226. Disable-CMSoftwareMeteringRule
  227. Disable-CMSoftwareUpdateAutoDeploymentRule
  228. Disable-CMStatusFilterRule
  229. Disable-CMTaskSequence
  230. Disconnect-CMTrackedObject
  231. Enable-CMAlert
  232. Enable-CMBaseline
  233. Enable-CMDriver
  234. Enable-CMProgram
  235. Enable-CMSiteFeature
  236. Enable-CMSoftwareMeteringRule
  237. Enable-CMSoftwareUpdateAutoDeploymentRule
  238. Enable-CMStatusFilterRule
  239. Enable-CMTaskSequence
  240. Export-CMAntimalwarePolicy
  241. Export-CMApplication
  242. Export-CMBaseline
  243. Export-CMCollection
  244. Export-CMConfigurationItem
  245. Export-CMDriverPackage
  246. Export-CMPackage
  247. Export-CMQuery
  248. Export-CMSecurityRole
  249. Export-CMTaskSequence
  250. Get-CMAADApplication
  251. Get-CMAADTenant
  252. Get-CMAccessAccount
  253. Get-CMAccessLicense
  254. Get-CMAccount
  255. Get-CMActiveDirectoryForest
  256. Get-CMActiveDirectorySite
  257. Get-CMAdministrativeUser
  258. Get-CMAlert
  259. Get-CMAlertSubscription
  260. Get-CMAntimalwarePolicy
  261. Get-CMApplication
  262. Get-CMApplicationDeployment
  263. Get-CMApplicationDeploymentStatus
  264. Get-CMApplicationGroup
  265. Get-CMApplicationGroupDeployment
  266. Get-CMApplicationPhasedDeployment
  267. Get-CMApplicationRevisionHistory
  268. Get-CMApprovalRequest
  269. Get-CMAppVVirtualEnvironment
  270. Get-CMAssetIntelligenceCatalogItem
  271. Get-CMAssetIntelligenceProxy
  272. Get-CMAssetIntelligenceSynchronizationPoint
  273. Get-CMAutoDeploymentRuleDeployment
  274. Get-CMAzureService
  275. Get-CMBaseline
  276. Get-CMBaselineDeployment
  277. Get-CMBaselineDeploymentStatus
  278. Get-CMBaselineSummarizationSchedule
  279. Get-CMBaselineXMLDefinition
  280. Get-CMBlmSetting
  281. Get-CMBootImage
  282. Get-CMBoundary
  283. Get-CMBoundaryGroup
  284. Get-CMBoundaryGroupRelationship
  285. Get-CMBoundaryGroupSiteSystem
  286. Get-CMCategory
  287. Get-CMCertificate
  288. Get-CMCertificateRegistrationPoint
  289. Get-CMClientCertificatePfx
  290. Get-CMClientHealthSummary
  291. Get-CMClientOperation
  292. Get-CMClientPushInstallation
  293. Get-CMClientSetting
  294. Get-CMClientSettingDeployment
  295. Get-CMClientStatusSetting
  296. Get-CMClientStatusUpdateSchedule
  297. Get-CMCloudDistributionPoint
  298. Get-CMCloudManagementGateway
  299. Get-CMCloudManagementGatewayConnectionPoint
  300. Get-CMCollection
  301. Get-CMCollectionDependency
  302. Get-CMCollectionDependent
  303. Get-CMCollectionEvaluationStatus
  304. Get-CMCollectionInfoFromEvaluationQueue
  305. Get-CMCollectionMember
  306. Get-CMCollectionMembershipEvaluationComponent
  307. Get-CMCollectionMembershipRule
  308. Get-CMCollectionSetting
  309. Get-CMComplianceRule
  310. Get-CMComplianceSetting
  311. Get-CMComponentStatusMessage
  312. Get-CMComponentStatusSetting
  313. Get-CMComputerAssociation
  314. Get-CMConfigurationItem
  315. Get-CMConfigurationItemHistory
  316. Get-CMConfigurationItemXMLDefinition
  317. Get-CMConfigurationPlatform
  318. Get-CMConfigurationPolicy
  319. Get-CMConfigurationPolicyDeployment
  320. Get-CMConflictingRecord
  321. Get-CMConnectionManager
  322. Get-CMDatabaseProperty
  323. Get-CMDatabaseReplicationLinkProperty
  324. Get-CMDatabaseReplicationStatus
  325. Get-CMDataWarehouseServicePoint
  326. Get-CMDefaultBoundaryGroup
  327. Get-CMDeployment
  328. Get-CMDeploymentPackage
  329. Get-CMDeploymentStatusDetails
  330. Get-CMDeploymentType
  331. Get-CMDeploymentTypeDependency
  332. Get-CMDeploymentTypeDependencyGroup
  333. Get-CMDeploymentTypeDetectionClause
  334. Get-CMDeploymentTypeInstallBehavior
  335. Get-CMDeploymentTypeRequirement
  336. Get-CMDeploymentTypeReturnCode
  337. Get-CMDeploymentTypeSupersedence
  338. Get-CMDetectedMalware
  339. Get-CMDevice
  340. Get-CMDeviceCategory
  341. Get-CMDeviceCollectionVariable
  342. Get-CMDeviceVariable
  343. Get-CMDiscoveryMethod
  344. Get-CMDistributionPoint
  345. Get-CMDistributionPointDriveInfo
  346. Get-CMDistributionPointGroup
  347. Get-CMDistributionPointInfo
  348. Get-CMDistributionStatus
  349. Get-CMDriver
  350. Get-CMDriverPackage
  351. Get-CMDuplicateHardwareIdGuid
  352. Get-CMDuplicateHardwareIdMacAddress
  353. Get-CMEmailNotificationComponent
  354. Get-CMEndpointProtectionPoint
  355. Get-CMEndpointProtectionSummarizationSchedule
  356. Get-CMEnrollmentPoint
  357. Get-CMEnrollmentProxyPoint
  358. Get-CMExchangeServer
  359. Get-CMFallbackStatusPoint
  360. Get-CMFileReplicationRoute
  361. Get-CMFolder
  362. Get-CMGlobalCondition
  363. Get-CMHardwareRequirement
  364. Get-CMHierarchySetting
  365. Get-CMInitialModifiableSecuredCategory
  366. Get-CMInventoryClass
  367. Get-CMIPSubnet
  368. Get-CMMaintenanceWindow
  369. Get-CMMalwareThreatCategory
  370. Get-CMManagementPoint
  371. Get-CMManagementPointComponent
  372. Get-CMMigrationCollection
  373. Get-CMMigrationEntity
  374. Get-CMMigrationEntityDependency
  375. Get-CMMigrationJob
  376. Get-CMMigrationSource
  377. Get-CMMulticastServicePoint
  378. Get-CMNotification
  379. Get-CMObjectLockDetails
  380. Get-CMObjectSecurityScope
  381. Get-CMOperatingSystemImage
  382. Get-CMOperatingSystemImageUpdateSchedule
  383. Get-CMOperatingSystemInstaller
  384. Get-CMOperatingSystemUpgradeUpdateSchedule
  385. Get-CMOrchestrationGroup
  386. Get-CMPackage
  387. Get-CMPackageDeployment
  388. Get-CMPackageDeploymentStatus
  389. Get-CMPersistentUserSettingsGroup
  390. Get-CMPhase
  391. Get-CMPhasedDeploymentStatus
  392. Get-CMPowerManagementSchema
  393. Get-CMProgram
  394. Get-CMQuery
  395. Get-CMQueryResultMaximum
  396. Get-CMReportingServicePoint
  397. Get-CMResource
  398. Get-CMResultantCollection
  399. Get-CMResultantDeployment
  400. Get-CMResultantSettings
  401. Get-CMScript
  402. Get-CMSecurityRole
  403. Get-CMSecurityRolePermission
  404. Get-CMSecurityScope
  405. Get-CMServiceConnectionPoint
  406. Get-CMSettingDeployment
  407. Get-CMSite
  408. Get-CMSiteComponent
  409. Get-CMSiteDefinition
  410. Get-CMSiteFeature
  411. Get-CMSiteInstallStatus
  412. Get-CMSiteMaintenanceTask
  413. Get-CMSiteRole
  414. Get-CMSiteStatusMessage
  415. Get-CMSiteSummaryTask
  416. Get-CMSiteSystemServer
  417. Get-CMSiteUpdate
  418. Get-CMSiteUpdateHistory
  419. Get-CMSiteUpdateInstallStatus
  420. Get-CMSoftwareDistributionComponent
  421. Get-CMSoftwareInventory
  422. Get-CMSoftwareMeteringRule
  423. Get-CMSoftwareMeteringSetting
  424. Get-CMSoftwareUpdate
  425. Get-CMSoftwareUpdateAutoDeploymentRule
  426. Get-CMSoftwareUpdateBasedClientInstallation
  427. Get-CMSoftwareUpdateCategory
  428. Get-CMSoftwareUpdateContentInfo
  429. Get-CMSoftwareUpdateDeployment
  430. Get-CMSoftwareUpdateDeploymentPackage
  431. Get-CMSoftwareUpdateDeploymentStatus
  432. Get-CMSoftwareUpdateGroup
  433. Get-CMSoftwareUpdateLicense
  434. Get-CMSoftwareUpdatePhasedDeployment
  435. Get-CMSoftwareUpdatePoint
  436. Get-CMSoftwareUpdatePointComponent
  437. Get-CMSoftwareUpdateSummarizationSchedule
  438. Get-CMSoftwareUpdateSyncStatus
  439. Get-CMStateMigrationPoint
  440. Get-CMStatusFilterRule
  441. Get-CMStatusMessageQuery
  442. Get-CMStatusReportingComponent
  443. Get-CMStatusSummarizer
  444. Get-CMSupportedPlatform
  445. Get-CMTaskSequence
  446. Get-CMTaskSequenceDeployment
  447. Get-CMTaskSequenceGroup
  448. Get-CMTaskSequencePhasedDeployment
  449. Get-CMTaskSequenceStep
  450. Get-CMTaskSequenceStepCondition
  451. Get-CMThirdPartyUpdateCatalog
  452. Get-CMThirdPartyUpdateCategory
  453. Get-CMTrackedObject
  454. Get-CMTrustedRootCertificate
  455. Get-CMTSStepConditionFile
  456. Get-CMTSStepConditionFolder
  457. Get-CMTSStepConditionIfStatement
  458. Get-CMTSStepConditionOperatingSystem
  459. Get-CMTSStepConditionQueryWmi
  460. Get-CMTSStepConditionRegistry
  461. Get-CMTSStepConditionSoftware
  462. Get-CMTSStepConditionVariable
  463. Get-CMUpdateGroupDeployment
  464. Get-CMUser
  465. Get-CMUserDeviceAffinity
  466. Get-CMUserDeviceAffinityRequest
  467. Get-CMWdacSetting
  468. Get-CMWinPEOptionalComponentInfo
  469. Import-CMAADClientApplication
  470. Import-CMAADServerApplication
  471. Import-CMAntimalwarePolicy
  472. Import-CMApplication
  473. Import-CMBaseline
  474. Import-CMCertificate
  475. Import-CMClientCertificatePfx
  476. Import-CMCollection
  477. Import-CMComputerInformation
  478. Import-CMConfigurationItem
  479. Import-CMDriver
  480. Import-CMDriverPackage
  481. Import-CMPackage
  482. Import-CMQuery
  483. Import-CMSecurityRole
  484. Import-CMSoftwareLicense
  485. Import-CMTaskSequence
  486. Import-CMUserDeviceAffinity
  487. Import-CMWirelessProfileConfigurationItem
  488. Install-CMClient
  489. Install-CMSiteUpdate
  490. Invoke-CMAnalyzePackage
  491. Invoke-CMBaselineSummarization
  492. Invoke-CMClientAction
  493. Invoke-CMClientOperationSummarization
  494. Invoke-CMCollectionUpdate
  495. Invoke-CMContentRedistribution
  496. Invoke-CMContentValidation
  497. Invoke-CMConvertPackage
  498. Invoke-CMDeploymentSummarization
  499. Invoke-CMDeviceRetire
  500. Invoke-CMDeviceWipe
  501. Invoke-CMEndpointProtectionScan
  502. Invoke-CMEndpointProtectionSummarization
  503. Invoke-CMForestDiscovery
  504. Invoke-CMGroupDiscovery
  505. Invoke-CMOrchestrationGroup
  506. Invoke-CMPromotePreProductionClient
  507. Invoke-CMQuery
  508. Invoke-CMRemoteControl
  509. Invoke-CMReport
  510. Invoke-CMScript
  511. Invoke-CMSecondarySiteUpgrade
  512. Invoke-CMSitePromotePreproductionClient
  513. Invoke-CMSiteUpdateCheck
  514. Invoke-CMSiteUpdateDownload
  515. Invoke-CMSiteUpdatePrerequisiteCheck
  516. Invoke-CMSoftwareUpdateAutoDeploymentRule
  517. Invoke-CMSoftwareUpdateSummarization
  518. Invoke-CMSystemDiscovery
  519. Invoke-CMUserDiscovery
  520. Invoke-CMWmiMethod
  521. Invoke-CMWmiQuery
  522. Lock-CMObject
  523. Merge-CMAntimalwarePolicy
  524. Merge-CMConflictingRecord
  525. Move-CMContentLibrary
  526. Move-CMObject
  527. Move-CMPhasedDeploymentToNext
  528. New-CMAccessAccount
  529. New-CMAccount
  530. New-CMActiveDirectoryForest
  531. New-CMADGroupDiscoveryScope
  532. New-CMAdministrativeUser
  533. New-CMAdministrativeUserPermission
  534. New-CMAdvancedThreatProtectionPolicy
  535. New-CMAlertSubscription
  536. New-CMAntimalwarePolicy
  537. New-CMAntimalwarePolicyDeployment
  538. New-CMApplication
  539. New-CMApplicationAutoPhasedDeployment
  540. New-CMApplicationDeployment
  541. New-CMApplicationDisplayInfo
  542. New-CMApplicationGroup
  543. New-CMApplicationGroupDeployment
  544. New-CMAppVVirtualEnvironment
  545. New-CMAssetIntelligenceCatalogItem
  546. New-CMAutoDeploymentRuleDeployment
  547. New-CMBaseline
  548. New-CMBaselineDeployment
  549. New-CMBLEncryptionMethodPolicy
  550. New-CMBLEncryptionMethodWithXts
  551. New-CMBlmSetting
  552. New-CMBMSClientConfigureCheckIntervalPolicy
  553. New-CMBMSFDVEncryptionPolicy
  554. New-CMBMSOSDEncryptionPolicy
  555. New-CMBMSUserExemptionPolicy
  556. New-CMBootableMedia
  557. New-CMBootImage
  558. New-CMBoundary
  559. New-CMBoundaryGroup
  560. New-CMBoundaryGroupRelationship
  561. New-CMCaptureMedia
  562. New-CMCategory
  563. New-CMCertificateProfilePfx
  564. New-CMCertificateProfileScep
  565. New-CMCertificateProfileTrustedRootCA
  566. New-CMClientCertificateProfileConfigurationItem
  567. New-CMClientSetting
  568. New-CMClientSettingDeployment
  569. New-CMCloudDistributionPoint
  570. New-CMCloudManagementAzureService
  571. New-CMCloudManagementGateway
  572. New-CMCollection
  573. New-CMCoManagementPolicy
  574. New-CMComplianceRuleAssembly
  575. New-CMComplianceRuleExistential
  576. New-CMComplianceRuleFileFolderAttribute
  577. New-CMComplianceRuleFileFolderDate
  578. New-CMComplianceRuleFileFolderPermission
  579. New-CMComplianceRuleFileFolderSimple
  580. New-CMComplianceRuleFileFolderSize
  581. New-CMComplianceRuleRegistryKeyPermission
  582. New-CMComplianceRuleValue
  583. New-CMComplianceRuleVersion
  584. New-CMComputerAssociation
  585. New-CMConfigurationItem
  586. New-CMConfigurationPolicyDeployment
  587. New-CMDeploymentTypeDependencyGroup
  588. New-CMDetectionClauseDirectory
  589. New-CMDetectionClauseFile
  590. New-CMDetectionClauseMacBundle
  591. New-CMDetectionClauseMacPackage
  592. New-CMDetectionClauseRegistryKey
  593. New-CMDetectionClauseRegistryKeyValue
  594. New-CMDetectionClauseWindowsInstaller
  595. New-CMDeviceCategory
  596. New-CMDeviceCollectionVariable
  597. New-CMDeviceVariable
  598. New-CMDistributionPointGroup
  599. New-CMDriverPackage
  600. New-CMDuplicateHardwareIdGuid
  601. New-CMDuplicateHardwareIdMacAddress
  602. New-CMEmailProfile
  603. New-CMEmbeddedObjectInstance
  604. New-CMEmbeddedProperty
  605. New-CMEmbeddedPropertyList
  606. New-CMEnhancedPIN
  607. New-CMExchangeClientAccessServer
  608. New-CMExchangeConnectorAccessRule
  609. New-CMExchangeConnectorApplicationSetting
  610. New-CMExchangeConnectorEmailManagementSetting
  611. New-CMExchangeConnectorGeneralSetting
  612. New-CMExchangeConnectorPasswordSetting
  613. New-CMExchangeConnectorSecuritySetting
  614. New-CMExchangeServer
  615. New-CMFDVDenyWriteAccessPolicy
  616. New-CMFDVPassPhrasePolicy
  617. New-CMFileReplicationRoute
  618. New-CMFileSystemAccessControlEntry
  619. New-CMFolder
  620. New-CMGlobalCondition
  621. New-CMGlobalConditionActiveDirectoryQuery
  622. New-CMGlobalConditionAssembly
  623. New-CMGlobalConditionExpression
  624. New-CMGlobalConditionFile
  625. New-CMGlobalConditionIisMetabase
  626. New-CMGlobalConditionOmaUri
  627. New-CMGlobalConditionRegistryKey
  628. New-CMGlobalConditionRegistryValue
  629. New-CMGlobalConditionScript
  630. New-CMGlobalConditionSqlQuery
  631. New-CMGlobalConditionWqlQuery
  632. New-CMGlobalConditionXPathQuery
  633. New-CMHardwareRequirement
  634. New-CMInstallationSourceFile
  635. New-CMInventoryReportClass
  636. New-CMMaintenanceWindow
  637. New-CMMicrosoftEdgeBrowserProfiles
  638. New-CMMigrationJob
  639. New-CMMoreInfoUrlPolicy
  640. New-CMNoOverwritePolicy
  641. New-CMOneDriveBusinessProfile
  642. New-CMOperatingSystemImage
  643. New-CMOperatingSystemImageUpdateSchedule
  644. New-CMOperatingSystemInstaller
  645. New-CMOperatingSystemUpgradeUpdateSchedule
  646. New-CMOrchestrationGroup
  647. New-CMOSPassphrase
  648. New-CMPackage
  649. New-CMPackageDeployment
  650. New-CMPowerManagementCustomPlan
  651. New-CMPrebootRecoveryInfo
  652. New-CMPrestageMedia
  653. New-CMProgram
  654. New-CMQuery
  655. New-CMRDVConfigureBDEPolicy
  656. New-CMRDVDenyWriteAccessPolicy
  657. New-CMRDVPassPhrasePolicy
  658. New-CMRegistryAccessControlEntry
  659. New-CMRemoteConnectionProfileConfigurationItem
  660. New-CMRequirementRuleActiveDirectorySiteValue
  661. New-CMRequirementRuleBooleanValue
  662. New-CMRequirementRuleCMSiteValue
  663. New-CMRequirementRuleCommonValue
  664. New-CMRequirementRuleDeviceOwnershipValue
  665. New-CMRequirementRuleExistential
  666. New-CMRequirementRuleExpression
  667. New-CMRequirementRuleFileAttributeValue
  668. New-CMRequirementRuleFilePermissionValue
  669. New-CMRequirementRuleFreeDiskSpaceValue
  670. New-CMRequirementRuleInputTypeValue
  671. New-CMRequirementRuleOperatingSystemLanguageValue
  672. New-CMRequirementRuleOperatingSystemValue
  673. New-CMRequirementRuleOUValue
  674. New-CMRequirementRuleRegistryKeyPermissionValue
  675. New-CMRequirementRuleScreenResolutionValue
  676. New-CMRootCertificateProfileConfigurationItem
  677. New-CMScCompliancePolicy
  678. New-CMSchedule
  679. New-CMScript
  680. New-CMSecondarySite
  681. New-CMSecurityScope
  682. New-CMSettingDeployment
  683. New-CMSiteSystemServer
  684. New-CMSoftwareCenterTabItem
  685. New-CMSoftwareMeteringRule
  686. New-CMSoftwareUpdateAutoDeploymentRule
  687. New-CMSoftwareUpdateAutoPhasedDeployment
  688. New-CMSoftwareUpdateDeployment
  689. New-CMSoftwareUpdateDeploymentPackage
  690. New-CMSoftwareUpdateGroup
  691. New-CMSoftwareUpdateManualPhasedDeployment
  692. New-CMSoftwareUpdatePhase
  693. New-CMSqlServerSetting
  694. New-CMStandaloneMedia
  695. New-CMStatusFilterRule
  696. New-CMStatusMessageQuery
  697. New-CMStorageFolder
  698. New-CMTaskSequence
  699. New-CMTaskSequenceAutoPhasedDeployment
  700. New-CMTaskSequenceDeployment
  701. New-CMTaskSequenceGroup
  702. New-CMTaskSequenceManualPhasedDeployment
  703. New-CMTaskSequenceMedia
  704. New-CMTaskSequencePhase
  705. New-CMThirdPartyUpdateCatalog
  706. New-CMTpmAutoResealPolicy
  707. New-CMTSNetworkAdapterSetting
  708. New-CMTSPartitionSetting
  709. New-CMTSRule
  710. New-CMTSStepApplyDataImage
  711. New-CMTSStepApplyDriverPackage
  712. New-CMTSStepApplyNetworkSetting
  713. New-CMTSStepApplyOperatingSystem
  714. New-CMTSStepApplyWindowsSetting
  715. New-CMTSStepAutoApplyDriver
  716. New-CMTSStepCaptureNetworkSettings
  717. New-CMTSStepCaptureSystemImage
  718. New-CMTSStepCaptureUserState
  719. New-CMTSStepCaptureWindowsSettings
  720. New-CMTSStepConditionFile
  721. New-CMTSStepConditionFolder
  722. New-CMTSStepConditionIfStatement
  723. New-CMTSStepConditionOperatingSystem
  724. New-CMTSStepConditionOperatingSystemLanguage
  725. New-CMTSStepConditionQueryWmi
  726. New-CMTSStepConditionRegistry
  727. New-CMTSStepConditionSoftware
  728. New-CMTSStepConditionVariable
  729. New-CMTSStepConnectNetworkFolder
  730. New-CMTSStepDisableBitLocker
  731. New-CMTSStepDownloadPackageContent
  732. New-CMTSStepEnableBitLocker
  733. New-CMTSStepInstallApplication
  734. New-CMTSStepInstallSoftware
  735. New-CMTSStepInstallUpdate
  736. New-CMTSStepJoinDomainWorkgroup
  737. New-CMTSStepOfflineEnableBitLocker
  738. New-CMTSStepPartitionDisk
  739. New-CMTSStepPrepareConfigMgrClient
  740. New-CMTSStepPrepareWindows
  741. New-CMTSStepPrestartCheck
  742. New-CMTSStepReboot
  743. New-CMTSStepReleaseStateStore
  744. New-CMTSStepRequestStateStore
  745. New-CMTSStepRestoreUserState
  746. New-CMTSStepRunCommandLine
  747. New-CMTSStepRunPowerShellScript
  748. New-CMTSStepRunTaskSequence
  749. New-CMTSStepSetDynamicVariable
  750. New-CMTSStepSetupWindowsAndConfigMgr
  751. New-CMTSStepSetVariable
  752. New-CMTSStepUpgradeOperatingSystem
  753. New-CMUidPolicy
  754. New-CMUseFddEnforcePolicy
  755. New-CMUseOsEnforcePolicy
  756. New-CMUserDataAndProfileConfigurationItem
  757. New-CMVirtualEnvironmentGroup
  758. New-CMVpnProfileConfigurationItem
  759. New-CMWdacSetting
  760. New-CMWindows10EditionUpgrade
  761. New-CMWindowsFirewallPolicy
  762. New-CMWirelessProfile
  763. New-CMWirelessProfileConfigurationItem
  764. Out-CMSignedWindowsMobileCab
  765. Publish-CMPrestageContent
  766. Publish-CMPrestageContentTaskSequence
  767. Publish-CMThirdPartySoftwareUpdateContent
  768. Remove-CMAccessAccount
  769. Remove-CMAccount
  770. Remove-CMActiveDirectoryForest
  771. Remove-CMAdministrativeUser
  772. Remove-CMAlert
  773. Remove-CMAlertSubscription
  774. Remove-CMAntimalwarePolicy
  775. Remove-CMApplication
  776. Remove-CMApplicationDeployment
  777. Remove-CMApplicationGroup
  778. Remove-CMApplicationGroupDeployment
  779. Remove-CMApplicationPhasedDeployment
  780. Remove-CMApplicationRevisionHistory
  781. Remove-CMAppVVirtualEnvironment
  782. Remove-CMAssetIntelligenceCatalogItem
  783. Remove-CMAssetIntelligenceSynchronizationPoint
  784. Remove-CMAutoDeploymentRuleDeployment
  785. Remove-CMAzureService
  786. Remove-CMBaseline
  787. Remove-CMBaselineDeployment
  788. Remove-CMBlmSetting
  789. Remove-CMBootImage
  790. Remove-CMBoundary
  791. Remove-CMBoundaryFromGroup
  792. Remove-CMBoundaryGroup
  793. Remove-CMBoundaryGroupRelationship
  794. Remove-CMCategory
  795. Remove-CMCertificateRegistrationPoint
  796. Remove-CMClientCertificatePfx
  797. Remove-CMClientOperation
  798. Remove-CMClientSetting
  799. Remove-CMClientSettingDeployment
  800. Remove-CMCloudDistributionPoint
  801. Remove-CMCloudManagementGateway
  802. Remove-CMCloudManagementGatewayConnectionPoint
  803. Remove-CMCollection
  804. Remove-CMCollectionFromAdministrativeUser
  805. Remove-CMCollectionFromDistributionPointGroup
  806. Remove-CMCollectionMembershipRule
  807. Remove-CMComplianceRule
  808. Remove-CMComplianceSetting
  809. Remove-CMComputerAssociation
  810. Remove-CMConfigurationItem
  811. Remove-CMConfigurationPolicy
  812. Remove-CMConfigurationPolicyDeployment
  813. Remove-CMContentDistribution
  814. Remove-CMDataWarehouseServicePoint
  815. Remove-CMDeployment
  816. Remove-CMDeploymentType
  817. Remove-CMDeploymentTypeDependency
  818. Remove-CMDeploymentTypeDependencyGroup
  819. Remove-CMDeploymentTypeInstallBehavior
  820. Remove-CMDeploymentTypeReturnCode
  821. Remove-CMDeploymentTypeSupersedence
  822. Remove-CMDevice
  823. Remove-CMDeviceAffinityFromUser
  824. Remove-CMDeviceCategory
  825. Remove-CMDeviceCollectionVariable
  826. Remove-CMDeviceVariable
  827. Remove-CMDistributionPoint
  828. Remove-CMDistributionPointFromGroup
  829. Remove-CMDistributionPointGroup
  830. Remove-CMDriver
  831. Remove-CMDriverFromDriverPackage
  832. Remove-CMDriverPackage
  833. Remove-CMDuplicateHardwareIdGuid
  834. Remove-CMDuplicateHardwareIdMacAddress
  835. Remove-CMEndpointProtectionPoint
  836. Remove-CMEnrollmentPoint
  837. Remove-CMEnrollmentProxyPoint
  838. Remove-CMExchangeServer
  839. Remove-CMFallbackStatusPoint
  840. Remove-CMFileReplicationRoute
  841. Remove-CMFolder
  842. Remove-CMGlobalCondition
  843. Remove-CMHardwareRequirement
  844. Remove-CMMaintenanceWindow
  845. Remove-CMManagementPoint
  846. Remove-CMMulticastServicePoint
  847. Remove-CMObjectSecurityScope
  848. Remove-CMOperatingSystemImage
  849. Remove-CMOperatingSystemInstaller
  850. Remove-CMOrchestrationGroup
  851. Remove-CMPackage
  852. Remove-CMPackageDeployment
  853. Remove-CMPersistentUserSettingsGroup
  854. Remove-CMProgram
  855. Remove-CMQuery
  856. Remove-CMReportingServicePoint
  857. Remove-CMResource
  858. Remove-CMScript
  859. Remove-CMSecondarySite
  860. Remove-CMSecurityRole
  861. Remove-CMSecurityRoleFromAdministrativeUser
  862. Remove-CMSecurityScope
  863. Remove-CMSecurityScopeFromAdministrativeUser
  864. Remove-CMServiceConnectionPoint
  865. Remove-CMSettingDeployment
  866. Remove-CMSiteRole
  867. Remove-CMSiteSystemServer
  868. Remove-CMSoftwareMeteringRule
  869. Remove-CMSoftwareUpdateAutoDeploymentRule
  870. Remove-CMSoftwareUpdateDeployment
  871. Remove-CMSoftwareUpdateDeploymentPackage
  872. Remove-CMSoftwareUpdateFromGroup
  873. Remove-CMSoftwareUpdateFromPackage
  874. Remove-CMSoftwareUpdateGroup
  875. Remove-CMSoftwareUpdatePhasedDeployment
  876. Remove-CMSoftwareUpdatePoint
  877. Remove-CMStateMigrationPoint
  878. Remove-CMStatusFilterRule
  879. Remove-CMStatusMessageQuery
  880. Remove-CMTaskSequence
  881. Remove-CMTaskSequenceDeployment
  882. Remove-CMTaskSequenceGroup
  883. Remove-CMTaskSequencePhasedDeployment
  884. Remove-CMTaskSequenceStep
  885. Remove-CMThirdPartyUpdateCatalog
  886. Remove-CMUpdateGroupDeployment
  887. Remove-CMUser
  888. Remove-CMUserAffinityFromDevice
  889. Remove-CMWdacSetting
  890. Remove-CMWindows10EditionUpgrade
  891. Rename-CMCategory
  892. Resolve-CMInventoriedSoftwareConflict
  893. Restore-CMApplicationRevisionHistory
  894. Resume-CMApplication
  895. Resume-CMPhasedDeployment
  896. Save-CMDatabaseReplicationDiagnostic
  897. Save-CMEndpointProtectionDefinition
  898. Save-CMSoftwareUpdate
  899. Send-CMAssetIntelligenceCatalogUpdateRequest
  900. Set-CMAccessAccount
  901. Set-CMAccount
  902. Set-CMActiveDirectoryForest
  903. Set-CMAdvancedThreatProtectionPolicy
  904. Set-CMAlert
  905. Set-CMAlertSubscription
  906. Set-CMAntimalwarePolicy
  907. Set-CMApplication
  908. Set-CMApplicationDeployment
  909. Set-CMApplicationGroup
  910. Set-CMApplicationGroupDeployment
  911. Set-CMApplicationPhasedDeployment
  912. Set-CMApplicationSupersedence
  913. Set-CMAppv5XDeploymentType
  914. Set-CMAppvDeploymentType
  915. Set-CMAppVVirtualEnvironment
  916. Set-CMAssetIntelligenceCatalogItem
  917. Set-CMAssetIntelligenceClass
  918. Set-CMAssetIntelligenceSynchronizationPoint
  919. Set-CMAssignedSite
  920. Set-CMAutoDeploymentRuleDeployment
  921. Set-CMBaseline
  922. Set-CMBaselineDeployment
  923. Set-CMBaselineSummarizationSchedule
  924. Set-CMBlmPlaintextStorage
  925. Set-CMBlmSetting
  926. Set-CMBootImage
  927. Set-CMBoundary
  928. Set-CMBoundaryGroup
  929. Set-CMBoundaryGroupRelationship
  930. Set-CMCertificateProfilePfx
  931. Set-CMCertificateProfileScep
  932. Set-CMCertificateProfileTrustedRootCA
  933. Set-CMCertificateRegistrationPoint
  934. Set-CMCISupportedPlatform
  935. Set-CMClientCertificateProfileConfigurationItem
  936. Set-CMClientPushInstallation
  937. Set-CMClientSetting
  938. Set-CMClientSettingBackgroundIntelligentTransfer
  939. Set-CMClientSettingClientCache
  940. Set-CMClientSettingClientPolicy
  941. Set-CMClientSettingCloudService
  942. Set-CMClientSettingComplianceSetting
  943. Set-CMClientSettingComputerAgent
  944. Set-CMClientSettingComputerRestart
  945. Set-CMClientSettingDeliveryOptimization
  946. Set-CMClientSettingEndpointProtection
  947. Set-CMClientSettingEnrollment
  948. Set-CMClientSettingGeneral
  949. Set-CMClientSettingHardwareInventory
  950. Set-CMClientSettingMeteredInternetConnection
  951. Set-CMClientSettingPowerManagement
  952. Set-CMClientSettingRemoteTool
  953. Set-CMClientSettingSoftwareCenter
  954. Set-CMClientSettingSoftwareDeployment
  955. Set-CMClientSettingSoftwareInventory
  956. Set-CMClientSettingSoftwareMetering
  957. Set-CMClientSettingSoftwareUpdate
  958. Set-CMClientSettingStateMessaging
  959. Set-CMClientSettingUserAndDeviceAffinity
  960. Set-CMClientSettingWindowsAnalytics
  961. Set-CMClientStatusSetting
  962. Set-CMClientStatusUpdateSchedule
  963. Set-CMCloudDistributionPoint
  964. Set-CMCloudManagementAzureService
  965. Set-CMCloudManagementGateway
  966. Set-CMCloudManagementGatewayConnectionPoint
  967. Set-CMCollection
  968. Set-CMCollectionCloudSync
  969. Set-CMCollectionMembershipEvaluationComponent
  970. Set-CMCollectionPowerManagement
  971. Set-CMComplianceRuleAssembly
  972. Set-CMComplianceRuleExistential
  973. Set-CMComplianceRuleFileFolderAttribute
  974. Set-CMComplianceRuleFileFolderDate
  975. Set-CMComplianceRuleFileFolderPermission
  976. Set-CMComplianceRuleFileFolderSimple
  977. Set-CMComplianceRuleFileFolderSize
  978. Set-CMComplianceRuleRegistryKeyPermission
  979. Set-CMComplianceRuleValue
  980. Set-CMComplianceRuleVersion
  981. Set-CMComplianceSettingActiveDirectoryQuery
  982. Set-CMComplianceSettingAssembly
  983. Set-CMComplianceSettingDirectory
  984. Set-CMComplianceSettingFile
  985. Set-CMComplianceSettingIisMetabase
  986. Set-CMComplianceSettingRegistryKey
  987. Set-CMComplianceSettingRegistryKeyValue
  988. Set-CMComplianceSettingScript
  989. Set-CMComplianceSettingSqlQuery
  990. Set-CMComplianceSettingWqlQuery
  991. Set-CMComplianceSettingXPathQuery
  992. Set-CMComplianceSupportedPlatform
  993. Set-CMComputerAssociation
  994. Set-CMConfigurationItem
  995. Set-CMConfigurationPolicyDeployment
  996. Set-CMDatabaseProperty
  997. Set-CMDatabaseReplicationLinkProperty
  998. Set-CMDataWarehouseServicePoint
  999. Set-CMDeploymentType
  1000. Set-CMDeploymentTypeDependency
  1001. Set-CMDeploymentTypeDependencyGroup
  1002. Set-CMDeploymentTypeInstallBehavior
  1003. Set-CMDeploymentTypeReturnCode
  1004. Set-CMDeploymentTypeSupersedence
  1005. Set-CMDeviceCategory
  1006. Set-CMDeviceCollectionVariable
  1007. Set-CMDeviceOwnership
  1008. Set-CMDeviceVariable
  1009. Set-CMDiscoveryMethod
  1010. Set-CMDistributionPoint
  1011. Set-CMDistributionPointGroup
  1012. Set-CMDriver
  1013. Set-CMDriverBootImage
  1014. Set-CMDriverPackage
  1015. Set-CMEmailNotificationComponent
  1016. Set-CMEmailProfile
  1017. Set-CMEndpointProtectionPoint
  1018. Set-CMEndpointProtectionSummarizationSchedule
  1019. Set-CMEnrollmentPoint
  1020. Set-CMExchangeServer
  1021. Set-CMFallbackStatusPoint
  1022. Set-CMFileReplicationRoute
  1023. Set-CMFolder
  1024. Set-CMGlobalCondition
  1025. Set-CMGlobalConditionActiveDirectoryQuery
  1026. Set-CMGlobalConditionAssembly
  1027. Set-CMGlobalConditionFile
  1028. Set-CMGlobalConditionGeneral
  1029. Set-CMGlobalConditionIisMetabase
  1030. Set-CMGlobalConditionOmaUri
  1031. Set-CMGlobalConditionRegistryKey
  1032. Set-CMGlobalConditionRegistryValue
  1033. Set-CMGlobalConditionScript
  1034. Set-CMGlobalConditionSqlQuery
  1035. Set-CMGlobalConditionWqlQuery
  1036. Set-CMGlobalConditionXPathQuery
  1037. Set-CMHardwareRequirement
  1038. Set-CMHierarchySetting
  1039. Set-CMMacDeploymentType
  1040. Set-CMMaintenanceWindow
  1041. Set-CMManagementPoint
  1042. Set-CMManagementPointComponent
  1043. Set-CMMicrosoftEdgeBrowserProfiles
  1044. Set-CMMigrationExclusionList
  1045. Set-CMMigrationJob
  1046. Set-CMMigrationSource
  1047. Set-CMMobileMsiDeploymentType
  1048. Set-CMMsiDeploymentType
  1049. Set-CMMulticastServicePoint
  1050. Set-CMNotification
  1051. Set-CMObjectSecurityScope
  1052. Set-CMOneDriveBusinessProfile
  1053. Set-CMOperatingSystemImage
  1054. Set-CMOperatingSystemInstaller
  1055. Set-CMOrchestrationGroup
  1056. Set-CMPackage
  1057. Set-CMPackageDeployment
  1058. Set-CMProgram
  1059. Set-CMQuery
  1060. Set-CMQueryResultMaximum
  1061. Set-CMRemoteConnectionProfileConfigurationItem
  1062. Set-CMReportingServicePoint
  1063. Set-CMScript
  1064. Set-CMScriptDeploymentType
  1065. Set-CMSecurityRole
  1066. Set-CMSecurityRolePermission
  1067. Set-CMSecurityScope
  1068. Set-CMServiceConnectionPoint
  1069. Set-CMSettingDefinition
  1070. Set-CMSettingDeployment
  1071. Set-CMSite
  1072. Set-CMSiteMaintenanceTask
  1073. Set-CMSiteSummaryTask
  1074. Set-CMSiteSystemServer
  1075. Set-CMSoftwareDistributionComponent
  1076. Set-CMSoftwareInventory
  1077. Set-CMSoftwareMeteringRule
  1078. Set-CMSoftwareMeteringSetting
  1079. Set-CMSoftwareUpdate
  1080. Set-CMSoftwareUpdateAutoDeploymentRule
  1081. Set-CMSoftwareUpdateBasedClientInstallation
  1082. Set-CMSoftwareUpdateDeployment
  1083. Set-CMSoftwareUpdateDeploymentPackage
  1084. Set-CMSoftwareUpdateGroup
  1085. Set-CMSoftwareUpdatePhase
  1086. Set-CMSoftwareUpdatePhasedDeployment
  1087. Set-CMSoftwareUpdatePoint
  1088. Set-CMSoftwareUpdatePointComponent
  1089. Set-CMSoftwareUpdateSummarizationSchedule
  1090. Set-CMStateMigrationPoint
  1091. Set-CMStatusFilterRule
  1092. Set-CMStatusMessageQuery
  1093. Set-CMStatusReportingComponent
  1094. Set-CMStatusSummarizer
  1095. Set-CMTaskSequence
  1096. Set-CMTaskSequenceDeployment
  1097. Set-CMTaskSequenceDeploymentType
  1098. Set-CMTaskSequenceGroup
  1099. Set-CMTaskSequencePhase
  1100. Set-CMTaskSequencePhasedDeployment
  1101. Set-CMThirdPartyUpdateCatalog
  1102. Set-CMThirdPartyUpdateCategory
  1103. Set-CMTSStepApplyDataImage
  1104. Set-CMTSStepApplyDriverPackage
  1105. Set-CMTSStepApplyNetworkSetting
  1106. Set-CMTSStepApplyOperatingSystem
  1107. Set-CMTSStepApplyWindowsSetting
  1108. Set-CMTSStepAutoApplyDriver
  1109. Set-CMTSStepCaptureNetworkSettings
  1110. Set-CMTSStepCaptureSystemImage
  1111. Set-CMTSStepCaptureUserState
  1112. Set-CMTSStepCaptureWindowsSettings
  1113. Set-CMTSStepConnectNetworkFolder
  1114. Set-CMTSStepDisableBitLocker
  1115. Set-CMTSStepDownloadPackageContent
  1116. Set-CMTSStepEnableBitLocker
  1117. Set-CMTSStepInstallApplication
  1118. Set-CMTSStepInstallSoftware
  1119. Set-CMTSStepInstallUpdate
  1120. Set-CMTSStepJoinDomainWorkgroup
  1121. Set-CMTSStepOfflineEnableBitLocker
  1122. Set-CMTSStepPartitionDisk
  1123. Set-CMTSStepPrepareConfigMgrClient
  1124. Set-CMTSStepPrepareWindows
  1125. Set-CMTSStepPrestartCheck
  1126. Set-CMTSStepReboot
  1127. Set-CMTSStepReleaseStateStore
  1128. Set-CMTSStepRequestStateStore
  1129. Set-CMTSStepRestoreUserState
  1130. Set-CMTSStepRunCommandLine
  1131. Set-CMTSStepRunPowerShellScript
  1132. Set-CMTSStepRunTaskSequence
  1133. Set-CMTSStepSetDynamicVariable
  1134. Set-CMTSStepSetupWindowsAndConfigMgr
  1135. Set-CMTSStepSetVariable
  1136. Set-CMTSStepUpgradeOperatingSystem
  1137. Set-CMUpdateGroupDeployment
  1138. Set-CMUserDataAndProfileConfigurationItem
  1139. Set-CMVpnProfileConfigurationItem
  1140. Set-CMWdacSetting
  1141. Set-CMWebApplicationDeploymentType
  1142. Set-CMWindows10EditionUpgrade
  1143. Set-CMWindowsAppxDeploymentType
  1144. Set-CMWindowsFirewallPolicy
  1145. Set-CMWindowsPhoneDeploymentType
  1146. Set-CMWindowsPhoneStoreDeploymentType
  1147. Set-CMWindowsStoreDeploymentType
  1148. Set-CMWirelessProfile
  1149. Set-CMWirelessProfileConfigurationItem
  1150. Start-CMAntimalwarePolicyDeployment
  1151. Start-CMApplicationDeployment
  1152. Start-CMApplicationDeploymentSimulation
  1153. Start-CMBaselineDeployment
  1154. Start-CMClientSettingDeployment
  1155. Start-CMCloudDistributionPoint
  1156. Start-CMCloudManagementGateway
  1157. Start-CMConfigurationPolicyDeployment
  1158. Start-CMContentDistribution
  1159. Start-CMDistributionPointUpgrade
  1160. Start-CMObjectTracking
  1161. Start-CMPackageDeployment
  1162. Start-CMSoftwareUpdateDeployment
  1163. Start-CMTaskSequenceDeployment
  1164. Stop-CMCloudDistributionPoint
  1165. Stop-CMCloudManagementGateway
  1166. Stop-CMMigrationSource
  1167. Stop-CMObjectTracking
  1168. Suspend-CMAlert
  1169. Suspend-CMApplication
  1170. Suspend-CMPhasedDeployment
  1171. Sync-CMAssetIntelligenceCatalog
  1172. Sync-CMCloudManagementGateway
  1173. Sync-CMExchangeServer
  1174. Sync-CMMigrationSource
  1175. Sync-CMSoftwareUpdate
  1176. Unblock-CMCertificate
  1177. Unblock-CMDetectedMalware
  1178. Unblock-CMDevice
  1179. Undo-CMSoftwareInventory
  1180. Unlock-CMObject
  1181. Update-CMApplicationStatistic
  1182. Update-CMCertificate
  1183. Update-CMClientStatus
  1184. Update-CMDistributionPoint

Author

Dhanraj Barman is an experienced professional in the IT services field with almost seven years of experience working with SCCM Infrastructure solution, Windows Imaging (OSD), and Microsoft Intune. He is currently working as a Consultant helping organizations to a Modern Workplace.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.