Archive for category Quick Tips

Running PowerShell Scripts from Command Line with Parameters

There are plenty of samples on the Internet about how to run PowerShell scripts from command line. However, I have huge trouble passing parameters, especially when the parameters contain space. After hours of trial and error, here is what I got it working.

powershell -NonInteractive -NoProfile -Command & “””C:\Directory with Space\PowerShellScript.ps1“”” -NoSpaceParameter value1 -Time “””12/9/2010 7:00:00 PM“”” -Comment “””test abc“””

Basically, the Command parameter is surrounded by one double quote, and to use double quote in PowerShell command itself, you need to use triple double quote. Have fun quoting. J

Leave a comment

Retrieving Service Tag/Serial Number in Command Line

wmic bios get serialnumber

Here is the list what expected depends on different hardware vendor,

  • Dell: Service Tag
  • VMware: VMware – uuid (e.g. VMware-50 29 d4 45 5b d6 5b 21-f3 8c 82 7f 75 25 b1 1f)
  • Lenovo: Serial Number

Leave a comment