共用方式為


Set-DataGatewayInstaller

修改可在組織中安裝及註冊新閘道的使用者清單:您必須以租用戶系統管理員身分登入,才能執行此命令。

語法

Set-DataGatewayInstaller
   [-PrincipalObjectIds <String[]>]
   -Operation <OperationType>
   -GatewayType <GatewayType>
   [<CommonParameters>]

Description

設定哪些用戶可以在組織中安裝和註冊新的閘道。

範例

範例 1

PS C:\> $user1 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> $user2 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> Set-DataGatewayInstaller -PrincipalObjectIds $user1,$user2 -Operation Add -GatewayType Resource

允許使用者 testUpn1@tenant.com和 testUpn2@tenant.com,以標準模式註冊及安裝內部部署數據閘道。

範例 2

PS C:\> $user1 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> $user2 = $(Get-AzADUser -ObjectId "testUpn@tenant.com").Id
PS C:\> Set-DataGatewayInstaller -PrincipalObjectIds $user1,$user2 -Operation Remove -GatewayType Resource

不再允許使用者 testUpn1@tenant.com和 testUpn2@tenant.com,以標準模式註冊及安裝內部部署數據閘道。

參數

-GatewayType

命令的閘道類型會生效。 下列值 Resource 表示以標準模式執行的內部部署數據閘道。

類型:GatewayType
接受的值:Resource, Personal, VirtualNetwork
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-Operation

要針對指定使用者執行的作業。

類型:OperationType
接受的值:None, Add, Remove
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-PrincipalObjectIds

可在組織中設定閘道的 Azure Active Directory (AAD) 主體物件識別碼清單(也就是使用者識別符)。

類型:String[]
別名:Users
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

None

輸出

System.Void