Showing archive results for June 2013

Jun 4, 2013
Post comments count0
Post likes count0

TechEd 2013 New Orleans–Day 2

ScriptingGuy1

SUMMARY: Microsoft Scripting Guy Ed Wilson talks about PowerShell stuff from Tuesday June 4, 2013. The second day of TechEd 2013 North America in New Orleans continues to roll on. First guest of the day Jeffrey Snover The day started as great as possible – Microsoft Distinguish Engineer and Lead Architect  for Windows, Jeffrey Snover cam...

Scripting Guy!Windows PowerShellcommunity
Jun 4, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Add Adapter to a Virtual Machine

Doctor Scripto

Summary: Use Windows PowerShell to add a network adapter to a virtual machine.  How do I add a network adapter to my virtual machine on Hyper-V?  Use the ADD-VMNetworkAdapter cmdlet: ADD-VMNetworkAdapter -vmname "My Virtual Machine" -switchname "ProdVlan" Remember, you can always get a list of Hyper-V networks with Get-VMSwitch.

Scripting Guy!Windows PowerShellPowerTip
Jun 4, 2013
Post comments count0
Post likes count0

TechEd 2013: Another Day, Another Script

ScriptingGuy1

Summary: Microsoft Scripting Guy Ed Wilson talks about TechEd 2013 Day 1, and previews Day 2. Monday, Day 1 of TechEd 2013 North America in New Orleans is over, and I am getting ready for Day 2. Last night we were late getting back to our hotel due to the Expo Hall reception and a late night dinner at my favorite New Orleans restaurant. To be hones...

Scripting Guy!communityTechEd
Jun 4, 2013
Post comments count0
Post likes count0

Creating a Home Drive with Windows PowerShell: Part 1

Doctor Scripto

Summary: Microsoft PowerShell MVP and Honorary Scripting Guy, Sean Kearney, begins a discussion about home drives and Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. If you are a seasoned Hey, Scripting Guy! Blog reader, you know that the most frequent guest blogger is Sean Kearney. If you are new to the blog, I welcome you, and I ...

Scripting Guy!Windows PowerShellguest blogger
Jun 3, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Check Virtual Machine Boot Order

Doctor Scripto

Summary: Use Windows PowerShell to check the boot order on a virtual machine.  How do I check the boot order on a virtual machine running on Hyper-V?  Use the Get-VMBios cmdlet and check the StartupOrder property. Get-VMBios -vmname "Virtual Machine Name" | Select-object -expandproperty StartupOrder Adding the Com...

Scripting Guy!Windows PowerShellPowerTip