SHARE
Facebook X Pinterest WhatsApp

System Installation: Script to display serial number on remote machine

Author: Rod TrentPlatform: Windows NT, Windows 2000Type: WSH, VBScript DESCRIPTION: RemoteSN takes your input (computer name), connects to the remote WMI namespace, and then returns the computer’s serial number. You can get the local serial number by inputting “localhost” in the prompt.  To get a serial number from a computer, the computer must have WMI […]

Sep 23, 2003
Datamation content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Author: Rod Trent
Platform: Windows NT, Windows 2000
Type: WSH, VBScript

DESCRIPTION: RemoteSN takes your input (computer name), connects to the remote WMI namespace, and then returns the computer’s serial number. You can get the local serial number by inputting “localhost” in the prompt.  To get a serial number from a computer, the computer must have WMI 1.5 installed and be compatible with SMBIOS version 2.1. Save this file as a .VBS and run with WScript.  If the computer name is entered incorrectly, or cannot be found on the network, an error message will indicate that the remote server does not exist.

Download the script.
Scroll down to view the script.


SCRIPT:

ComputerName = InputBox(“Enter the name of the computer you wish to query”) winmgmt1 = “winmgmts:{impersonationLevel=impersonate}!//”& ComputerName &”” ‘WScript.Echo winmgmt1 Set SNSet = GetObject( winmgmt1 ).InstancesOf (“Win32_BIOS”) for each SN in SNSet MsgBox “The serial number for the specified computer is: ” & SN.SerialNumber Next


Disclaimer: We hope that the information in these pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided “as -is”, without any warranty, whether express or implied, of its accuracy, completeness, fitness for a particular purpose, title or non-infringement, and none of the third-party products or information mentioned in the work are authored, recommended, supported or guaranteed by me. I shall not be liable for any damages you may sustain by using this information, whether direct, indirect, special, incidental or consequential, even if it has been advised of the possibility of such damages.

  SEE ALL
APPLICATIONS ARTICLES
 

Recommended for you...

8 Best Data Analytics Tools: Gain Data-Driven Advantage
Common Data Visualization Examples: Transform Numbers into Narratives
Liz Ticong
May 20, 2024
10 Best Cloud-Based Project Management Software Platforms of 2024
Leon Yen
May 14, 2024
HubSpot CRM vs. Salesforce: Head-To-Head Comparison (2024)
Datamation Logo

Datamation is the leading industry resource for B2B data professionals and technology buyers. Datamation's focus is on providing insight into the latest trends and innovation in AI, data security, big data, and more, along with in-depth product recommendations and comparisons. More than 1.7M users gain insight and guidance from Datamation every year.

Property of TechnologyAdvice. © 2025 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.