Now this is a error that every Microsoft VPC or Virtual Server user must have encountered at least once. The root lies in the way the installer initiates some disk space calculation mechanisms from the GUI. A simple alternative is using the following command. msiexec /package <filename.MSI> /qr Or if you are the more adventurous types go ahead extract the installer and run it with. <filename.exe> /extract <Target Folder> cd <Target Folder> msiexec /i <filename.msi> Technorati...
If you want to install an application that is packaged as an .MSI and you want to know when the application has finished installing, use this code: string installerFilePath; installerFilePath = "C:\\Program Files\\CCS\\Downloads\\CCSR... System.Diagnostics.Process installerProcess; installerProcess = System.Diagnostics.Process.... "/q"); while (installerProcess.HasExited... { //indicate progress to user Application.DoEvents(); System.Threading.Thread.Sle...