Solved How to add KB2772501 to installation(setupcomplete.cmd)

Mike8Able

Banned
Messages
10
Does anyone have the syntax to add KB2772501 to the setupcomplete.cmd file? I have the syntax for KB2771431 and have no problem with that. Seems that I cannot get KB2772501 to install.

Any help is appreciated..

Mike:think:
 

My Computer

System One

  • OS
    Windows 8 Pro x64 with Media Center
How do you know it hasn't installed?

It's an exe iirc, but I don't think there is any visible gui .
 

My Computer

System One

  • OS
    7/8/ubuntu/Linux Deepin
    Computer type
    PC/Desktop
I'm creating an AIO Windows 8 Pro x64/x86 installation. I have all of the updates integrated except for KB2772501. Windows Update is flagging as needing installation. I create the AIO and then install the Pro x64 and all updates show installed except for this one. I do not include KB890830 and another KB* because they change each month.

KB25771431 install fine but I'm looking for the syntax for KB2772501. KB2772501 is an .exe file. And no, it would not show in the GUI.

Current setupcomplete script.

@echo off


:KB2771431
echo Installing KB25771431 Windows Update Hotfix
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait wusa.exe %WINDIR%\Setup\Scripts\Windows8-RT-KB2771431-x86.msu /quiet /norestart /nobackup
IF EXIST %SystemRoot%\SysWOW64 start /wait wusa.exe %WINDIR%\Setup\Scripts\Windows8-RT-KB2771431-x64.msu /quiet /norestart /nobackup


:CLEANUP
rd /S /Q "%WINDIR%\Setup\Scripts"


 

My Computer

System One

  • OS
    Windows 8 Pro x64 with Media Center
You could try these:

START /WAIT <path>KB2772501 /passive /norestart
or
<path>KB2772501 /wuforce /norestart
 

My Computer

System One

  • OS
    7/8/ubuntu/Linux Deepin
    Computer type
    PC/Desktop
I was able to get the following to work for installing KB2772501. Thanks again..

@echo off


:KB2771431
echo Installing KB25771431 Windows Update Hotfix
IF EXIST %SystemRoot%\SysWOW64 start /wait wusa.exe %WINDIR%\Setup\Scripts\Windows8-RT-KB2771431-x64.msu /quiet /norestart /nobackup
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait wusa.exe %WINDIR%\Setup\Scripts\Windows8-RT-KB2771431-x86.msu /quiet /norestart /nobackup


:KB2772501
echo Installing KB2772501 FixIEPropSchema
IF EXIST %SystemRoot%\SysWOW64 start /wait %WINDIR%\Setup\Scripts\KB2772501-x64-fixiepropschema.exe
IF NOT EXIST %SystemRoot%\SysWOW64 start /wait %WINDIR%\Setup\Scripts\KB2772501-x86-fixiepropschema.exe


:CLEANUP
rd /S /Q "%WINDIR%\Setup\Scripts"
 

My Computer

System One

  • OS
    Windows 8 Pro x64 with Media Center
Thanks for the update - glad you got it working.
 

My Computer

System One

  • OS
    7/8/ubuntu/Linux Deepin
    Computer type
    PC/Desktop
Back
Top