Share via


Remove-WdsDriverPackage

Remove-WdsDriverPackage

Removes a driver package from a driver group or removes it from all driver groups and deletes it.

語法

Parameter Set: GroupById
Remove-WdsDriverPackage -GroupName <String> -Id <Guid> [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

Parameter Set: GroupByName
Remove-WdsDriverPackage -GroupName <String> -Name <String> [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

Parameter Set: StoreById
Remove-WdsDriverPackage -Id <Guid> -RemoveFiles [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

Parameter Set: StoreByName
Remove-WdsDriverPackage -Name <String> -RemoveFiles [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

詳細描述

The Remove-WdsDriverPackage cmdlet removes a driver package from a driver group or removes a driver package from all driver groups and deletes it from the Windows Deployment Services driver store. Specify a driver package by its unique name or ID.

To remove a driver package from a driver group, specify the name of the group. A client must have access to at least one group that a driver package belongs to in order to install it.

To remove a driver package from all groups and delete if from the driver store, specify the RemoveFiles parameter. Use the Import-WdsDriverPackage cmdlet to import drivers into the driver store.

參數

-AsJob

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-CimSession<CimSession[]>

在遠端工作階段或遠端電腦上執行 Cmdlet。輸入電腦名稱或工作階段物件,例如 New-CimSessionGet-CimSession Cmdlet 的輸出。預設為本機電腦上的目前工作階段。

別名

Session

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-GroupName<String>

Specifies the name of a driver group. The cmdlet removes the driver package from this group.

別名

必要?

true

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-Id<Guid>

Specifies an ID. This is the ID of the driver package to remove.

別名

必要?

true

位置?

named

預設值

接受管線輸入?

True (ByPropertyName)

接受萬用字元?

false

-Name<String>

Specifies a name. This is the unique name of the driver package. If this name is not unique, specify the driver package ID, instead, by using the Id parameter.

別名

必要?

true

位置?

named

預設值

接受管線輸入?

True (ByPropertyName)

接受萬用字元?

false

-RemoveFiles

Indicates that this cmdlet removes the driver package from all driver groups and deletes it from the store.

別名

必要?

true

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

-ThrottleLimit<Int32>

指定為執行此 Cmdlet 可建立的最大同時作業數。如果省略這個參數或輸入 0 的值,則 Windows PowerShell® 會根據在電腦上執行的 CIM Cmdlet 數目,計算 Cmdlet 的最佳節流限制。節流限制僅適用於目前 Cmdlet,不適用於工作階段或電腦。

別名

必要?

false

位置?

named

預設值

接受管線輸入?

false

接受萬用字元?

false

<CommonParameters>

此 Cmdlet 支援一般參數:-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer 與 -OutVariable。如需詳細資訊,請參閱 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

輸入

輸入類型是您可以使用管線處理方式傳遞給 Cmdlet 的物件類型。

輸出

輸出類型是 Cmdlet 所發出的物件類型。

  • Microsoft.Management.Infrastructure.CimInstance#MSFT_WdsDriverPackage

範例

Example 1: Remove a driver package from a group by using the package ID

This command removes the driver package that has the specified ID from the group named Drivers for Fabrikam Devices.

PS C:\> Remove-WdsDriverPackage -GroupName "Drivers for Fabrikam Devices" -Id 32d78628-07fb-4e18-adc4-f0ecf8b41bbe

Example 2: Remove a named driver package from a group

This command removes the driver package named Fabrikam Device Driver (x64) from the group named Drivers for Fabrikam Devices.

PS C:\> Remove-WdsDriverPackage -GroupName "Drivers for Fabrikam Devices" -Name "Fabrikam Device Driver (x64)"

Example 3: Remove a driver package from all groups by using the package ID

This command removes the driver package that has the specified ID from all groups and deletes it from the driver store.

PS C:\> Remove-WdsDriverPackage -Id 32d78628-07fb-4e18-adc4-f0ecf8b41bbe -RemoveFiles

Example 4: Remove a named driver package from all groups

This command removes the driver package named Fabrikam Device Driver (x64) from all groups and deletes it from the driver store.

PS C:\> Remove-WdsDriverPackage -Name "Fabrikam Device Driver (x64)" -RemoveFiles

相關主題

Add-WdsDriverPackage

Disable-WdsDriverPackage

Enable-WdsDriverPackage

Get-WdsDriverPackage

Import-WdsDriverPackage