Skip to content

Instantly share code, notes, and snippets.

@maciakl
Created January 13, 2022 15:56
Show Gist options
  • Select an option

  • Save maciakl/6fd1a17030af3376bf3c5993cc3d6f41 to your computer and use it in GitHub Desktop.

Select an option

Save maciakl/6fd1a17030af3376bf3c5993cc3d6f41 to your computer and use it in GitHub Desktop.
Get the service tag (Dell) or vendor assigned serial number of your computer. This returns just the number, without other wmic output.
@echo off
for /f "skip=1" %%a in (
'wmic bios get serialnumber'
) do echo %%a & goto next
:next
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment