41 lines
1.4 KiB
PowerShell
41 lines
1.4 KiB
PowerShell
<#
|
|
.SYNOPSIS
|
|
A short one-line action-based description, e.g. 'Tests if a function is valid'
|
|
.DESCRIPTION
|
|
A longer description of the function, its purpose, common use cases, etc.
|
|
.NOTES
|
|
Information or caveats about the function e.g. 'This function is not supported in Linux'
|
|
.LINK
|
|
Specify a URI to a help page, this will show when Get-Help -Online is used.
|
|
.EXAMPLE
|
|
Test-MyTestFunction -Verbose
|
|
Explanation of the function or its result. You can include multiple examples with additional .EXAMPLE lines
|
|
#>
|
|
|
|
function Get-ITDVMwareVMHostStatus {
|
|
[CmdletBinding()]
|
|
param (
|
|
[string[]]
|
|
$Name
|
|
)
|
|
Begin {
|
|
}
|
|
|
|
Process {
|
|
If ($Name) {
|
|
Get-VMHost -Name $Name | Select-Object Name, ConnectionState, `
|
|
@{n = 'AlarmActionsEnabled'; e = { $_.ExtensionData.AlarmActionsEnabled } }, `
|
|
@{n = "LockdownMode"; e = { $_.ExtensionData.Config.LockdownMode } }, `
|
|
@{n = 'TSM-SSH'; e = { ($_ | Get-VMHostService | Where-Object { $_.Key -eq "TSM-SSH" }).Running } }
|
|
}
|
|
Else {
|
|
Get-VMHost | Select-Object Name, ConnectionState, `
|
|
@{n = 'AlarmActionsEnabled'; e = { $_.ExtensionData.AlarmActionsEnabled } }, `
|
|
@{n = "LockdownMode"; e = { $_.ExtensionData.Config.LockdownMode } }, `
|
|
@{n = 'TSM-SSH'; e = { ($_ | Get-VMHostService | Where-Object { $_.Key -eq "TSM-SSH" }).Running } }
|
|
}
|
|
}
|
|
|
|
End {
|
|
}
|
|
} |