Examples/Sample_xVHD_FixedVHD.ps1
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' } } } |