vmware / dscr-for-vmware

The Repository contains Microsoft PowerShell Desired State Configuration (DSC) Resources for managing VC and ESXi settings.
Other
140 stars 41 forks source link

VMHostGraphics DSC Resource and VMHostGraphicsDevice DSC Resource #163

Closed SimeonGerginov closed 5 years ago

SimeonGerginov commented 5 years ago

Added

SimeonGerginov commented 5 years ago

Example usage of VMHostGraphics DSC Resource:

VMHostGraphics VMHostGraphics {
    Name = $Name
    Server = $Server
    Credential = $Credential
    GraphicsType = 'Shared'
    SharedPassthruAssignmentPolicy = 'Performance'
    RestartTimeoutMinutes = 10
}

Example usage of VMHostGraphicsDevice DSC Resource:

VMHostGraphicsDevice VMHostGraphicsDevice {
    Name = $Name
    Server = $Server
    Credential = $Credential
    Id = '0000:00:00.0'
    GraphicsType = 'SharedDirect'
    RestartTimeoutMinutes = 10
}