Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
PoShMon
0.9.0
Functions/PoShMon.OSMonitoring/Get-OSTests.ps1
Function
Get-OSTests
{
[
CmdletBinding
(
)
]
Param
(
)
$tests
=
[string[]]
@(
"EventLogs"
,
"CPULoad"
,
"Memory"
,
"DriveSpace"
,
"ComputerTime"
,
"ServiceState"
)
return
$tests
}