!
Technorati Tags:
Virtual PC I've been doing a bit of work recently on a virtual PC and found that my console had gone missing. Even though it was visible in the start menu I could not actually see the window after a bit of searching I found this post by Sylvain Lafontaine on how to get it back.
Basically virtual PC stores an XML file that keeps track of all the application settings including the size and location of the Virtual PC Console.
The Options.XML file is located under
C:\Documents and Settings\__Name_Of_Your_Windows_Account__\Application
Data\Microsoft\Virtual PC\Options.xml
In Windows XP or
c:\Users\__Name_Of_Your_Windows_Account__\AppData\Microsoft\Virtual PC\Options.xml
if your running Vista.
Once you have the xml open you want to find the "Console Node" and make sure it looks a little something like the following
<console>
<height type="integer">575</height>
<left_position type="integer">0</left_position>
<top_position type="integer">0</top_position>
<visible type="boolean">true</visible>
<width type="integer">359</width>
</console>
just make sure you back up the file before you make any changes incase something goes wrong.
Thanks Sylvain this was a great help!