You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-conceptual/azureadps-2.0/Cannot-find-object.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,4 +43,4 @@ Note that this approach works for all properties of objects. For a limited numbe
43
43
```powershell
44
44
Get-AzureADUser -SearchString "London"
45
45
```
46
-
This will return all users where one of the qualifying string attributes on the user object equals "London" - which would include users who's DisplayName equals "Jack London" or whre the Department equals "London".
46
+
This will return all users where one of the qualifying string attributes on the user object equals "London" - which would include users who's DisplayName equals "Jack London" or where the Department equals "London".
The new **New-AzureADMSApplicationFromApplicationTemplate** cmdlet creates a new application based on a applicationTemplate (Azure AD Gallery app or Non-Gallery)
93
+
The new **New-AzureADMSPermissionGrantConditionSet** cmdlet creates a new permission grant conditional set in Azure Active Directory.
94
+
The new **Set-AzureADMSPermissionGrantConditionSet** cmdlet updates the properties of a permission grant conditional set in Azure Active Directory.
95
+
The new **Remove-AzureADMSPermissionGrantConditionSet** cmdlet deletes an Azure Active Directory permission grant conditional set.
96
+
The new **Get-AzureADMSPermissionGrantConditionSet** cmdlet retrieves the list of Azure Active Directory permission grant conditional set.
97
+
The new **New-AzureADMSConditionalAccessPolicy** cmdlet creates a new conditional access policy in Azure Active Directory.
98
+
The new **Get-AzureADMSNamedLocationPolicy** cmdlet retrieves the list of Azure Active Directory conditional acces policies.
99
+
The new **Set-AzureADMSConditionalAccessPolicy** cmdlet updates the properties of a conditional access policy in Azure Active Directory.
100
+
The new **Remove-AzureADMSConditionalAccessPolicy** cmdlet deletes an Azure Active Directory conditional access policy.
101
+
The new **Get-AzureADMSNamedLocationPolicy** cmdlet retrieves the list of Azure Active Directory named location policies.
102
+
The new **New-AzureADMSNamedLocationPolicy** cmdlet creates a new named location policy in Azure Active Directory.
103
+
The new **Set-AzureADMSNamedLocationPolicy** cmdlet updates the properties of a named location policy in Azure Active Directory.
104
+
The new **Remove-AzureADMSNamedLocationPolicy** cmdlet deletes an Azure Active Directory named location policy.
105
+
Added parameters ‘Top’ and ‘All’ to **Get-AzureADAdministrativeUnitMember** cmdlet
106
+
107
+
### Minor breaking changes:
108
+
109
+
• The cmdlet **New-AzureADMSPermissionGrantPolicy** no longer support the parameters “includes” and “excludes”.
110
+
• The cmdlet **Set-AzureADMSPermissionGrantPolicy** no longer support the parameters “includes” and “excludes”.
111
+
112
+
24
113
## 2.0.2.85 - Preview release of the AzureADPreview module
With the latest [PowerShellGet](https://go.microsoft.com/fwlink/?LinkID=760387&clcid=0x409) module, you can:
52
53
54
+
53
55
+ Search through items in the Gallery with [**Find-Module**](https://go.microsoft.com/fwlink/?LinkID=760387&clcid=0x409) and [**Find-Script**](https://go.microsoft.com/fwlink/?LinkID=760387&clcid=0x409)
54
56
+ Save items to your system from the Gallery with [**Save-Module**](https://go.microsoft.com/fwlink/?LinkID=760387&clcid=0x409) and [**Save-Script**](https://go.microsoft.com/fwlink/?LinkID=760387&clcid=0x409)
55
57
+ Install items from the Gallery with [**Install-Module**](https://go.microsoft.com/fwlink/?LinkID=760387&clcid=0x409) and [**Install-Script**](https://go.microsoft.com/fwlink/?LinkID=760387&clcid=0x409)
@@ -79,7 +81,7 @@ Therefore, **PowerShellGet** requires one of the following operating systems:
79
81
You can check the version of the module you have installed on your computer by running this command:
This command checks the PowerShell gallery to see if a newer version is available and installs it on your computer if the version on the PowerShell Gallery is newer than the one installed on your computer.
Copy file name to clipboardExpand all lines: docs-conceptual/azureadps-2.0/new-user-sample.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,9 @@ The cmdlet used is [New-AzureADUser](). This cmdlet has many parameters that you
20
20
21
21
+ DisplayName - contains the display name for the new user, in our example this is "Abby Brown"
22
22
+ MailNickName - contains the email alias of the new user, we'll set it to "AbbyB"
23
-
+ UserPrincipalName - contains the UserPrincipalName (UPN) of this user. The UPN is what the user will use when they sign in into Azure AD. The common structure is \<MailNickName>@\<directory name>, so for Abby Brown in Contoso.com, the UPN would be "[email protected]"
24
-
+ AccountEnabled - this indicates whether the account is enabled for sign in. If you set it to $False, the user will not be able to use the account. You can set it to $True right now or do that later if you need to perform other configuration tasks for the new user, such as assigning licenses or applications.
23
+
+ UserPrincipalName - contains the UserPrincipalName (UPN) of this user. The UPN is what the user will use when they sign in into Azure AD. The common structure is <MailNickName>@<directoryname>, so for Abby Brown in Contoso.com, the UPN would be "[email protected]"
24
+
+ AccountEnabled - this indicates whether the account is enabled for sign in. If you set it to $False, the user will not be able to use the account, but you can set it to $True right now or do that later if you need to perform other configuration tasks for the new user, such as assigning licenses or applications.
25
+
25
26
+ PasswordProfile - Specifies the user's password profile. Note that the parameter type for this parameter is "PasswordProfile". in order to pass a parameter of this type, you first need to create a variable in PowerShell with that type. We can do that with the New-Object cmdlet:
Copy file name to clipboardExpand all lines: docs-conceptual/azureadps-2.0/recovering-deleted-data.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ ObjectId AppId Displa
37
37
9a7d49c5-42ee-47a3-bad7-17cae5bb8f26 7dba6cec-ffd5-40af-ba40-1eb158574b5a My Properties Bag
38
38
```
39
39
40
-
Within the first 30 days after an object is deleted, it can be recovered using the Recover-AzureADMSDeletedDirectoryObject cmdlet. To recover a deleted directory pobject you must specify the Id of the object. This is what you see when you recover a deleted group:
40
+
Within the first 30 days after an object is deleted, it can be recovered using the Restore-AzureADMSDeletedDirectoryObject cmdlet. To recover a deleted directory pobject you must specify the Id of the object. This is what you see when you recover a deleted group:
>Note: If you attempt to recover a deleted unified group for which the SAMAccountName already exists the cmdlet will fail. You must first remove the existing SAMAccountName by either changing it or deleting the object that has it.
0 commit comments