Monthly Archives: January 2012

VSphere PowerCLI : Changing the Network Name for multiple Virtual Machines

Below is a tutorial video showing how to change multiple network names for virtual machines inside Vsphere. The Powershell/PowerCLI command used in the video is : Import-CSV C:\name.csv | ForEach-object { Set-NetworkAdapter -NetworkAdapter ( Get-NetworkAdapter $_.name ) -NetworkName “Virtual Desktop Network” -confirm:$false} View in Full Screen for best … Continue reading

Posted in Computer, Computers | 1 Comment

PowerShell : Set-ADUser and changing the login script

The Set-ADUser is a very powerful cmdlet that allows for changing a users attributes in Active Directory. In this article, the Set-ADUser will be used to demonstrate how to change the logon script portion of a Users account in Active Directory. First, … Continue reading

Posted in Uncategorized | 3 Comments