I didn't know that actually. Sometimes I wonder how I get by with my scripts. I'm sure most of you wonder that as well now. Here is some code I'm playing with right now that seems to be working. Still testing to make sure it will be able to handle any encounter thrown at it.
Code:
Dim $sComputer,$Servers,$objWMIService,$colShares,$objShare,$File,$Report
$sComputer= "."
$objWMIService = GetObject("winmgmts:" + "{impersonationLevel=impersonate}!\\" + $sComputer + "\root\cimv2")
$NIC1 = $objWMIService.ExecQuery("Select * from Win32_NetworkAdapterConfiguration where IPEnabled = True")
For Each $NIC In $NIC1
$sMAC = $NIC.MacAddress
$sMac=Join(Split($sMac,":"),"")
$macMatch = readprofilestring("\\sutil\images$\rename\test.txt","MACs",$sMac)
if len($macMatch) and $macMatch <> @wksta
$=writeprofilestring("\\sutil\images$\rename\conflicts.txt","Conflicts",$sMac,@wksta)
else
$=writeprofilestring("\\sutil\images$\rename\test.txt","MACs",$sMac,@wksta)
endif
Next