Q. How can I change the default path for Windows Virtual PC?
A. The default path for Windows Virtual PC configuration files can be easily changed using PowerShell as follows: PS C:\Users\john> $vpc=new-object -com VirtualPC.Application -Strict PS C:\Users\john> $path="d:\virtuals" PS C:\Users\john> $vpc.DefaultVMConfigurationPath = $path
John Savill
May 19, 2011
1 Min Read
A. The default path for Windows Virtual PC configuration files can be easily changed using PowerShell as follows:
PS C:Usersjohn> $vpc=new-object -com VirtualPC.Application -Strict
PS C:Usersjohn> $path="d:virtuals"
PS C:Usersjohn> $vpc.DefaultVMConfigurationPath = $path
About the Author
Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
You May Also Like