forked from dsccommunity/HyperVDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSample_xVHD_NewVHD.ps1
58 lines (49 loc) · 1.27 KB
/
Sample_xVHD_NewVHD.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
configuration Sample_xVHD_NewVhd
{
param
(
[Parameter()]
[string[]]
$NodeName = 'localhost',
[Parameter(Mandatory = $true)]
[string]
$Name,
[Parameter(Mandatory = $true)]
[string]
$Path,
[Parameter(Mandatory = $true)]
[Uint64]
$MaximumSizeBytes,
[Parameter()]
[ValidateSet('Vhd', 'Vhdx')]
[string]$Generation = 'Vhd',
[Parameter()]
[ValidateSet('Present', 'Absent')]
[string]
$Ensure = 'Present'
)
Import-DscResource -ModuleName xHyper-V
Node $NodeName
{
# Install HyperV feature, if not installed - Server SKU only
WindowsFeature HyperV
{
Ensure = 'Present'
Name = 'Hyper-V'
}
WindowsFeature HyperVPowerShell
{
Ensure = 'Present'
Name = 'Hyper-V-PowerShell'
}
xVhd NewVhd
{
Ensure = $Ensure
Name = $Name
Path = $Path
Generation = $Generation
MaximumSizeBytes = $MaximumSizeBytes
DependsOn = '[WindowsFeature]HyperV', '[WindowsFeature]HyperVPowerShell'
}
}
}