I need to configure a requirement for a server with more than one NIC that is enabled. I don't know how to translate that into a Global Condition in SCCM. The regular PowerShell for the requirement is below. So how do I translate the below code into a global condition in SCCM (if its possible):
$check2 = (gwmi Win32_NetworkAdapterConfiguration | ? {$_.IPEnabled }).count
if ($Check2 -lt 2) { exit }