Below Script will help Cross vCenter Migration Write-Host “###########################################################################” Write-Host “############## Cross vCenter Migration Script Version 1.0 ###############” Write-Host “############## by Muneer Hussain. K –…
Get WWN through VMware PowerCli
Hi Below Script will get All HBA’s WWN details Get-Cluster ClusterName | Get-VMhost | Get-VMHostHBA -Type “FibreChannel” | Select VMHost,Device,@{N=”WWN”;E={“{0:X}” -f $_.PortWorldWideName}} | Sort VMhost,Device…
Active Directory – Bulk Users Creation – PowerShell
Hi! Below script will help to create bulk users from CSV file. 1. Prepare CSV file with below Heading First,Last,FullName,sAM,passwd,Dec 2. Save script as “BulkUsers.ps1”…