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

Syntax verstehen

Оглавление

Mit dem Parameter -? erhalten Sie bei allen Cmdlets eine Schnellhilfe. Darin ist immer die besonders wertvolle Syntax zu sehen. Wer die darin enthaltenen Informationen versteht, kann ihr fast alle wichtigen Details zu einem Befehl entnehmen.

Schauen wir uns das bei einem weiteren interessanten Cmdlet an:

PS> Get-ComputerInfo -?

NAME

Get-ComputerInfo

SYNOPSIS

Gets a consolidated object of system and operating system properties.

SYNTAX

Get-ComputerInfo [[-Property] <System.String[]>] [<CommonParameters>]

DESCRIPTION

The `Get-ComputerInfo` cmdlet gets a consolidated object of system and

operating system properties. This cmdlet was introduced in Windows PowerShell

5.1.

RELATED LINKS

Online Version: https://docs.microsoft.com/powershell/module/microsoft.powershel

l.management/get-computerinfo?view=powershell-7&WT.mc_id=ps-gethelp

REMARKS

To see the examples, type: "Get-Help Get-ComputerInfo -Examples"

For more information, type: "Get-Help Get-ComputerInfo -Detailed"

For technical information, type: "Get-Help Get-ComputerInfo -Full"

For online help, type: "Get-Help Get-ComputerInfo -Online"

PowerShell 7 und Windows PowerShell

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