Skip to main content

Microsoft Virtual PC Software Console stays minimized




  1. Browse down to the %appdata%\Microsoft\Virtual PC directory on your client
  2. Locate the Options.xml file and open it in a text editor (like notepad)
  3. Locate the section under the
  4. You'll see a big integer under and
  5. Change it something reasonable (I choose 10) and save the .xml

Now the console will open normally.

Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...