functions/get-axenvironment.ps1
<# .SYNOPSIS Get the status of an AX 2012 environment .DESCRIPTION Get the status of AX 2012 services in your environment .PARAMETER ComputerName Name of the computer(s) that you want to work against .PARAMETER AllAxServices Switch to instruct the cmdlet to include all known AX 2012 services .PARAMETER AosInstanceName Name of the AOS instance that you are looking for Accepts wildcards for searching. E.g. -AosInstanceName "*DEV*" If AxActiveAosConfiguration has been configured, the default value is the name of the instance registered Default value is otherwise "*" which will search for all AOS instances .PARAMETER Aos Switch to instruct the cmdlet to include the AOS service .PARAMETER ManagementReporter Switch to instruct the cmdlet to include the ManagementReporter service .PARAMETER DIXF Switch to instruct the cmdlet to include the DIXF service .PARAMETER ScanAllAosServices Parameter description .EXAMPLE PS C:\> Get-AxEnvironment This will get the status for all the default services from your environment. .NOTES Author: Mötz Jensen (@Splaxi) #> function Get-AxEnvironment { [CmdletBinding(DefaultParameterSetName = 'Default')] param ( [string[]] $ComputerName = $Script:ActiveAosComputername, [Parameter(Mandatory = $false, ParameterSetName = 'Default', Position = 2 )] [switch] $AllAxServices = [switch]::Present, [Alias('InstanceName')] [string] $AosInstanceName = $(if (-not ([System.String]::IsNullOrEmpty($Script:ActiveAosInstancename))) { "*$Script:ActiveAosInstancename" } else { "*" }), [Parameter(Mandatory = $false, ParameterSetName = 'Specific', Position = 2 )] [switch] $Aos, [Parameter(Mandatory = $false, ParameterSetName = 'Specific', Position = 3 )] [switch] $ManagementReporter, [Parameter(Mandatory = $false, ParameterSetName = 'Specific', Position = 4 )] [switch] $DIXF, [switch] $ScanAllAosServices ) if ($PSCmdlet.ParameterSetName -eq "Specific") { $AllAxServices = ![switch]::Present } if (!$AllAxServices -and !$Aos -and !$ManagementReporter -and !$DIXF) { Write-PSFMessage -Level Host -Message "You have to use at least one switch when running this cmdlet. Please run the cmdlet again." Stop-PSFFunction -Message "Stopping because of missing parameters" return } $baseParams = Get-DeepClone $PSBoundParameters $params = @{} $includeParamNames = @("ManagementReporter", "DIXF") foreach ($key in $baseParams.Keys) { Write-PSFMessage -Level Verbose -Message "Working on key: $key" -Target $key if ($includeParamNames -notlike $key ) {continue} $null = $params.Add($key, $baseParams.Item($key).ToString()) } if ($params.Count -eq 0) { if ($AllAxServices) { $params.AllAxServices = $true $Services = Get-ServiceList @params } } else { $Services = Get-ServiceList @params } if ($PSBoundParameters.ContainsKey("Aos")) { Write-PSFMessage -Level Verbose -Message "Aos seems to be bound" -Target $key $searchServicesAos = Get-ServiceList -Aos } $res = New-Object System.Collections.ArrayList foreach ($server in $ComputerName) { Write-PSFMessage -Level Verbose -Message "Working against: $server - listing services" -Target ($Services -Join ",") Write-PSFMessage -Level Verbose -Message "Working against: $server - listing Aos services" -Target ($searchServicesAos -Join ",") if (-not ($null -eq $searchServicesAos)) { $colAosServices = Get-Service -ComputerName $server -Name $searchServicesAos -ErrorAction SilentlyContinue | Select-Object @{Name = "Server"; Expression = {$Server}}, Name, Status, DisplayName if ($ScanAllAosServices) { $null = $res.AddRange($colAosServices) } else { foreach ($service in $colAosServices) { if ($service.DisplayName -NotLike $AosInstanceName) { continue } $null = $res.Add($service) } } } if (-not ($null -eq $Services)) { $axServices = Get-Service -ComputerName $server -Name $Services -ErrorAction SilentlyContinue | Select-Object @{Name = "Server"; Expression = {$Server}}, Name, Status, DisplayName if ($ScanAllAosServices) { $null = $res.AddRange($axServices) } else { foreach ($service in $axServices) { if ($service.DisplayName -like "*AX Object Server*" ) { if ($service.DisplayName -NotLike $AosInstanceName) { continue } } $null = $res.Add($service) } } } } $res.ToArray() | Select-Object Server, DisplayName, Status, Name } |