你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzCloudServiceRemoteDesktopExtensionObject
为远程桌面扩展创建内存中对象
语法
New-AzCloudServiceRemoteDesktopExtensionObject
[-Name] <String>
[-Credential] <PSCredential>
[[-Expiration] <DateTime>]
[[-TypeHandlerVersion] <String>]
[[-RolesAppliedTo] <String[]>]
[[-AutoUpgradeMinorVersion] <Boolean>]
[<CommonParameters>]
说明
为远程桌面扩展创建内存中对象
示例
示例 1:创建远程桌面扩展对象
$credential = Get-Credential
$expiration = (Get-Date).AddYears(1)
$extension = New-AzCloudServiceRemoteDesktopExtensionObject -Name 'RDPExtension' -Credential $credential -Expiration $expiration -TypeHandlerVersion '1.2.1'
此命令创建用于创建或更新云服务的远程桌面扩展对象。 有关详细信息,请参阅 New-AzCloudService。
参数
-AutoUpgradeMinorVersion
自动升级次要版本。
类型: | Boolean |
Position: | 6 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Credential
远程桌面扩展的凭据。
类型: | PSCredential |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Expiration
远程桌面扩展的过期时间。
类型: | DateTime |
Position: | 3 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
远程桌面扩展的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-RolesAppliedTo
应用于的角色。
类型: | String[] |
Position: | 5 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-TypeHandlerVersion
远程桌面扩展版本。
类型: | String |
Position: | 4 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |