Automate Virtual PC 2007 with PowerShell? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T14:44:52Z http://stackoverflow.com/feeds/question/971590 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/971590/automate-virtual-pc-2007-with-powershell 7 Automate Virtual PC 2007 with PowerShell? Dennis Palmer 2009-06-09T18:00:42Z 2009-07-21T12:51:53Z <p>This is basically a duplicate of <a href="http://stackoverflow.com/questions/892978/is-there-a-way-api-scripting-to-work-with-virtual-pc">this question</a>, but the accepted answer was "no" and I would like to keep this question open until getting an actual answer instead of accepting "NO" and giving up.</p> <p><a href="http://blogs.technet.com/stephenrose/" rel="nofollow">Stephen Rose</a> told me via Twitter DM to use PowerShell to start and stop Virtual PC VM's and do things like run installations, automatic updates and virus scans, but he hasn't yet responded to my request for any links to resources that describe how to do so.</p> <p>I've started learning PowerShell, but I can't figure out how to get or work with any information on the list of VM's within Virtual PC.</p> <p><strong>Edit:</strong> <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=65e1c5eb-df9b-415f-b2d6-27f6ef5dceb9" rel="nofollow">Windows Virtual PC (Windows 7 XP Mode)</a> is not the same as Virtual PC 2007. I am running Windows 7 as my host OS, but I'm still using Virtual PC 2007 because I need to maintain the ability to run the guest machines on Vista or XP hosts that won't have the new Windows Virtual PC. I installed Windows Virtual PC briefly to check it out and it had to do a bunch of conversions on my virtual images. The suggestion by @x0n (<code>$vpc = new-object -com virtualpc.application</code>) produces the following error on my system:</p> <pre><code>New-Object : Cannot load COM type virtualpc.application. At line:1 char:18 + $vpc = new-object &lt;&lt;&lt;&lt; -com virtualpc.application + CategoryInfo : InvalidType: (:) [New-Object], PSArgumentException + FullyQualifiedErrorId : CannotLoadComObjectType,Microsoft.PowerShell.Commands.NewObjectCommand </code></pre> <p><strong>Edit 2:</strong> I used Jeff's code from <a href="http://stackoverflow.com/questions/660319/where-can-i-find-all-of-the-com-objects-that-can-be-created-in-powershell/660382#660382">this answer</a> to list all the COM objects on my system and couldn't find any that looked like they were Virtual PC. So now I'm thinking that the "it's not possible" answer may be correct, but I'm still going to leave this question open in case anyone has any further suggestions for getting PowerShell to work with Virtual PC 2007. In the mean time, I'm strongly considering making the jump to the new Windows Virtual PC in Windows 7 and just not worrying about keeping all my virtual machines compatible with earlier versions of Windows.</p> http://stackoverflow.com/questions/971590/automate-virtual-pc-2007-with-powershell/989615#989615 0 Answer by x0n for Automate Virtual PC 2007 with PowerShell? x0n 2009-06-13T00:34:21Z 2009-06-13T00:34:21Z <p>Hey Dennis,</p> <p>Is this what you're looking for? I'm on Windows 7 that has the "virtual windows xp" feature installed (which is effectively vpc 2007).</p> <pre><code>[E] PS&gt; $vpc = new-object -com virtualpc.application [E] PS&gt; $vpc HostInfo : System.__ComObject VirtualMachines : System.__ComObject VirtualNetworks : System.__ComObject UnconnectedNetworkAdapters : System.__ComObject SupportDrivers : System.__ComObject Tasks : System.__ComObject MinimumMemoryPerVM : 4 MaximumMemoryPerVM : 3071 SuggestedMaximumMemoryPerVM : 2763 MaximumFloppyDrivesPerVM : 1 MaximumSerialPortsPerVM : 2 MaximumParallelPortsPerVM : 1 MaximumNetworkAdaptersPerVM : 4 MaximumNumberOfIDEBuses : 2 DefaultVMConfigurationPath : G:\Users\Oisin\AppData\Local\Microsoft\Windows Virtual PC\Virtual Machines\ SearchPaths : {} USBDeviceCollection : System.__ComObject Name : Windows Virtual PC Version : 6.1.7084.0 UpTime : 2 </code></pre> http://stackoverflow.com/questions/971590/automate-virtual-pc-2007-with-powershell/1104301#1104301 2 Answer by Sebastiaan Megens for Automate Virtual PC 2007 with PowerShell? Sebastiaan Megens 2009-07-09T14:38:28Z 2009-07-09T14:38:28Z <p>To test some of my own software within a VM I use AutoIt (<a href="http://www.autoitscript.com/autoit3/" rel="nofollow">http://www.autoitscript.com/autoit3/</a>) to start the VM, and within the VM I use it again to start and control my application. Communication is done using a shared folder within the VM (writing the AutoIt script to execute, output of the application like a log).</p> <p>It's not Powershell, but maybe this helps anyway. :)</p> <p>Regards,</p> <p>Sebastiaan</p> http://stackoverflow.com/questions/971590/automate-virtual-pc-2007-with-powershell/1158995#1158995 0 Answer by MagicAndi for Automate Virtual PC 2007 with PowerShell? MagicAndi 2009-07-21T12:51:53Z 2009-07-21T12:51:53Z <p>It look like it may be possible to automate the creation of virtual images using <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=bc49c7c8-4840-4e67-8dc4-1e6e218acce4" rel="nofollow">MS Virtual Server 2005</a>. The following articles detail the use of PowerShell scripts to automate the creation of virtual images:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/magazine/cc793968.aspx" rel="nofollow">Configuration Testing With Virtual Server, Part 1</a></li> <li><a href="http://msdn.microsoft.com/en-us/magazine/dd252952.aspx" rel="nofollow">Configuration Testing With Virtual Server, Part 2</a></li> </ul> <p>From part 2, in the section Configuration Tests on a Virtual Machine, it seems possible to transfer files and schedule scripts to run. Using these articles as a basis, it should be possible to automate the building of a MS virtual image in the same way as lordbrain described for a VMware image.</p>