Skip to content

Commit 331b6c8

Browse files
committed
editorial revision
1 parent 649b240 commit 331b6c8

2 files changed

Lines changed: 40 additions & 21 deletions

File tree

Lines changed: 39 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
author: Banreet Kaur
2+
author: Banreet
33
ms.author: banreetkaur
44
ms.prod: configuration-manager
55
ms.technology: configmgr-core
@@ -20,10 +20,10 @@ For more information about PowerShell for Configuration Manager, see [Get starte
2020

2121
#### Approve-CMOrchestrationGroupScript
2222

23-
This cmdlet would help user to approve orchestration group script.
23+
Use this cmdlet to approve an orchestration group script. For more information, see [About orchestration groups in Configuration Manager](../../../../../sum/deploy-use/orchestration-groups.md).
2424

2525
```powershell
26-
$referenceOG = Get-CMOrchestrationGroup -Name $Script:OGName
26+
$referenceOG = Get-CMOrchestrationGroup -Name "Orchestratrion group 1"
2727
$preScript = $referenceOG | Get-CMOrchestrationGroupScript -ScriptType Pre
2828
$preScript | Approve-CMOrchestrationGroupScript -Comment "Approve"
2929
@@ -32,10 +32,10 @@ Approve-CMOrchestrationGroupScript -ScriptGuid $PreScript.ScriptGuid
3232

3333
#### Deny-CMOrchestrationGroupScript
3434

35-
This cmdlet would help user to deny orchestration group script.
35+
Use this cmdlet to deny an orchestration group script. For more information, see [About orchestration groups in Configuration Manager](../../../../../sum/deploy-use/orchestration-groups.md).
3636

3737
```powershell
38-
$referenceOG = Get-CMOrchestrationGroup -Name $Script:OGName
38+
$referenceOG = Get-CMOrchestrationGroup -Name "Orchestratrion group 1"
3939
$preScript = $referenceOG | Get-CMOrchestrationGroupScript -ScriptType Pre
4040
$preScript | Deny-CMOrchestrationGroupScript -Comment "Deny"
4141
@@ -44,16 +44,16 @@ Deny-CMOrchestrationGroupScript -ScriptGuid $PreScript.ScriptGuid -Comment "Deny
4444

4545
#### Get-CMOrchestrationGroupScript
4646

47-
This cmdlet would help user to get orchestration group script from specified orchestration group.
47+
Use this cmdlet to get a script from the specified orchestration group. For more information, see [About orchestration groups in Configuration Manager](../../../../../sum/deploy-use/orchestration-groups.md).
4848

4949
```powershell
50-
$referenceOG = Get-CMOrchestrationGroup -Name $Script:OGName
50+
$referenceOG = Get-CMOrchestrationGroup -Name "Orchestratrion group 1"
5151
$preScript = $referenceOG | Get-CMOrchestrationGroupScript -ScriptType Pre
5252
```
5353

5454
#### Get-CMTrustedRootCertificationAuthority
5555

56-
This cmdlet would help user to get the certificates for trusted root certification authorities(CAs).
56+
Use this cmdlet to get the certificates for trusted root certification authorities from the site.
5757

5858
```powershell
5959
$ci =Get-CMTrustedRootCertificationAuthority
@@ -62,7 +62,7 @@ $ci =Get-CMTrustedRootCertificationAuthority -ViewDetail
6262

6363
#### New-CMAADClientApplication
6464

65-
This cmdlet would help user to specify application details and sign in with Azure Active Directory admin credentials to create client application in the Azure Active Directory.
65+
Use this cmdlet to create a client app registration in Azure Active Directory (Azure AD). When you run this cmdlet, it will prompt you to sign in to your tenant. For more information on this app registration, see [Manually register Azure AD apps for the CMG](../../../../clients/manage/cmg/manually-register-azure-ad-apps.md).
6666

6767
```powershell
6868
$serverApp = New-CMAADServerApplication -AppName $appName
@@ -71,7 +71,7 @@ New-CMAADClientApplication -AppName $name -InputObject $serverApp
7171

7272
#### New-CMAADServerApplication
7373

74-
This cmdlet would help user to specify application details and sign in with Azure Active Directory admin credentials to create server application in the Azure Active Directory.
74+
Use this cmdlet to create a server app registration in Azure AD. When you run this cmdlet, it will prompt you to sign in to your tenant. For more information on this app registration, see [Manually register Azure AD apps for the CMG](../../../../clients/manage/cmg/manually-register-azure-ad-apps.md).
7575

7676
```powershell
7777
New-CMAADServerApplication -AppName $appName
@@ -81,44 +81,62 @@ New-CMAADServerApplication -AppName $appName
8181

8282
#### Add-CMManagementPoint
8383

84+
For more information, see [Add-CMManagementPoint](/powershell/module/configurationmanager/Add-CMManagementPoint).
85+
8486
**Non-breaking changes**
8587

86-
Fixed the function to make the ClientConnectionTypes.InternetAndIntranet as default value when enable cloud gateway to align with UI.
88+
When you use this cmdlet to enable communication with the cloud management gateway, it now by default configures the management point to support both internet and intranet clients.
8789

8890
#### Get-CMObjectSecurityScope
8991

92+
For more information, see [Get-CMObjectSecurityScope](/powershell/module/configurationmanager/Get-CMObjectSecurityScope).
93+
9094
**Non-breaking changes**
9195

92-
Fixed the function to allow user to get the security scope of a specified folder object.
96+
You can now use this cmdlet to get the security scope of a specified folder object.
9397

9498
#### New-CMCloudManagementGateway
9599

100+
For more information, see [New-CMCloudManagementGateway](/powershell/module/configurationmanager/New-CMCloudManagementGateway).
101+
96102
**Non-breaking changes**
97103

98-
Added parameter “VMSSVMSize and Version to support creating a CMG using a Scale Set.
104+
Added parameters **VMSSVMSize** and **Version** to support creating a cloud management gateway (CMG) using a virtual machine scale set.
99105

100106
#### New-CMComplianceRuleRegistryKeyPermission
101107

108+
For more information, see [New-CMComplianceRuleRegistryKeyPermission](/powershell/module/configurationmanager/New-CMComplianceRuleRegistryKeyPermission).
109+
102110
**Non-breaking changes**
103111

104-
Fixed an issue in OperandDataType property when create rule.
112+
Fixed an issue in **OperandDataType** property when creating a rule.
105113

106114
#### Set-CMClientSettingComplianceSetting
107115

116+
For more information, see [Set-CMClientSettingComplianceSetting](/powershell/module/configurationmanager/Set-CMClientSettingComplianceSetting).
117+
108118
**Non-breaking changes**
109119

110-
Added new parameter ScriptExecutionTimeoutSecs to allow user to extend the DCM script execution timeout value.
120+
Added a new parameter **ScriptExecutionTimeoutSecs** to extend the script execution timeout value.
111121

112122
#### Set-CMClientSettingComputerRestart
113123

124+
For more information, see [Set-CMClientSettingComputerRestart](/powershell/module/configurationmanager/Set-CMClientSettingComputerRestart).
125+
114126
**Non-breaking changes**
115127

116-
Extended the validation range of the parameter “CountdownMins and RebootLogoffNotificationCountdownMins to align with UI.
117-
Added new parameter “CountdownIntervalMins and ServerRebootLowRight to align with UI.
118-
Fixed an property name issue for the parameter NoRebootEnforcement.
128+
- Extended the validation range of the parameters **CountdownMins** and **RebootLogoffNotificationCountdownMins** to align with the console.
129+
- Added new parameters **CountdownIntervalMins** and **ServerRebootLowRight** to align with the console.
130+
- Fixed a property name issue for the parameter **NoRebootEnforcement**.
119131

120-
### Common Fix
132+
### Module changes
121133

122-
Added folder support for Automatic Deployment Rule in cmdlets:
134+
The following folder-related cmdlets now support automatic deployment rules:
123135

124-
New-CMFolder, Get-CMFolder, Set-CMFolder, Remove-CMFolder, Move-CMObject, Add-CMObjectSecurityScope and Remove-CMObjectSecurityScope.
136+
- [Get-CMFolder](/powershell/module/configurationmanager/get-cmfolder)
137+
- [New-CMFolder](/powershell/module/configurationmanager/new-cmfolder)
138+
- [Remove-CMFolder](/powershell/module/configurationmanager/remove-cmfolder)
139+
- [Set-CMFolder](/powershell/module/configurationmanager/set-cmfolder)
140+
- [Move-CMObject](/powershell/module/configurationmanager/move-cmobject)
141+
- [Add-CMObjectSecurityScope](/powershell/module/configurationmanager/Add-CMObjectSecurityScope)
142+
- [Remove-CMObjectSecurityScope](/powershell/module/configurationmanager/Remove-CMObjectSecurityScope)

memdocs/configmgr/core/get-started/2022/technical-preview-2205.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ The following sections describe the new features to try out in this version:
3030
[!INCLUDE [13351390](includes/2205/13351390.md)]
3131
[!INCLUDE [14059872](includes/2205/14059872.md)]
3232
[!INCLUDE [14120481](includes/2205/14120481.md)]
33+
[!INCLUDE [14046376](includes/2205/14046376.md)]
3334

3435
<!-- ## General known issues -->
3536

0 commit comments

Comments
 (0)