Skip to main content

Top 10 Tips for Using Windows PowerShell -- WindowsDevCenter.com

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Groups (1)

  • PowerShell

    PowerShell

    11 members,86 bookmarks

    A place to share links related to Windows PowerShell scripting and development.

Bookmark History

Saved by 4 people (1 private), first by anonymouse user on 2007-01-04


Public Comment

on 2007-04-17 by jaykul

From O'Reilly's Windows Dev Center, a getting started tutorial for PoSh in the form of ten excellent tips for PowerShell users.

Public Sticky notes

Remember that commands have a verb-noun format and parameter names start with a -. You can use either / or \ in paths.

Highlighted by smurawski

Use Get-Command to get a list of commands and Get-Help to find out help on the commands. You can also pass -? as a parameter to a command to obtain help. Use TabExpansion (and, optionally, find a TabExpansion replacement).

Highlighted by smurawski