Skip to Content
Professional Windows® PowerShell
book

Professional Windows® PowerShell

by Andrew Watt
April 2007
Intermediate to advanced
551 pages
12h 9m
English
Wrox
Content preview from Professional Windows® PowerShell

6.1. Using Parameters

You can use Windows PowerShell commands or functions without specifying any parameters. To retrieve information about all running processes, for example, you can use the get-process cmdlet and simply type:

get-process

Typically, you will see more than a screen of processes listed. The busier the machine, the more difficult it is to see what processes are running. You can use parameters to better focus the results returned by the get-process cmdlet. For example, with the get-process cmdlet, you can use a processName parameter, an ID parameter or an inputObject parameter to specify how the cmdlet is to execute.

Windows PowerShell parameters are often used by providing a cmdlet name, then a parameter name followed by a space character, then the parameter value. For example, to retrieve information about all running svchost processes, type:

get-process -processName svchost

The cmdlet's name is get-process. The parameter's name is processName and must be immediately preceded by a minus sign (or hyphen, if you prefer). The parameter value is svchost.

If there are no whitespace characters in the value supplied for a parameter, you don't need to supply paired quotation marks or paired apostrophes around the parameter value. So, the command

get-process -processName "svchost"

is equivalent to the previous command. However, if the parameter value you want to supply contains, for example, a space character, you must enclose the value in paired quotation marks or paired ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

PowerShell Deep Dives

PowerShell Deep Dives

Jeffery Hicks, Oisin Grehan, Richard Siddaway, Aleksandar Nikolic

Publisher Resources

ISBN: 9780471946939Purchase book