-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhyperv.ps1
28 lines (27 loc) · 1.07 KB
/
hyperv.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
param([Parameter(Mandatory=$true)]
[string]$user,
[Parameter(Mandatory=$true)]
[string]$ipaddress,
[Parameter(Mandatory=$true)]
[string]$imagename,
[Parameter(Mandatory=$true)]
[string]$vmname,
[Parameter(Mandatory=$true)]
[int]$ram)
$ErrorActionPreference = "Stop"
$session = New-PSSession -Computername $ipaddress -Credential $user
try{
Invoke-Command -Session $session -ScriptBlock{
param($vmanme, $imagename, $ram)
$imagepath = "C:\Users\Public\Documents\Hyper-V\Virtual hard disks\images\"
$vhd = Get-VHD -Path -join($imagepath, $imagename)
New-VHD -Path "C:\Users\Public\Documents\Hyper-V\Virtual hard disks\$vmanme" -ParentPath -join($imagepath, $imagename) -Differncing
New-VM -Name $vmname -Generation 1 -VHDPath "C:\Users\Public\Documents\Hyper-V\Virtual hard disks\$vmname" -MemoryStartupBytes $ram
Set-VM -Name $vmname -AutomaticStartAction start
Start-NM -Name $vmname
} -Argumentlist $vmanme, $imagename, $ram
}
catch{
"An Error has occured, most likely with authentication"
$error[0].Exception
}