你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

New-AzureRemoteAppCollection

创建 Azure RemoteApp 集合。

注意

本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用

Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (ARM) 资源的 PowerShell 模块。

语法

New-AzureRemoteAppCollection
   [-CollectionName] <String>
   [-ImageName] <String>
   [-Plan] <String>
   [[-Location] <String>]
   [-Description <String>]
   [-CustomRdpProperty <String>]
   [-ResourceType <CollectionMode>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]
New-AzureRemoteAppCollection
   [-CollectionName] <String>
   [-ImageName] <String>
   [-Plan] <String>
   [[-Location] <String>]
   [-VNetName] <String>
   [-SubnetName] <String>
   [-DnsServers <String>]
   [[-Domain] <String>]
   [[-Credential] <PSCredential>]
   [-OrganizationalUnit <String>]
   [-Description <String>]
   [-CustomRdpProperty <String>]
   [-ResourceType <CollectionMode>]
   [-Profile <AzureSMProfile>]
   [<CommonParameters>]

说明

New-AzureRemoteAppCollection cmdlet 创建 Azure RemoteApp 集合。

示例

示例 1:创建集合

PS C:\> New-AzureRemoteAppCollection -CollectionName "Contoso" -ImageName "Windows Server 2012 R2" -Plan Standard -Location "West US" -Description CloudOnly

此命令创建 Azure RemoteApp 集合。

示例 2:使用凭据创建集合

PS C:\> $cred = Get-Credential corp.contoso.com\admin
PS C:\> New-AzureRemoteAppCollection -CollectionName "ContosoHybrid" -ImageName "Windows Server 2012 R2" -Plan Standard -VNetName azureVNet -Domain Contoso.com -Credential $cred -Description Hybrid

此命令使用 Get-Credential cmdlet 中的凭据创建 Azure RemoteApp 集合。

参数

-CollectionName

指定 Azure RemoteApp 集合的名称。

类型:String
别名:Name
Position:1
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-Credential

指定有权将 Azure RemoteApp 服务器加入域的服务帐户的凭据。 若要获取 PSCredential 对象,请使用 Get-Credential cmdlet。

类型:PSCredential
Position:6
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-CustomRdpProperty

指定可用于配置驱动器重定向和其他设置的自定义远程桌面 Protocal (RDP) 属性。 有关详细信息,请参阅 Windows Server (https://technet.microsoft.com/library/ff393699(v=ws.10).aspx) 中远程桌面服务的 RDP 设置。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-Description

指定对象的简短说明。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-DnsServers

指定 DNS 服务器的 IPv4 地址的逗号分隔列表。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-Domain

指定要加入 RD 会话主机服务器的Active Directory 域服务域的名称。

类型:String
Position:5
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-ImageName

指定 Azure RemoteApp 模板映像的名称。

类型:String
Position:2
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-Location

指定集合的 Azure 区域。

类型:String
Position:4
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-OrganizationalUnit

指定要加入 RD 会话主机服务器的组织单位(OU)的名称,例如 OU=MyOu,DC=MyDomain,DC=ParentDomain,DC=com。 OU 和 DC 等属性必须大写。 创建集合后,无法更改 OU。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-Plan

指定 Azure RemoteApp 集合的计划,该集合可以定义使用限制。 使用 Get-AzureRemoteAppPlan 查看可用的计划。

类型:String
Position:3
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-Profile

指定此 cmdlet 从中读取的 Azure 配置文件。 如果未指定配置文件,此 cmdlet 将从本地默认配置文件中读取。

类型:AzureSMProfile
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-ResourceType

指定集合的资源类型。 此参数的可接受值为:应用或桌面。

类型:CollectionMode
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-SubnetName

指定虚拟网络中用于创建 Azure RemoteApp 集合的子网的名称。

类型:String
Position:7
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-VNetName

指定 Azure RemoteApp 虚拟网络的名称。

类型:String
Position:4
默认值:None
必需:True
接受管道输入:True
接受通配符:False