Jump to content

Windows 7 Install does not complete (resolved)


crashfly

Recommended Posts

I have a new one for those of you who have more experience with the Windows 7 setup than I do. For the most part, Windows 7 gets setup. During the stage where "Windows if finalizing your settings", the install just stops and does nothing at that point. Everything is still operational, but it does not go past that screen. I am able to call up a command prompt and get the task manager running, and it appears that the setup is stuck on a command prompt that is not doing anything. It could be related to some of the addons I use, but no one else has reported problems with those addons at this time. If I killed that defunct command prompt, the setup continues on, but the "SetupComplete.cmd" does not run. Anyone have any ideas?

I have included a list of addons for those who wish to know and a couple of screen shots of the action.

addons.txt

post-11322-0-59173300-1314557693_thumb.p

post-11322-0-37920400-1314557698_thumb.p

Edited by crashfly
Link to comment
Share on other sites

... If I killed that defunct command prompt, the setup continues on, but the "SetupComplete.cmd" does not run. ...

Manually kill cmd.exe see if install continues, maybe a program did not use /c switch with cmd.exe so it remains open

Uhm, check the first post.

Link to comment
Share on other sites

Can you please attach that "SetupComplete.cmd"? There may be a 'pause' or other command in it causing it to wait for user input.

@echo off
SETLOCAL ENABLEEXTENSIONS
for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\Autounattend.xml (set CDROM=%%i: & GOTO INSTALL)
GOTO EOF
:INSTALL
echo Installing Malicious Software Removal Tool ...
start /wait %CDROM%\apps\kb890830-x64-v3.22.exe /q
echo Installing KB2533552 ...
start /wait %windir%\system32\wusa.exe %CDROM%\apps\Windows6.1-KB2533552-x64.msu /quiet /norestart
echo Installing Games for Windows Live ...
start /wait %CDROM%\apps\gfwlivesetup.exe /s
echo Installing MS .net 4 ...
start /wait %CDROM%\apps\MSN4x32x64_Aug14-2011.exe
:EOF
ENDLOCAL
exit

I do not see how that can be, as the setup does not appear to even run the "setupcomplete.cmd" file. Except for the install commands, I copied the file verbatim from someone else's post on another forum.

Link to comment
Share on other sites

Try running it after logon to see what is making it take long or look for the following in task manage

kb890830-x64-v3.22.exe

wusa.exe

gfwlivesetup.exe

MSN4x32x64_Aug14-2011.exe

P.S. Don't add a space after %%i:&


@echo off
SETLOCAL ENABLEEXTENSIONS
for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\Autounattend.xml (set CDROM=%%i:& GOTO INSTALL)
GOTO EOF
:INSTALL
echo Installing Malicious Software Removal Tool ...
start /wait %CDROM%\apps\kb890830-x64-v3.22.exe /q
echo Installing KB2533552 ...
start /wait %windir%\system32\wusa.exe %CDROM%\apps\Windows6.1-KB2533552-x64.msu /quiet /norestart
echo Installing Games for Windows Live ...
start /wait %CDROM%\apps\gfwlivesetup.exe /s
echo Installing MS .net 4 ...
start /wait %CDROM%\apps\MSN4x32x64_Aug14-2011.exe
:EOF
ENDLOCAL
exit

I tested this and it works fine, i couldn't test the MS .net4 as i don't have that download.

Edited by Legolash2o
Link to comment
Share on other sites

If it helps any, I do believe I finally found what was causing the setup not to complete. I converted most of the installers over to being setup by W7T. It would appear that the 'setupcomplete.cmd' file completely hides *everything* windows and all from being displayed during the "Final Settings" phase. What I did not realize is that even using the "/s" option on the installer, gfwlivesetup.exe was not completely silent. It waited for the user at the end to hit the "close" button. Damn squirrelly if you ask me, but at least I figured out what it was.

Just remember, the 'setupcomplete.cmd' file does not allow *any* user interaction. So if you have something that requires it, do not put it to install in that file.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...