Share via


Get-WdsBootImage

Get-WdsBootImage

Gets properties of boot images from the image store.

Sintassi

Parameter Set: Get0
Get-WdsBootImage [-Architecture <Architecture> ] [-AsJob] [-CimSession <CimSession[]> ] [-FileName <String> ] [-ImageName <String> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

Descrizione dettagliata

The Get-WdsBootImage cmdlet gets properties of boot images in the Windows Deployment Services image store. Get a boot image by specifying the Architecture, FileName, and ImageName parameters. If the image name and architecture do not uniquely identify the image, also specify the Filename parameter. If no parameter is specified, it will get all boot images. If the image name and architecture do not uniquely identify a single image, the command will return all images that meet the criteria.

Parametri

-Architecture<Architecture>

Specifies an architecture. This is the architecture of the boot image. Because you can use the same image name for boot images in different architectures, specify this this parameter to ensure that you return the correct image. I valori accettabili per questo parametro sono:

     -- ARM
     -- ia64
     -- x64
     -- x86

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

True (ByPropertyName)

Accetta caratteri jolly?

false

-AsJob

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-CimSession<CimSession[]>

Esegue il cmdlet in una sessione remota o in un computer remoto. Immettere un nome di computer o un oggetto di sessione, ad esempio l'output del cmdlet New-CimSession o Get-CimSession. Il valore predefinito è la sessione corrente nel computer locale.

Alias

Session

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

-FileName<String>

Specifies a file name. This is the file name of the boot image.

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

True (ByPropertyName)

Accetta caratteri jolly?

false

-ImageName<String>

Specifies the name of an image. This is the name of the image to get.

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

True (ByPropertyName)

Accetta caratteri jolly?

false

-ThrottleLimit<Int32>

Specifica il numero massimo di operazioni simultanee che è possibile stabilire per eseguire il cmdlet. Se il parametro viene omesso o si specifica il valore 0, Windows PowerShell® calcola un valore limite ottimale per il cmdlet basato sul numero di cmdlet CIM in esecuzione nel computer. Questo valore limite si applica solo al cmdlet corrente, non alla sessione o al computer.

Alias

nessuno

Obbligatorio?

false

Posizione?

named

Valore predefinito

nessuno

Accetta input da pipeline?

false

Accetta caratteri jolly?

false

<CommonParameters>

Questo cmdlet supporta i parametri comuni: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer e -OutVariable. Per altre informazioni, vedere   about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Input

Il tipo di input è il tipo degli oggetti che è possibile reindirizzare al cmdlet.

Output

Il tipo di output corrisponde al tipo di oggetti generati dal cmdlet.

  • Microsoft.Management.Infrastructure.CimInstance#MSFT_WdsBootImage

Esempi

Example 1: Get properties of a boot image

This command gets properties of the boot image named Fabrikam LOB setup (x86) for the x86 architecture.

PS C:\> Get-WdsBootImage -Architecture x86 -ImageName "Fabrikam LOB setup (x86)"

Argomenti correlati

Set-WdsBootImage

Enable-WdsBootImage

Disable-WdsBootImage

Remove-WdsBootImage

Import-WdsBootImage

Export-WdsBootImage