Sign in
Taylor Brown's Blog
Hyper-V Program Manager
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
C#
Commentary
Hyper-V - Windows 8
Hyper-V - Windows Server 2008
Hyper-V - Windows Server 2008 R2
IT Professional
News
Powershell
SCVMM
WMI
Archive
Archives
November 2014
(2)
October 2014
(1)
June 2014
(1)
May 2014
(2)
March 2014
(1)
November 2013
(1)
September 2013
(1)
August 2013
(4)
July 2013
(4)
May 2013
(2)
December 2012
(3)
November 2012
(2)
October 2012
(2)
September 2012
(1)
July 2012
(1)
June 2012
(3)
May 2012
(1)
March 2012
(8)
January 2012
(1)
August 2011
(1)
April 2011
(2)
March 2011
(1)
February 2011
(1)
July 2010
(2)
June 2010
(4)
March 2010
(1)
February 2010
(2)
October 2009
(1)
April 2009
(1)
March 2009
(3)
February 2009
(2)
January 2009
(9)
December 2008
(1)
November 2008
(5)
October 2008
(10)
September 2008
(6)
August 2008
(7)
July 2008
(8)
June 2008
(8)
May 2008
(8)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Taylor Brown's Blog
Backup Jobs Failing Post Nov Rollup Install
Posted
1 month ago
by
Taylor Brown [MSFT]
9
Comments
I wanted to post a final update to this post – we believe we now have the update fixed and this issue should be resolved. 12/1 – Resolution and Response To Comments We have fixed KB3000853 both on Windows update and on download center, the KB article...
Taylor Brown's Blog
Setting Guest IP Addresses From The Host
Posted
1 month ago
by
Taylor Brown [MSFT]
0
Comments
Last week at TechEd I had several people ask about how they can set the IP address of a guest from the host. We've had this functionality in Hyper-V since Windows Server 2012, it was largely introduced for Hyper-V replication (to allow you to set a different...
Taylor Brown's Blog
TechEd Europe: Windows vNext Hyper-V Backup and Restore PowerShell Scripts
Posted
2 months ago
by
Taylor Brown [MSFT]
0
Comments
TechEd Europe - Windows vNext Hyper-V Backup and Restore PowerShell Scripts We just had a fantastic session at TechEd Europe showcasing the next evolution in Hyper-V backup and restore coming with Windows vNext (currently available as a Technical Preview...
Taylor Brown's Blog
Hyper-V Security Guide and New QFE for 2012R2 Addressing Backup with CSV Writer
Posted
6 months ago
by
Taylor Brown [MSFT]
0
Comments
If you follow me on Twitter ( @HyperV_taylorb ) this is old news but for those that don’t two updates for you… Windows Server 2012 Security Guide For Hyper-V http://technet.microsoft.com/en-us/library/dn741280.aspx This release of the Hyper-V Security...
Taylor Brown's Blog
I’m on Twitter Now…
Posted
7 months ago
by
Taylor Brown [MSFT]
0
Comments
I’ve finally joined the world of Twitter… Send me a Tweet @HyperV_taylorb or follow me https://twitter.com/HyperV_taylorb . -taylorb
Taylor Brown's Blog
Recording From TechEd 2014 Now Available
Posted
7 months ago
by
Taylor Brown [MSFT]
0
Comments
Last week was TechEd 2014 in Houston, if you haven’t been to TechEd before it’s quite an experience. This was a great year and we have some excellent sessions that where recorded and now published online. Starting Page for All Sessions http://channel9...
Taylor Brown's Blog
Importing VMs Utilizing The Hyper-V WMI v2 Namespace
Posted
9 months ago
by
Taylor Brown [MSFT]
3
Comments
I have had a few folks ask me about importing VM’s though our WMI namespace. The Hyper-V WMI v2 interfaces introduce a new concept of planned virtual machines, this allows you to create/import virtual machines and make configuration changes...
Taylor Brown's Blog
Memory Configuration Utilizing The Hyper-V WMI v2 Namespace
Posted
over 1 year ago
by
Taylor Brown [MSFT]
2
Comments
I have gotten a few questions specifically regarding how to configure dynamic memory utilizing the root\virtualization\v2 namespace. At face value it’s pretty simple you retrieve the Msvm_MemorySettingsData set the DynamicMemoryEnabled property...
Taylor Brown's Blog
Best Practices for Virtualizing & Managing Exchange 2013
Posted
over 1 year ago
by
Taylor Brown [MSFT]
0
Comments
The Exchange team has just released a new white paper on virtualizing Exchange 2013, it’s over 90 pages and goes into pretty good detail – if your virtualizing Exchange or plan to going forward I’d spend some time going over it. Best Practices...
Taylor Brown's Blog
Removing a VHD From A VM Using The Hyper-V WMI V2 Namespace
Posted
over 1 year ago
by
Taylor Brown [MSFT]
0
Comments
What good would Attaching a VHD To A VM Using The Hyper-V WMI V2 Namespace be if you couldn’t remove one two… Here’s how you do it. Removing a virtual hard disk $vmName = " Test " $vhdPath = " d:\vms\Test.vhdx " # Retrieve the Hyper-V Management...
Taylor Brown's Blog
Attaching a VHD To A VM Using The Hyper-V WMI V2 Namespace
Posted
over 1 year ago
by
Taylor Brown [MSFT]
6
Comments
Relating to all my recent posts on the WMI V2 namespace here’s another one for attaching a VHD to a VM. It looks like a lot of code but a lot of it is duplicated (so if you where writing an application you can factor it pretty easily). There...
Taylor Brown's Blog
Removing a Network Adapter To A VM Using The Hyper-V WMI V2 Namespace
Posted
over 1 year ago
by
Taylor Brown [MSFT]
0
Comments
Relating to my previous posts regarding Adding a Network Adapter To A VM Using The Hyper-V WMI V2 Namespace and Connecting a VM Network Adapter To A Switch Using The Hyper-V WMI V2 Namespace I had some questions come in around removing a NIC. So...
Taylor Brown's Blog
Changing The MAC Address Of NIC Using The Hyper-V WMI V2 Namespace
Posted
over 1 year ago
by
Taylor Brown [MSFT]
1
Comments
Relating to my previous posts regarding Adding a Network Adapter To A VM Using The Hyper-V WMI V2 Namespace and Connecting a VM Network Adapter To A Switch Using The Hyper-V WMI V2 Namespace I had some questions come in around configuring static vs dynamic...
Taylor Brown's Blog
Connecting a VM Network Adapter To A Switch Using The Hyper-V WMI V2 Namespace
Posted
over 1 year ago
by
Taylor Brown [MSFT]
3
Comments
Following along with Adding a Network Adapter To A VM Using The Hyper-V WMI V2 Namespace you might want to connect a network adapter to a switch… Here’s how you would that, one thing to comment on is that the object returned when calling AddResourceSettings...
Taylor Brown's Blog
Adding a Network Adapter To A VM Using The Hyper-V WMI V2 Namespace
Posted
over 1 year ago
by
Taylor Brown [MSFT]
2
Comments
I have had a number of folks ask how to utilize the root\virtualization\v2 namespace to add a network adapter to a VM… For some more information take a look at the following MSDN pages: Networking service , Sample: Querying networking objects...
Taylor Brown's Blog
Important Hyper-V Fixes Included in KB 2855336 (Virtualized Active Directory corruption (bug check c00002e2) and vmms process hang)
Posted
over 1 year ago
by
Taylor Brown [MSFT]
0
Comments
The July Windows Server 2012/Windows 8 update (KB2855336) contains two fixes for Hyper-V scenarios that are likely to be important to a number of customers. Both of these updates are included in the rollup KB2855336 . KB2853952 - Loss of...
Taylor Brown's Blog
New White Paper - Best Practices for Virtualizing and Managing SQL Server 2012
Posted
over 1 year ago
by
Taylor Brown [MSFT]
0
Comments
I wanted to let everyone know the SQL Server team has just published a shiny new white paper (96 pages long) that discusses all the best practices for managing SQL Server on virtual machines in Windows Server 2012... It's a very well done white paper...
Taylor Brown's Blog
Hey I’m Now A Program Manager…
Posted
over 1 year ago
by
Taylor Brown [MSFT]
2
Comments
I got a few notes about my signature line on my previous post ‘Program Manager, Hyper-V’… Yep I am now a program manager on the Hyper-V team – I moved over from the Hyper-V test team a few weeks ago and now work on Ben Armstrong’s...
Taylor Brown's Blog
Developing A Custom VMConnect Application
Posted
over 1 year ago
by
Taylor Brown [MSFT]
9
Comments
Some folks have asked creating there own VMConnect application – it’s actually really easy. Here’s a very basic example of how to create your own VMConnect application. You would likely want to add some error handling, change the window sizing...
Taylor Brown's Blog
Revisiting Some Old Posts…
Posted
over 2 years ago
by
Taylor Brown [MSFT]
0
Comments
I was reviewing my blog statistics the other day and noticed that a number of my old posts going all the way back to 2008 are still getting a lot of traffic. A lot has changed since 2008 and while in most cases the information has stayed the same...
Taylor Brown's Blog
Customizing The Key Value Pair (KVP) Integration Component
Posted
over 2 years ago
by
Taylor Brown [MSFT]
9
Comments
This is effectively and update from one my very old posts Hyper-V WMI: KVP Exchange aka Data Exchange (Retrieving and Modifying Parent/Host KVP’s) which still receives a lot of traffic. The same code from back in 2008 still works today even on Windows...
Taylor Brown's Blog
Retrieving the IP Address Of A VM In Hyper-V
Posted
over 2 years ago
by
Taylor Brown [MSFT]
2
Comments
This post is to update an old from one 2008 Hyper-V WMI Using PowerShell Scripts – Part 3 (KVP's - Guest OS Version) – in reviewing that post the most coming inquiry was looking for the guests IP address, well we got that for you in PowerShell now… ...
Taylor Brown's Blog
Live Migration and Storage Migration Without Constrained Delegation Using PrincipalsAllowedToDelegateToAccount
Posted
over 2 years ago
by
Taylor Brown [MSFT]
0
Comments
In my post yesterday ( Remote Administration Without Constrained Delegation Using PrincipalsAllowedToDelegateToAccount ) I showed how to utilize the new resource-based Kerberos constrained delegation to configure remote administration with Hyper...
Taylor Brown's Blog
Remote Administration Without Constrained Delegation Using PrincipalsAllowedToDelegateToAccount
Posted
over 2 years ago
by
Taylor Brown [MSFT]
1
Comments
You may have read my previous posts on remote administration and constrained delegation ( Enabling Hyper-V Remote Management - Configuring Constrained Delegation For SMB and Highly Available SMB or Enabling Hyper-V Remote Management - Configuring Constrained...
Taylor Brown's Blog
Expanding Differencing Virtual Hard Disks
Posted
over 2 years ago
by
Taylor Brown [MSFT]
0
Comments
With the release of Windows Server 2012 we introduced a new virtual hard disk format known as VHDX. This new format provided the foundation for a number of features and performance enhancements. One such feature is the ability to independently...
Page 1 of 5 (124 items)
1
2
3
4
5