Public/Get-AdfsSystemInformation.ps1
<#
.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 } |