DSCResources/MSFT_xSCOMConsoleSetup/MSFT_xSCOMConsoleSetup.psm1
function Get-TargetResource { [CmdletBinding()] [OutputType([System.Collections.Hashtable])] param ( [parameter(Mandatory = $true)] [ValidateSet("Present","Absent")] [System.String] $Ensure = "Present", [parameter(Mandatory = $true)] [System.String] $SourcePath, [System.String] $SourceFolder = "\SystemCenter2012R2\OperationsManager.en", [parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $SetupCredential, [System.String] $InstallPath, [System.Byte] $UseMicrosoftUpdate, [System.Byte] $SendCEIPReports, [ValidateSet("Never","Queued","Always")] [System.String] $EnableErrorReporting = "Never", [System.Byte] $SendODRReports ) Import-Module $PSScriptRoot\..\..\xPDT.psm1 $Path = Join-Path -Path (Join-Path -Path $SourcePath -ChildPath $SourceFolder) -ChildPath "setup.exe" $Path = ResolvePath $Path $Version = (Get-Item -Path $Path).VersionInfo.ProductVersion switch($Version) { "7.1.10226.0" { $IdentifyingNumber = "{041C3416-87CE-4B02-918E-6FDC95F241D3}" $InstallRegVersion = "12" } "7.2.10015.0" { $IdentifyingNumber = "{F67729BD-18CF-4283-A6FC-F388A463EC01}" $InstallRegVersion = "12" } Default { throw "Unknown version of Operations Manager!" } } if(Get-WmiObject -Class Win32_Product | Where-Object {$_.IdentifyingNumber -eq $IdentifyingNumber}) { $InstallPath = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\System Center Operations Manager\$InstallRegVersion\Setup" -Name "InstallDirectory").InstallDirectory $returnValue = @{ Ensure = "Present" SourcePath = $SourcePath SourceFolder = $SourceFolder InstallPath = $InstallPath } } else { $returnValue = @{ Ensure = "Absent" SourcePath = $SourcePath SourceFolder = $SourceFolder } } $returnValue } function Set-TargetResource { [CmdletBinding()] param ( [parameter(Mandatory = $true)] [ValidateSet("Present","Absent")] [System.String] $Ensure = "Present", [parameter(Mandatory = $true)] [System.String] $SourcePath, [System.String] $SourceFolder = "\SystemCenter2012R2\OperationsManager.en", [parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $SetupCredential, [System.String] $InstallPath, [System.Byte] $UseMicrosoftUpdate, [System.Byte] $SendCEIPReports, [ValidateSet("Never","Queued","Always")] [System.String] $EnableErrorReporting = "Never", [System.Byte] $SendODRReports ) Import-Module $PSScriptRoot\..\..\xPDT.psm1 $Path = Join-Path -Path (Join-Path -Path $SourcePath -ChildPath $SourceFolder) -ChildPath "setup.exe" $Path = ResolvePath $Path $Version = (Get-Item -Path $Path).VersionInfo.ProductVersion switch($Version) { "7.1.10226.0" { $IdentifyingNumber = "{041C3416-87CE-4B02-918E-6FDC95F241D3}" } "7.2.10015.0" { $IdentifyingNumber = "{F67729BD-18CF-4283-A6FC-F388A463EC01}" } Default { throw "Unknown version of Operations Manager!" } } switch($Ensure) { "Present" { # Set defaults, if they couldn't be set in param due to null configdata input if($UseMicrosoftUpdate -ne 1) { $UseMicrosoftUpdate = 0 } if($SendCEIPReports -ne 1) { $SendCEIPReports = 0 } if($SendODRReports -ne 1) { $SendODRReports = 0 } # Create install arguments $Arguments = "/silent /install /AcceptEndUserLicenseAgreement:1 /components:OMConsole" $ArgumentVars = @( "InstallPath", "UseMicrosoftUpdate", "SendCEIPReports", "EnableErrorReporting", "SendODRReports" ) foreach($ArgumentVar in $ArgumentVars) { if(!([String]::IsNullOrEmpty((Get-Variable -Name $ArgumentVar).Value))) { $Arguments += " /$ArgumentVar`:" + [Environment]::ExpandEnvironmentVariables((Get-Variable -Name $ArgumentVar).Value) } } } "Absent" { # Create uninstall arguments $Arguments = "/silent /uninstall /components:OMConsole" } } Write-Verbose "Path: $Path" Write-Verbose "Arguments: $Arguments" $Process = StartWin32Process -Path $Path -Arguments $Arguments -Credential $SetupCredential -AsTask Write-Verbose $Process WaitForWin32ProcessEnd -Path $Path -Arguments $Arguments -Credential $SetupCredential if((Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager' -Name 'PendingFileRenameOperations' -ErrorAction SilentlyContinue) -ne $null) { $global:DSCMachineStatus = 1 } else { if(!(Test-TargetResource @PSBoundParameters)) { throw "Set-TargetResouce failed" } } } function Test-TargetResource { [CmdletBinding()] [OutputType([System.Boolean])] param ( [parameter(Mandatory = $true)] [ValidateSet("Present","Absent")] [System.String] $Ensure = "Present", [parameter(Mandatory = $true)] [System.String] $SourcePath, [System.String] $SourceFolder = "\SystemCenter2012R2\OperationsManager.en", [parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $SetupCredential, [System.String] $InstallPath, [System.Byte] $UseMicrosoftUpdate, [System.Byte] $SendCEIPReports, [ValidateSet("Never","Queued","Always")] [System.String] $EnableErrorReporting = "Never", [System.Byte] $SendODRReports ) $result = ((Get-TargetResource @PSBoundParameters).Ensure -eq $Ensure) $result } Export-ModuleMember -Function *-TargetResource |