你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzureVMConfig
创建 Azure 虚拟机配置对象。
注意
本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用。
Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (ARM) 资源的 PowerShell 模块。
语法
New-AzureVMConfig
[-Name] <String>
[-InstanceSize] <String>
[[-HostCaching] <String>]
[[-AvailabilitySetName] <String>]
[[-Label] <String>]
[-ImageName] <String>
[[-MediaLocation] <String>]
[[-DiskLabel] <String>]
[-DisableBootDiagnostics]
[-LicenseType <String>]
[-Profile <AzureSMProfile>]
[-InformationAction <ActionPreference>]
[-InformationVariable <String>]
[<CommonParameters>]
New-AzureVMConfig
[-Name] <String>
[-InstanceSize] <String>
[[-HostCaching] <String>]
[[-AvailabilitySetName] <String>]
[[-Label] <String>]
[-DiskName] <String>
[-DisableBootDiagnostics]
[-LicenseType <String>]
[-Profile <AzureSMProfile>]
[-InformationAction <ActionPreference>]
[-InformationVariable <String>]
[<CommonParameters>]
说明
New-AzureVMConfig cmdlet 创建 Azure 虚拟机配置对象。 可以使用此对象执行新部署,并将新虚拟机添加到现有部署。
示例
示例 1:创建 Windows 虚拟机配置
PS C:\> $Image = (Get-AzureVMImage)[4].ImageName
C:\PS> New-AzureVMConfig -Name "MyVM1" -InstanceSize ExtraSmall -ImageName $Image | Add-AzureProvisioningConfig -Windows -Password $AdminPassword | Add-AzureDataDisk -CreateNew -DiskSizeInGB 50 -DiskLabel "Datadisk1" -LUN 0 | New-AzureVM -ServiceName "MySvc1"
此命令使用操作系统磁盘、数据磁盘和预配配置创建 Windows 虚拟机配置。 然后,此配置用于创建新的虚拟机。
示例 2:创建 Linux 虚拟机配置
PS C:\> $Image = (Get-AzureVMImage)[7].ImageName
C:\PS> New-AzureVMConfig -Name "MyVM1" -InstanceSize ExtraSmall -ImageName $Image | Add-AzureProvisioningConfig -Linux -LinuxUser $LinuxUser -Password $AdminPassword | Add-AzureDataDisk -CreateNew -DiskSizeInGB 50 -DiskLabel "Datadisk1" -LUN 0 | New-AzureVM -ServiceName "MySvc1"
此命令使用操作系统磁盘、数据磁盘和预配配置创建新的 Linux 虚拟机配置。 然后,此配置用于创建新的虚拟机。
参数
-AvailabilitySetName
指定可用性集的名称。
类型: | String |
Position: | 3 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DisableBootDiagnostics
指示配置禁用启动诊断。 默认情况下,在虚拟机上启用启动诊断。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DiskLabel
指定操作系统磁盘的标签。
类型: | String |
Position: | 7 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DiskName
指定操作系统磁盘的名称。
类型: | String |
Position: | 5 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-HostCaching
指定操作系统磁盘的主机缓存模式。
有效值为:
- ReadOnly
- ReadWrite
类型: | String |
Position: | 2 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ImageName
指定要用于操作系统磁盘的虚拟机映像的名称。
类型: | String |
Position: | 5 |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-InformationAction
指定此 cmdlet 如何响应信息事件。
此参数的可接受值为:
- 继续
- 忽略
- 询问
- SilentlyContinue
- 停止
- Suspend
类型: | ActionPreference |
别名: | infa |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InformationVariable
指定信息变量。
类型: | String |
别名: | iv |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InstanceSize
指定实例的大小。
此参数的可接受值为:
- 特小型
- 小型
- 中型
- 大型
- 特大
- A5
- A6
- A7
- A8
- A9
- Basic_A0
- Basic_A1
- Basic_A2
- Basic_A3
- Basic_A4
- Standard_D1
- Standard_D2
- Standard_D3
- Standard_D4
- Standard_D11
- Standard_D12
- Standard_D13
- Standard_D14
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Label
指定要分配给虚拟机的标签。
类型: | String |
Position: | 4 |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-LicenseType
指定本地许可的映像或磁盘的许可证类型。 此参数的可接受值为:
- Windows_Client
- Windows_Server
仅为包含 Windows Server 操作系统的映像指定此参数。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-MediaLocation
指定新虚拟机磁盘的 Azure 存储位置。
类型: | String |
Position: | 6 |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定虚拟机的名称。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Profile
指定此 cmdlet 从中读取的 Azure 配置文件。 如果未指定配置文件,此 cmdlet 将从本地默认配置文件中读取。
类型: | AzureSMProfile |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |