# Examples # Change to VMware Paravirtual Modify-ScsiController -VM "Witness3" -Type Paravirtual # Change to LSI Logic SAS Modify-ScsiController -VM "APP1" -Type VirtualLsiLogicSAS # Change all the VM's that have the LSILogic Adapter to the VMware Paravirtual $CurrentVMs = Get-VM | Get-ScsiController | Select-Object Parent,Type | Where-Object ( $ .Type -eq "Paravirtual" ) Foreach ( $WorkingVm in $CurrentVMs ) ( # Update the working VM to an alternate adapter Modify-ScsiController -VM $WorkingVm.Parent -Type Paravirtual ) #PowerShell #scsi #VM #vSphere #Storage #VMwarePowerCLI #vSAN #TraditionalStorage #VVols #Controller #Apache2.0
ChangeScsiController.ps1
1 Comment - no search term matches found in comments.