Monday, January 19, 2009

begin with 'a' through 'f' and 'n' through 'z'

to find all services but exclude those whose service names begin with 'a' through 'f' and 'n' through 'z'

PS R:\> get-service -Name * -Exclude [a-fn-z]* |
>> sort-object Name | format-table Name, DisplayName -auto
>>


` >> ` appears when you press Enter-key before typing.

No comments:

Post a Comment