Remove-SCDriverPackage

Removes a driver package object from the VMM library.

Description

The Remove-SCDriverPackage cmdlet removes a driver package object from the System Center Virtual Machine Manager (VMM) library.

For more information about Remove-SCDriverPackage, type: "Get-Help Remove-SCDriverPackage -online".

Parameters

DriverPackage

Required? true
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies a driver package object.

Confirm

Required? false
Accept Pipeline Input? false
Position? named
Prompts for confirmation before running the command.

Force

Required? false
Accept Pipeline Input? false
Position? named
Forces the operation to complete. 

For example:
- Remove-SCSCVMHost -Force
  Forces the removal of a host object from the VMM database.

- Stop-SCVirtualMachine -Force
  Stops a virtual machine.

JobVariable

Required? false
Accept Pipeline Input? false
Position? named
Specifies that job progress is tracked and stored in the variable named by this parameter. 

PROTipID

Required? false
Accept Pipeline Input? false
Position? named
Specifies the ID of the PRO tip that triggered this action. This allows for auditing of PRO tips.

RunAsynchronously

Required? false
Accept Pipeline Input? false
Position? named
Indicates that the job runs asynchronously so that control returns to the command shell immediately. 

Examples

1: Remove a specific driver package.
PS C:\> Get-SCDriverPackage -PnPID "DRIVER" | Remove-SCDriverPackage -Confirm
This command removes the driver package object with the Plug and Play ID of "DRIVER" from the VMM library.

See Also