Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What is PowerShell 1

Status
Not open for further replies.

mikrom

Programmer
Mar 27, 2002
2,997
SK
I got today an automatic optional update with Powershell 1.0 for Windows Vista.
I have never seen PowerShell before and by searching the web for informations I found this forum.

So, I have some questions:

1. What is the place of PowerShell in Windows Scripting? Is it just new language included with WSH (Windows Script Host), or is it a new standalone scripting alternative for Windows?

2. When I looked at the language, it looks for me at the first sight similar to Perl. Is that a Perl dialect for Windows or a Perl like language? Are there regular expressions, lists and hashes available in PowerShell too?
 
PowerShell is the next scripting language from Microsoft. It utilizes a Verb-Noun structure such as Get-Mailbox. The language is not a Perl derivative, however Microsoft has taken structure from a number of languages to make PowerShell the most powerful scripting language for Windows Systems.

All future MS products are being designed with PowerShell in mind. Exchange 2007 was the first product released with this integration. In fact, there are some things that are not accessible via the GUI that can only be configured via PowerShell. The new Exchange Management Console is nothing more than a wrapper to execute PowerShell commands.

PowerShell has the ability to execute VBScripts in addition to PS1 scripts (the native PowerShell script extension).

This is a super powerful language that will only get better over time. It is worth learning if you wish to be able to automate tasks.

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
Work SMARTER not HARDER. The Spider's Parlor's Admin Script Pack is a collection of Administrative scripts designed to make IT Administration easier! Save time, get more work done, get the Admin Script Pack.
 
Hi Mark,
Thank you for informations. I will install and try it.

Regards
Roman
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top