Windows Installer doesn’t finish determining disk space requirements

On my Windows Server 2008 VPC several programs could not be installed by running the .msi file. Before starting the actual installation process, the Windows Installer checks how much disk space is available, but it doesn’t finish this process. It pops up with the message “please wait while the installer finishes determining your disk space requirements”, and after a few hours it still told me to wait. I’ve seen several posts on the internet about users with the same message, but nobody shows the reason why the Microsoft Installer can’t finish determining the disk space requirements.

By executing the msi via the command-line msiexec command, I can get passed that message on my VPC with enough disk space. Use the following command as a workaround:

msiexec /i filename.msi

See the comments for other suggested workarounds. I found a blog post that says that temporarily removing your VirtualPC Virtual Machine additions does the trick, see Donn Felker's "Cannot install programs on Virtual PC" blog post. It didn't work for me, but maybe it helps you.

 

Published Wed, Jan 14 2009 11:29 PM by Harold van de Kamp
Filed under:

Comments

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, January 23, 2009 8:44 PM by Rodolfo

even running the command-line with elevated command prompt, i still get the same message...

don't know what to do in this case.

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, February 09, 2009 6:12 AM by anonymous

try this...

msiexec /package <filename.MSI> /qr

this will run the installation with reduced UI.

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, February 13, 2009 3:49 PM by Daniel Revell

msiexec /package <filename.MSI> /qr

Worked for me. Thanks

# VSeWSS 1.3 - Please wait while the installer finishes determining your disk space requirements

Tuesday, March 03, 2009 9:54 PM by Corey Roth - DotNetMafia.com - Tip of the Day

I have been working on creating a new Windows Server 2008 virtual machine lately, so I decided to grab

# VSeWSS 1.3 - Please wait while the installer finishes determining your disk space requirements

Tuesday, March 03, 2009 11:15 PM by Mirrored Blogs

I have been working on creating a new Windows Server 2008 virtual machine lately, so I decided to grab

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, April 07, 2009 3:52 PM by The Luddite Developer

I appear to be having a similar problem on a stand alone dell running XP SP3, VS2008 SP1, and .NET 3.5 SP1.

MS TLA WTF???

theludditedeveloper.wordpress.com/.../please-wait-while-the-installer-finishes-determining-your-disk-space-requirements

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, April 07, 2009 4:02 PM by Andrew

Thank you very much this did the trick!  ASP.NET MVC 1.0 was giving me this issue.

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, April 15, 2009 12:40 PM by faister

IT WORKS! you're a life saver, i was about to leave my vpc for a couple of hours and hopefully it finishes determining the disk space requirements. however i noticed that there is no disk activity on my VPC instance. that's when i searched and found your blog. thanks! :)

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, April 22, 2009 5:19 PM by Skip Sailors

Thank you.  msiexec /i <package> did it for me.

I have seen this before.  I am glad to have a workaround, but I wish I understood the causes(s).  I sometimes have to build MSI packages myself.  What do I have to do to avoid my own package doing this?

# re: Windows Installer doesn’t finish determining disk space requirements

Saturday, May 09, 2009 11:15 AM by Hokuszpok

The same problem probably appeaers after installing SP3 for XP. The problem can be resolved with re-gestration of the insllerr files FOR ONCE! (beacasue the at the second installation appears again...

I have used these commands:

regsvr32 c:\windows\system32\msi.dll

regsvr32 c:\windows\system32\msisip.dll

regsvr32 c:\windows\system32\msihnd.dll

%Windir%\system32\msiexec /unregserver

%Windir%\system32\msiexec /unreg

%Windir%\system32\msiexec /regserver

regedit /s "Installer2Manual.reg"

RMDIR /S /Q %TEMP%

MD %TEMP%

del /q %systemdrive%\temp\*.*

del /q %systemdrive%\%windir%\temp\*.*

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, June 09, 2009 9:43 AM by James White

msiexec /package <filename.MSI> /qr

worked for me!! Thanks

# Please wait...

Monday, June 22, 2009 4:48 PM by Mark Wolzak

I've seen this error in numerous occasions now and even so many solutions on the web: 'please

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, June 24, 2009 2:12 PM by Happy Guy

The option /package /qr did the trick for me on Windows 2008 server 32bit virtual machine.

Thank you people. Getting Azure SDK running without URL rewriting wasn't an option :)

# re: Windows Installer doesn’t finish determining disk space requirements

Sunday, June 28, 2009 9:56 PM by twoj

Bitten by yet another bug. Platform: Microsoft Virtual PC2007, Guest OS: Vista Ultimate SP2 integrated, basic install, no additional software added and experiences problem with the windows installer. I believe the problem is with the Windows installer v4.5 and PC2007 although i have seen it reported that people are experiencing this without VPC. I also googled to see if its possible to uninstall or revert back to a previous Windows installer but if it is possible it doesn't seem easy. I'm aware i can suppress the interaction to install the program but i find this pretty bad that MS can't even validate that their installer works straight out of the box on thier main virtualization program.

# VirutalPC上のPCにMSI形式のファイルをインストールすると怒られる?

Thursday, July 02, 2009 9:33 AM by かるあ のメモ

何となくTFS以外のCI(断続的インテグレーション)環境を作ろうと思って、TeamCity + VisualSVN の環境をVirutalPC上のWindows Server 2008に作成していたわけです。 とりあえずVisualSVNのインストールとTeamCityのインストールが終わったので、VisualStudio用のSubversionプラグインであるAnkhSVNをインストールしようとしたら、こんなメッセージが出てインストールできない。 Please wait whi...

# Virtual PC(Windows Server 2008)에 ASP.NET MVC Install시 문제점

Monday, August 03, 2009 11:22 AM by RedPlus

<p>Virtual PC에 Windows Server 2008을 설치한 상태에서</p> <p>ASP.NET MVC V1.0을 설치시 아래와 같은 에러메시지가 나타나면서,</p> <p>아무리 기다려도 설치가 진행되지 않는 상태가 발생하는 경우가 있습니다.</p> <p>“pleas ...

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, August 17, 2009 11:55 PM by Ernesto

msiexec /package <filename.MSI> /qr Works to me, thanks so much...

# “Please wait while the installer finishes determining your disk space requirements” message drives me nuts!

Friday, August 28, 2009 10:38 PM by Jean-Paul Smit

At the moment I’m setting up a new BizTalk Server 2009 VPC with the BizTalk Deployment Framework 5, BizUnit

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, November 02, 2009 1:38 AM by Ben Szymkow

msiexec /package <filename.MSI> /qr

this sorted it out for me. thanks for the solution Daniel Revell.

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, November 11, 2009 6:18 AM by baskint

seems to be working on a vm machine.  trying to install latest ankhsvn

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, November 18, 2009 11:14 PM by Julian Dominguez

Thanks!

"msiexec /package <filename.MSI> /qr" also did it for me.

Consider updating the blog post itself with this solution.

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, November 23, 2009 1:37 PM by Kiran Cherupally

"msiexec /package <filename.MSI> /qr" worked for me. It saved my time. Thanks a lot.

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, November 24, 2009 9:31 AM by krishna

thank you very musch

/qr switch worked fine with my webdav installation on windows 2008 VPC

Thanks a lot

# re: Windows Installer doesn’t finish determining disk space requirements - solved

Wednesday, November 25, 2009 10:17 AM by Gopi Nathan

Solved.

Windows 2008 on VirtualPC trying to install asp.net mvc 1.0

Got the error ...

Now got it working with manually giving

C:\Users\Administrator\Desktop>msiexec /package AspNetMVC1.msi  /qr worked for me. Thanks.

It is irritating to see that such errors are not documented and communicated by the vendor in a proper way in the package or their site!

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, November 25, 2009 10:18 AM by Gopi Nathan

C:\Users\Administrator\Desktop>msiexec /package AspNetMVC1.msi  /qr  worked for me on Windows 2008 on a VirtualPC

Thanks.

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, December 01, 2009 8:46 PM by Tony

Thanks!  the /i helped me install Strawberry Perl!

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, December 04, 2009 3:33 PM by Bill Seddon

Great!  The msiexec /package <file> /qr command let me install the Azure SDK on a new machine.

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, December 21, 2009 11:16 AM by ariel

Thank you, it works great!!

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, February 02, 2010 12:22 PM by d3m0n

just renaming the .MSI file worked for me!?!?

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, February 05, 2010 11:51 PM by mcp3000

My install package requires that I enter the Product Key -- is there a way to enter this using msiexec?  When I try the /qr solution, the installer stops and tells me I have entered an invalid product key (because I have skipped that screen).

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, February 15, 2010 3:55 PM by Bard

I simply moved the msi to the program files folder. It worked beautifully.

# re: Windows Installer doesn’t finish determining disk space requirements

Saturday, February 20, 2010 12:57 AM by Ben

"Trying to install FTP7.5 on IIS7 32bit on Windows Server 2008 STD SP2 on Virtual PC 2007"

open elevated command prompt and just execute "ftp7_x86_75.msi" did it for me.

(on the iis.net website it says "msiexec /i FTP 7_x86_75.msi" which results in the "Please wait while the installer determining your disk space requirements".

forever..."

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, February 24, 2010 12:49 PM by drweb86

Thank's guy!

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, February 25, 2010 5:59 AM by Jim

Had to enter the product ID to make this work but the following worked for me (real key omitted of course):

msiexec /package PRJPROE.MSI /qr PIDKEY=xxxxyyyyxxxxyyyy

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, March 04, 2010 5:11 PM by James

I got this message when I tried to run an .MSI off a share from another PC.

Once I copied the .MSI to the local machine's desktop, the problem went away.

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, March 12, 2010 11:44 PM by RB

This is what I did for XP Pro SP3 and it worked

Downloaded & Ran "Windows Installer CleanUp Utility"

Downloaded & Ran "Windows Installer 4.5"

was able to install with no problem since.

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, March 16, 2010 3:33 AM by Icks

"msiexec /i filename.msi" didn't but "msiexec /package <filename.MSI> /qr" worked for me aswell.

Thanks guys

# re: 2 step Solution To "Windows Installer doesn’t finish determining disk space requirements"

Sunday, March 21, 2010 9:31 PM by Vishal

Dear All

Here is a two step solution to installing software when you continue to get this error.

Step 1 : Extract the contents of the MSI using

msiexec /a PathToMSIFile /qb TARGETDIR=DirectoryToExtractTo

Please ensure you replace the "DirectoryToExtractTo" with a full path e.g. c:\abc\def\ghi

The folder does not need to pre-exist.

Step 2: Browse to the folder and then doubleclick the msi from there.

Hope this helps for you.

Regards

Vishal

# re: Windows Installer doesn’t finish determining disk space requirements

Saturday, April 10, 2010 9:19 PM by pilla

thanx buddy, I did not even try msi. I just did "start-->run-->browse" and pointed towards the setup file of the program which I was having problem and it worked. thts it.

I hope this would help.

Thanks

Pilla

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, May 14, 2010 2:30 AM by Oliver Degnan

Thank you. You just saved me a lot of time. It worked like a charm.

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, May 27, 2010 12:05 AM by Mike B

Excellent, thank you this worked great.  

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, June 09, 2010 10:37 PM by Paul Dolphin

I had this problem.

I found I had a huge number of temp files in my Local Settings\temp folder. I cleared most of them out and tried again and the install then worked.

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, June 10, 2010 1:37 PM by cheese

msiexec /package <filename.MSI> /qr

Sweet - been struggling with this for a little bit now.

Thanks

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, June 17, 2010 12:42 PM by John

msiexec /package <filename.MSI> /qr

Worked great for me!

Using: VirtualBox with Windows XP installed

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, June 21, 2010 3:09 PM by Agusti

"msiexec /package <filename.MSI> /qr" works for me too. I get this error on a Windows 2008 over Virtual Server.

Thanks!

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, June 22, 2010 11:24 AM by GK_PL

Thank you so much for solution;)

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, July 15, 2010 6:41 PM by Peddley

I had a similar problem installing office 2003 on a new installation of Windows XP SP3.  I moved the MSI to the local computer (instead of a network share) and it worked perfectly fine, not sure what was causing it though.

# re: Windows Installer doesn’t finish determining disk space requirements

Sunday, August 01, 2010 6:28 AM by Checking drive C: forever

8.stalling windows with SATA laptop. Already concluded needed drivers, I could format drive C drive D and after hitting enter to install, it is the process of “the setup is determining drive C” “Checking drive C”. Do you belive me? I wait for it 2 days but not finished yet!!! I wonder this is not the first time happen to me and not only with the SATA laptop any PCs I faced this problem before. What’s on earth? What’s going on? Not a single comment about this use to be solved? Can Microsoft explain? or any kind-hearted ones can help me to solve?

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, August 11, 2010 9:33 AM by Dagaz

For me those solutions does not work. I can make quiet installation with /qr key, but I need additional components, which are selected during install. Reduced UI mode does not allow to select any. Maybe there are some ways to get full installation instead of recommended using Reduced UI mode?

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, August 11, 2010 10:46 AM by Dagaz

Found the solution!

There is one installation key, ADDLOCAL=ALL whitch installs all features wchitch are in the .msi file. The command line looks:

C:\Users\home\Desktop\LOB2>AdapterFramework.msi /qr ADDLOCAL=ALL

# pappu

Monday, August 30, 2010 9:15 PM by pappu

Just close the installer, restart computer and run again :) . For me, it was as simple as that.

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, September 06, 2010 7:01 PM by MarkK

Thanks for the advice--it worked! I was trying to install komodo edit in conjunction with setting up a local testing web server when I ran into this issue.

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, September 09, 2010 4:51 AM by tttony

Thanks, it's worked with:

msiexec /package <filename.MSI> /qr

# re: Windows Installer doesn’t finish determining disk space requirements

Sunday, October 10, 2010 5:31 AM by Khan

Thanks it worked for me.

msiexec /package <filename.MSI> /qr

# re: Windows Installer doesn’t finish determining disk space requirements

Sunday, October 10, 2010 6:01 AM by JhansiV

I was trying to install FTP 7.5 on VM. Uninstalling VM addins and then using msiexec /package <filename.MSI> /qr command worked for me.

Thanks a lot!

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, October 14, 2010 5:12 PM by Cobio

I found a solution, in file properties (right click menu), it says that this file is from another pc and there is a lock in file to protect local security, I unlocked it and it worked.

Windows XP SP3

# re: Windows Installer doesn’t finish determining disk space requirements

Sunday, October 31, 2010 6:02 PM by Thankeer

''I found a solution, in file properties (right click menu), it says that this file is from another pc and there is a lock in file to protect local security, I unlocked it and it worked. ''

That did the trick! Thanks!

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, November 02, 2010 3:09 PM by Rob

I just deleted all my temp files in the %temp% directory.

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, November 09, 2010 11:20 AM by annnoncestunisiennes.com

it works properly :

msiexec /i "yourpath\VISPRO.MSI" /l*v .\install.log

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, November 17, 2010 8:45 AM by Rudi Hattingh

Hi,

This has worked for me!

***********************************************************

Sunday, March 21, 2010 9:31 PM by Vishal

Dear All

Here is a two step solution to installing software when you continue to get this error.

Step 1 : Extract the contents of the MSI using

msiexec /a PathToMSIFile /qb TARGETDIR=DirectoryToExtractTo

Please ensure you replace the "DirectoryToExtractTo" with a full path e.g. c:\abc\def\ghi

The folder does not need to pre-exist.

Step 2: Browse to the folder and then doubleclick the msi from there.

Hope this helps for you.

Regards

Vishal

***********************************************************

Once that was done I used this command

msiexec /i filename.msi

Where the filename.msi is the file used in first extraction.

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, November 18, 2010 10:17 PM by Charlie

I had imaged a pc and started installing some new apps when getting the “please wait while the installer finishes determining your disk space requirements”,window.  I noticed it happend when installing all applications and had to cacel the setup on each one.  

The image had SP3 on it but I re-installed it it and that seemed to fix the problem.  Every app I installed after that finished fine.

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, December 29, 2010 10:16 AM by Michiel

I had this issue with the Microsoft SharePoint Developer Tools 9.0 installer (VSeWSSv13_x86_Build-433.exe) and fixed it by running it as Administrator!

# re: Windows Installer doesn’t finish determining disk space requirements

Saturday, January 08, 2011 5:40 PM by Samwell Magdy

Thanks All

the command "msiexec /package <filename.MSI> /qr"

works fine with me :)

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, January 25, 2011 4:08 AM by Niv

the command "msiexec /package <filename.MSI> /qr"

also works for me, Thanks

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, February 08, 2011 11:24 AM by Carlton Fletcher

I was executing the msi from a UNC path.  When I mapped a drive and tried again, it installed no problem.  I wonder if the UNC path is an issue for others?

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, March 03, 2011 5:18 AM by Mark Harrison

Thanks. I was having the same problem on a Windows Server 2008 VM with the latest version of AnkhSVN. This fixed it for me:

msiexec /package AnkhSvn-2.1.10019.14.msi /qr

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, March 08, 2011 9:46 PM by Martin Bradley

Running Windows Server 2008 inside a Virtual PC 2007 VM.

Got the error while attempting install of Web Deploy 2.0.

Tried most of the solutions above to no avail.

After exploring a bit, tried installing Windows System Resource Manager (and Windows Internal Database) via Server Manager...No More Waiting! Install completed successfully!

Another potential solution to try!

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, March 11, 2011 6:20 PM by Jo

just renaming the .msi file worked for me

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, March 28, 2011 4:03 AM by ugg boot shop

2.Land is the only thing in the world worth working for, worth fighting for, worth dying for. Because it''s the only thing that lasts。

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, April 08, 2011 5:29 AM by Vibram Fivefingers

When you''re attracted to someone it just means that your subconscious is attracted to their subconscious, subconsciously. So what we think of as fate, is just two neuroses knowing they''re a perfect match.

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, May 09, 2011 8:19 AM by five finger shoes

new apps when getting the “please wait while the installer finishes determining your disk space requirements”,window

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, May 09, 2011 8:21 AM by five finger shoes

eone it just means that your subconscious is attracted to their subconscious, subconsciously. So what we think of

# Puma Espera Patent FS

Thursday, June 02, 2011 12:38 PM by Puma Espera Patent FS

next-generation solar photovoltaic cells, she says. The method can also be applied to processes, for example enhancing the design of supply chains or

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, June 07, 2011 10:06 PM by James

I downloaded and chande the name to NM34_x86.msi. I get installation could not be open.

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, July 22, 2011 8:16 AM by sepalot

It worked for me like superhuman godlike and greatest tipp i ever read. Now the TortoiseSVN-MSI is working like a charm.

Thank you very much. The msiexec is best i ever had to test. Thank also to Microsoft (r) for giving this file to folks.

Thanks, Thanks, Thanks!!!!!

Now i can work thankyou, you are the best

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, September 16, 2011 3:57 PM by icx

I had that problem in Win XP installing MS Office 2003. I found problem in installer 4.5 which I have installed manually. Installing installer 3.1 I solve the problem.

www.microsoft.com/.../details.aspx

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, October 25, 2011 10:21 PM by SkiWithMe

WOW, THANK YOU SO MUCH - the msiexex /i method was WONDERFUL, instead of looking at my client's screen do nothing for 1/2 a day (XP with only 512meg RAM so figured it could actually be a speed thing), install took just seconds to complete. TRICK - my installer was in a folder so I created a shortcut to it then copy/pasted the location/program-name on the cmd line to save typing, ie:

C:\downloads\OnlineServicesSignIn-en.msi - was from copy/paste from shortcut, maybe that tidbit will help someone prevent a typo.

THANKS!!!!!!!!!!!!!

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, November 17, 2011 9:23 AM by Term Papers

Amazing post, it is a very useful and lofty post and innovative post. Keep it up.

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, November 24, 2011 4:57 PM by Brents98

I closed the installer and restarted it and it worked the second time. I used msiexec ... /qr from the command line but that entered NULL values to alot of paramaters that were supposed to be set by user input during installation.

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, December 30, 2011 8:22 PM by me

put the file on your root c: and run it.. fixes it.

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, January 05, 2012 8:23 PM by Tim

Worked for me - Thanks so much for your post!

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, March 02, 2012 9:47 PM by w

Choose Custom install instead.

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, March 15, 2012 3:48 PM by Thomas Schukraft

Thank you. Had exactly the same problem with a RAMDisk installer and starting the setup with /i worked!

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, March 20, 2012 11:00 AM by math homework solutions

Thanks for nice post. The post is pretty interesting.

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, April 02, 2012 12:46 AM by Non

Copy the MSI file locally and run

# re: Windows Installer doesn’t finish determining disk space requirements

Thursday, May 03, 2012 2:38 PM by Richard

Putting it into program files, and renaming the installation file worked for me.

Thanks a lot, even though I had to read through a lot of comments, and try a lot of solutions first :)

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, May 18, 2012 6:45 PM by JustLock

This fixed it form me and I did not have access to the msi file:

cleared out %tmp% and ran:

regsvr32 c:\windows\system32\msi.dll

regsvr32 c:\windows\system32\msisip.dll

regsvr32 c:\windows\system32\msihnd.dll

Other suggestion found, but not needed:

RMDIR /S /Q %TEMP%

MD %TEMP%

del /q %systemdrive%\temp\*.*

del /q %systemdrive%\%windir%\temp\*.*

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, July 03, 2012 3:49 PM by Easy Peasy

msiexec /package <filename.MSI> /qr worked for me, thanks anan

# re: Windows Installer doesn’t finish determining disk space requirements

Sunday, July 15, 2012 1:54 AM by Shuu

The command line work great, thx

# re: Windows Installer doesn’t finish determining disk space requirements

Tuesday, August 07, 2012 7:36 PM by Hubert

solved:

same problem, in my case (MS Project Prof. 2003, XP-SP3) it turned out that the installation path contains spaces " " (i.e. x:\install\MSO PP 2003).

renaming the installation path to x:\install\MSO-PP-2003 was the solution.

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, October 17, 2012 10:08 PM by Chiburg

Thanks a lot!

msiexec /i filename.msi

worked for me

at last I have VPN on my standalone laptop with WinXP SP3 :)

# re: Windows Installer doesn’t finish determining disk space requirements

Friday, November 16, 2012 6:22 AM by WJ2

THANK YOU!

For me

msiexec /i filename.msi /qr

was the solution

# re: Windows Installer doesn’t finish determining disk space requirements

Wednesday, November 21, 2012 4:36 AM by nnnn

Nice post,

thank you.

# re: Windows Installer doesn’t finish determining disk space requirements

Monday, January 07, 2013 4:11 AM by jrazorman

Thank you !!!!

Leave a Comment

(required) 
(required) 
(optional)
(required) 
Please add 8 and 6 and type the answer here: