thanks Francesco & Subs for your quick response, i didn't expect that.
actually i am not a programer so for me it is a little bit difficult to write the code or script, because of that i write you guys here, i am not sure if i am will recieve a help 100% because this is just for programer but it will be so nicce if you help me.
going back to my project i found this code it give all the available mac address because for sure normally it will be more than one:
#include <Array.au3>
$b = _GetMACAddress()
_ArrayDisplay($B)
Func _GetMACAddress()
local $sText, $iPID
$iPID = Run(@ComSpec & " /c ipconfig /all", '', @SW_HIDE, 6)
While 1
$sText &= StdoutRead($iPID)
If @error Then ExitLoop
WEnd
Return StringRegExp($sText, "(?s)(?i)([\w|\d]{2}\-[\w|\d]{2}\-[\w|\d]{2}\-[\w|\d]{2}\-[\w|\d]{2}\-[\w|\d]{2})", 3)
EndFunc
this code will give a list in all the available macs in at the computer, but how can i compare this list with my mac adress (00:65:v7:p0:3d:90) then how to make make my next command work in case fals & truth? this is the point that i dont know because i am not a programer.
in case true:
IniWrite("C:\Clients.text", "Summary", "Files", "yes")find_mac.au3
in case false:
IniWrite("C:\Clients.text", "Summary", "Files", "no")
i hope you could help me in this.