Public/Get-AdfsSystemInformation.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<#
.SYNOPSIS Retrieves overall details of the computer .DESCRIPTION The Get-AdfsSystemConfiguration gathers information regarding operating system and hardware .EXAMPLE Get-AdfsSystemConfiguration | ConvertTo-Json | Out-File ".\ADFSFarmDetails.txt" Get the operating system data of the server and save it in JSON format #> Function Get-AdfsSystemInformation() { Write-DeprecationNotice } |