forked from dsccommunity/HyperVDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSample_xVHD_FixedVHD.ps1
60 lines (51 loc) · 1.27 KB
/
Sample_xVHD_FixedVHD.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
59
60
configuration Sample_xVhd_FixedVhd
{
param
(
[Parameter()]
[string[]]
$NodeName = 'localhost',
[Parameter(Mandatory = $true)]
[string]
$Name,
[Parameter(Mandatory = $true)]
[string]
$Path,
[Parameter()]
[ValidateSet('Vhd', 'Vhdx')]
[string]
$Generation = 'Vhd',
[Parameter()]
[ValidateSet('Dynamic', 'Fixed', 'Differencing')]
[string]
$Type = 'Fixed',
[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 DiffVhd
{
Ensure = $Ensure
Name = $Name
Path = $Path
Generation = $Generation
Type = $Type
DependsOn = '[WindowsFeature]HyperV', '[WindowsFeature]HyperVPowerShell'
}
}
}