Examples/Resources/cWaitForVMIntegrationComponent/WaitForIntegrationComponentCustom.Example.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
Configuration WaitForIC
{
    Import-DscResource -Name cWaitForVMGuestIntegration -ModuleName cHyper-V

    cWaitForVMGuestIntegration VM01
    {
        Id = 'VM01-IC01'
        VMName = 'VM01'
        RetryIntervalSec = 20
        RetryCount = 10
    }
}