Читать книгу PowerShell 7 und Windows PowerShell - Tobias Weltner - Страница 150

Zugelassene Verben auflisten

Оглавление

Get ist eines von 100 zugelassenen Verben (ursprünglich waren es 98, ab PowerShell 7 sind noch die beiden neuen Verben Build und Deploy hinzugekommen):

PS> (Get-Verb).Count

100

Get-Verb listet die zugelassenen Verben auf. Ab PowerShell 7 erhalten Sie zu jedem Verb eine kurze Beschreibung in der Spalte Description:

PS> Get-Verb -Verb Out

Verb AliasPrefix Group Description

---- ----------- ----- -----------

Out o Data Sends data out of the environment

PS> Get-Verb -Verb Move

Verb AliasPrefix Group Description

---- ----------- ----- -----------

Move m Common Moves a resource from one location to another

PS> Get-Verb

Verb AliasPrefix Group Description

---- ----------- ----- -----------

Add a Common Adds a resource to a container, or attaches ...

Clear cl Common Removes all the resources from a container b...

Close cs Common Changes the state of a resource to make it i...

Copy cp Common Copies a resource to another name or to anot...

(…)

PowerShell 7 und Windows PowerShell

Подняться наверх