你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Remove-MsolGroup
从 Azure Active Directory 中删除组。
语法
Remove-MsolGroup
-ObjectId <Guid>
[-Force]
[-TenantId <Guid>]
[<CommonParameters>]
说明
Remove-MsolGroup cmdlet 从 Azure Active Directory 中删除组。
示例
示例 1:删除安全组
PS C:\> $GroupId = Get-MsolGroup -SearchString "MyGroup"
PS C:\> Remove-MsolGroup -objectid $GroupId
第一个命令获取与字符串 MyGroup 匹配的安全组,然后将其存储在 $GroupId 变量中。 第二个命令删除$GroupId中的组。
参数
-Force
指示此 cmdlet 不提示你进行确认。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ObjectId
指定要删除的组的唯一对象 ID。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-TenantId
指定要对其执行操作的租户的唯一 ID。 默认值为当前用户的租户。 此参数仅适用于合作伙伴用户。
类型: | Guid |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |