SW-ICT Posted June 21, 2011 Posted June 21, 2011 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
Steve21 Posted June 21, 2011 Posted June 21, 2011 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 1
SW-ICT Posted June 21, 2011 Author Posted June 21, 2011 How would this work... Sorry to be a pain and thank you for the quick response
sjatkn Posted June 21, 2011 Posted June 21, 2011 Take a look at bginfo (BgInfo) & OCS Inventory NG (OCS Inventory NG | Main) as these log this information and more to a database. 1
Avalon Posted June 21, 2011 Posted June 21, 2011 if you have spiceworks you can browse all serials in your inventory and run a report which should give you the output you want 1
SW-ICT Posted June 21, 2011 Author Posted June 21, 2011 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now