Hi Devendra, 1. Use some software like speecy or Everest Ultimate 5.02 , both available on www.filehippo.com
Bye & God Bless Amit -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Kiran S Deshpande Sent: Tuesday, July 13, 2010 10:51 PM To: [email protected] Subject: Re: [AI] How to know the series of mother board? Hi Devendra, 1.Paste the following code in a notepad 2.save it on desktop with an extension .vbs 3. double click on the file on desktop. 4. it will keep on giving messages on desktop(all other windows be minimized ) n ur screen reader will read many properties. Do the same n let me know if it sorts the issue else there is another free program i may suggest you to download the same... regards Kiran S Deshpande copy the below code(its royalty free) -------------------- strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") Set colItems = objWMIService.ExecQuery( _ "SELECT * FROM Win32_BaseBoard",,48) For Each objItem in colItems Wscript.Echo "-----------------------------------" Wscript.Echo "Win32_BaseBoard instance" Wscript.Echo "-----------------------------------" Wscript.Echo "Caption: " & objItem.Caption If isNull(objItem.ConfigOptions) Then Wscript.Echo "ConfigOptions: " Else Wscript.Echo "ConfigOptions: " & Join(objItem.ConfigOptions, ",") End If Wscript.Echo "CreationClassName: " & objItem.CreationClassName Wscript.Echo "Depth: " & objItem.Depth Wscript.Echo "Description: " & objItem.Description Wscript.Echo "Height: " & objItem.Height Wscript.Echo "HostingBoard: " & objItem.HostingBoard Wscript.Echo "HotSwappable: " & objItem.HotSwappable Wscript.Echo "InstallDate: " & objItem.InstallDate Wscript.Echo "Manufacturer: " & objItem.Manufacturer Wscript.Echo "Model: " & objItem.Model Wscript.Echo "Name: " & objItem.Name Wscript.Echo "OtherIdentifyingInfo: " & objItem.OtherIdentifyingInfo Wscript.Echo "PartNumber: " & objItem.PartNumber Wscript.Echo "PoweredOn: " & objItem.PoweredOn Wscript.Echo "Product: " & objItem.Product Wscript.Echo "Removable: " & objItem.Removable Wscript.Echo "Replaceable: " & objItem.Replaceable Wscript.Echo "RequirementsDescription: " & objItem.RequirementsDescription Wscript.Echo "RequiresDaughterBoard: " & objItem.RequiresDaughterBoard Wscript.Echo "SerialNumber: " & objItem.SerialNumber Wscript.Echo "SKU: " & objItem.SKU Wscript.Echo "SlotLayout: " & objItem.SlotLayout Wscript.Echo "SpecialRequirements: " & objItem.SpecialRequirements Wscript.Echo "Status: " & objItem.Status Wscript.Echo "Tag: " & objItem.Tag Wscript.Echo "Version: " & objItem.Version Wscript.Echo "Weight: " & objItem.Weight Wscript.Echo "Width: " & objItem.Width Next -------------------------------- On Tue, Jul 13, 2010 at 7:24 PM, Devendra Nikose <[email protected]>wrote: > Hello friends, > I have Intel original mother board in my PC. I want to know the series of > mother board. Please tell me the step by step process. > Regards > Devendra > Voice your thoughts in the blog to discuss the Rights of persons with > disability bill at: > http://www.accessindia.org.in/harish/blog.htm > > To unsubscribe send a message to [email protected] the subject unsubscribe. > > To change your subscription to digest mode or make any other changes, > please visit the list home page at > http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in > -- Kind Regards, Kiran S Deshpande. DISCLAIMER:- This e-mail message (including any attachment) is intended only for the personal use of the recipient(s) named above. This message is confidential and may be legally privileged. If you are not an intended recipient, you may not review, copy or distribute this message. If you have received this communication in error, please notify us immediately by e-mail and delete the original message. Any views or opinions expressed in this message are those of the author only. Furthermore, this message (including any attachment) does not create any legally binding rights or obligations whatsoever, which may only be created by the exchange of hard copy documents signed by a duly authorized representative of the company If Official or other wise signed by the Author on Valid Documents. Voice your thoughts in the blog to discuss the Rights of persons with disability bill at: http://www.accessindia.org.in/harish/blog.htm To unsubscribe send a message to [email protected] with the subject unsubscribe. To change your subscription to digest mode or make any other changes, please visit the list home page at http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in Voice your thoughts in the blog to discuss the Rights of persons with disability bill at: http://www.accessindia.org.in/harish/blog.htm To unsubscribe send a message to [email protected] with the subject unsubscribe. To change your subscription to digest mode or make any other changes, please visit the list home page at http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
