Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Define PowerShell in Thirty Words or Less

$
0
0

 Summary: Microsoft Scripting Guy, Ed Wilson, offers a quick thirty-word description of Windows PowerShell, and he proves it.

  What is Windows PowerShell in thirty words or less?

 Windows PowerShell is the next generation cmd prompt and scripting language from Microsoft. It can be a replacement for vbscript and for the cmd prompt in most circumstances.

   How can you be sure that was thirty words or less?

   By using the following code:

$a = "Windows PowerShell is the next generation cmd prompt and scripting language from Microsoft. It can be a replacement for vbscript and for the cmd prompt in most circumstances."

  Measure-Object -InputObject $a -Word

 


Viewing all articles
Browse latest Browse all 3333

Trending Articles