Page 1 of 1

is there a manner to retrieve the computer info fingerprint

Posted: Tue Jul 01, 2014 7:50 pm
by Fasasoftware
hi to all...

is there a script either for win32/64 and macOSX 64 to retrieve the details info (fingerprint) of the computer i'm using???

for example , memory, cpu, freq....etc...??? and put it in a field??

I thank you in advance,

Best regards,

lestroso :oops:

Re: is there a manner to retrieve the computer info fingerp

Posted: Tue Jul 01, 2014 8:52 pm
by richmond62
Have a look in the Dictionary at:

systemversion

Re: is there a manner to retrieve the computer info fingerp

Posted: Tue Jul 01, 2014 9:40 pm
by AndyP
On Windows you can get the Active System HD serial with the the code below.
In a button;

on mouseUp

put $systemdrive into tSysDrive
//string for the shell command
put "vol " & tSySDrive into tDriveInfo

//the last word of the returned info is the ACTIVE SYSTEM HD Serial
set the hideConsoleWindows to true
put the last word of shell(tDriveInfo) into tHDSerial

answer "HD Serial is " && tHDSerial with "OK"

end mouseUp

Also try;

put $COMPUTERNAME

put shell("net view")

put shell("net user")

Re: is there a manner to retrieve the computer info fingerp

Posted: Tue Jul 01, 2014 10:09 pm
by Fasasoftware
thanks a..lot....but i need if possible a script either for mac and win...

can you help plese??

thanks,

lestroso

Re: is there a manner to retrieve the computer info fingerp

Posted: Tue Jul 01, 2014 11:32 pm
by FourthWorld
By "fingerprint" do you mean MAC address?

If so:
http://www.sonsothunder.com/devres/live ... env001.htm

Re: is there a manner to retrieve the computer info fingerp

Posted: Wed Jul 02, 2014 6:59 am
by AndyP
I don't have a mac, but I think you can use this format for command.


put shell("echo $system_profiler")


put shell("echo $system_profiler SPParallelATADataType")

I believe this will get you the HD Serial
put shell("echo $system_profiler SPParallelATADataType | grep Serial")

Re: is there a manner to retrieve the computer info fingerp

Posted: Wed Jul 02, 2014 8:02 am
by richmond62
Why do I have a funny feeling you want this information so you can tether an application to a
particular computer?

This is very awkward, just like password protecting and so on; and, probably, more trouble than
it is worth.

Remember the ONLY thing that is constant in a computer is its MAC address.

Re: is there a manner to retrieve the computer info fingerp

Posted: Wed Jul 02, 2014 9:28 am
by Fasasoftware
I thank you to everybody....now it's all clear.. thanks a lot

Best regards,
Lestroso