码迷,mamicode.com
首页 > 系统相关 > 详细

使用Hyper-V PowerShell

时间:2015-12-14 23:21:39      阅读:1789      评论:0      收藏:0      [点我收藏+]

标签:hyper-v、powershell

一、 列出Hyper-V PowerShell命令行模块

在搜索中PowerShell并打开PowerShell

get-command –module hyper-v | out-gridview

使用get-help帮助学习Hyper-V PowerShell

技术分享

二、 使用PowerShell列出虚拟机

使用下面的命令列出正在运行的虚拟机

get-vm | where {$_.State –eq ‘Running’}

使用下面的命令列出已经关闭的虚拟机

get-vm | where {$_.State –eq ‘Off’}

三、 使用PowerShell创建虚拟机

使用管理员身份打开Windows PowerShell ISE

使用下面的命令创建虚拟机

$VMName = "Client01"
$VM = @{
    Name = $VMName
    MemoryStartupBytes = 2147483648
    Generation = 2
    NewVHDPath = " D:\Hyper-V\$VMName\$VMName.vhdx"
    NewVHDSizeBytes = 53687091200
    BootDevice = "VHD"
    Path = " D:\Hyper-V\$VMName "
    SwitchName = (get-vmswitch).Name[0]
}

New-VM @VM

技术分享

更多Hyper-V PowerShell cmdlet部分请参见微软官方网站:

https://technet.microsoft.com/%5Clibrary/Hh848559.aspx

本文出自 “徐庭的博客-IT技术分享” 博客,请务必保留此出处http://ericxuting.blog.51cto.com/8995534/1722991

使用Hyper-V PowerShell

标签:hyper-v、powershell

原文地址:http://ericxuting.blog.51cto.com/8995534/1722991

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!