Examples/Tests/Sample_IntiguaWithIEM.ps1
configuration Sample_IntiguaWithIEM { Import-DscResource -ModuleName Intigua Node localhost { Connector InstallConnector { ConnectorVersion = "3.4.0.24" CoreServerUrl = "http://172.16.1.88:8080/vmanage-server/" Ensure = "Present" } Agent IEM { AgentPath = "https://intiguadsc.blob.core.windows.net/agents/iem_lw_Windows_x64_9.1_2.9.0.378.vai" AgentName = "iem" AgentParameters = @{ACTIVE_SITE_PATH="c:\ActionSite.afxm"} EnableMemoryAndCPUControl = $true KeepManagedAgentCPUUtilizationUnder = 30 LimitManagedAgentMemoryConsumptionTo = 512 AutomaticallyStartAgentUponFailure = $true MaximumNumberOfAutoStartsInADay = 10 IntiguaLogLevel = "Error" Ensure = "Present" } } } Sample_IntiguaWithIEM Start-DscConfiguration -Path Sample_IntiguaWithIEM -Wait -Force -Verbose |