Jump to content

Recommended Posts

Posted

Hello,

I really need Someone’s help.

Is there a way I can Get all the computer details... (serial numbers, Mac address)

Cutting a long story short... I have been asked to find a way of getting it all together as quick as possible but I have been really busy Lots of tricky Head flushing problems that I need to sort out.

I was asked to do this a few months ago but my minds been elsewhere

 

Would there be a script I can run? Or a program that will allow me to use a barcode scanner and automatically take the information I need.

 

If so can you help me find a program as I am really stuck

 

Please can you all help me out I would really appreciate it...

Lewis

Posted

You can run a WMI script to get it. But unless you're going to make a list of every computer, or do entire AD, guess easiest way is a login/boot script, which writes it to a shared area.

 

example:

 

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
   & "{impersonationLevel=impersonate}!\\" _
   & strComputer & "\root\cimv2")
Set colSMBIOS = objWMIService.ExecQuery _
   ("Select * from Win32_SystemEnclosure")
For Each objSMBIOS in colSMBIOS
   Wscript.Echo "Part Number: " & objSMBIOS.PartNumber
   Wscript.Echo "Serial Number: " _
       & objSMBIOS.SerialNumber
   Wscript.Echo "Asset Tag: " _
       & objSMBIOS.SMBIOSAssetTag
Next

 

Steve

  • Thanks 1
Posted
if you have spiceworks you can browse all serials in your inventory and run a report which should give you the output you want
  • Thanks 1
Posted

Thank you so much guys! Any more ways please just keep threwing them my way i need as many as possibul

 

 

More ideas more "Thanks" ;) Thats the only way I can pay you

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...