Jump to content

myselfidem

Members
  • Posts

    600
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by myselfidem

  1. We can read Inside the file SETUPDOWNLOADLIST.txt the prerequisites updates for IE10 x64 when IE10 file is extracted:

     

    ; The following are prerequisites for installing IE
    [Prerequisites]
    WIN7_SP1=

    KB2670838

    KB2639308

    KB2533623

    KB2731771

    KB2729094

    KB2786081

     

     

    Yes they are the same prerequisites updates written inside the SETUPDOWNLOADLIST.txt

    However we can also read inside this link updates needed: 

     

    How to obtain prerequisite updates for Internet Explorer 10 Release Preview that fail to install in Windows 7

     

    However it's missing, for any reason, inside my first list for x86: KB2639308

     

    Update for Windows 7 (KB2639308) (validation needed)

  2.  

    Hi All

     

    I do confirm with WPI 8.6.3 the proper fix is to change "installer.js"

     

    Around line 1080, I added the following block.

     

    case 'CMD': 
                                    cmd="CMD /C " + cmd; 
                                    fsoCmd=true; 
                                    break;
     
    Regards.
     
    Gilles 

     

     

     

    OK, I found how to add the new CMD option!

     

    You can also add Inside configwizard.js:

     

    on line 365:

    CommandsMenuBar.addNewChild("cmd_dos2", 11, "dos_cmd", "Cmd", false, "", "");

    also on line 632:

    case 'dos_cmd':	HandleCommandsSelectionMenu("{CMD} ");	break;

    You will be able to choose option : {CMD}

     

    Thanks to share if it's works for you!

     

    Image

  3. Thanks, but already exist insde installer.js (line: 1207):

     

    if (cmd.indexOf(".cmd") != -1 || cmd.indexOf(".bat") != -1)        {                if (cmd.indexOf(" ") != -1 && cmd.substr(0,1) != '"')                        cmd='"'+cmd+'"';                if (programs[item].bit64=="yes" && OSBits==64)                        cmd='"'+sysPath64+'cmd.exe" /C '+cmd;                else                        cmd='"'+sysPath32+'cmd.exe" /C '+cmd;                 return cmd;        }        if (cmd.indexOf(" ")==-1 && cmd.substr(0,1) != '"' && cmd.indexOf(">")==-1)     // > needed for stdout.  "d:\program.exe" "param1" >c:\app.txt                cmd='"'+cmd+'"';         return cmd;} 
  4. Personnellement j'utilise WPI_v.8.6.6 pour l'installation de mes programmes en post-install, dont NET Framework 4.0.

     

    En ce qui concerne le problème de mscorsvw.exe, il est possible d'utiliser la commande suivante, si Net Framework 4.0 n'est pas installé.

     

    Pour OS x86:

     

    %windir%\Microsoft.NET\Framework\v2.0.50727\ngen.exe executequeueditems /nologo /silent

     

    Pour OS x64:

     

    %windir%\Microsoft.NET\Framework\v2.0.50727\ngen.exe executequeueditems /nologo /silent

    %windir%\Microsoft.NET\Framework64\v2.0.50727\ngen.exe executequeueditems /nologo /silent

     

    http://techdows.com/2010/08/what-is-mscorsvw-exe-how-to-disable-it.html

     

    Dans la version de ricktendo pour Net Framework 4.0, la commande se trouve dans le fichier: config.txt.

     

    AutoInstalln="hidcon:%windir%\\Microsoft.NET\\Framework\\v4.0.30319\\ngen executequeueditems /nologo /silent"
    AutoInstalln="x64:hidcon:%windir%\\Microsoft.NET\\Framework64\\v4.0.30319\\ngen executequeueditems /nologo /silent"

     

     

    Amicalement

  5. Ce type de problème est résolu, dans mon cas, en intégrant dans mon DVD Windows 7 SP1, le Slim Microsoft .NET Framework 4.0 Full x86/x64 de ricktendo:

    http://www.wincert.net/forum/topic/9154-slim-net-framework-4-full-x86x64-4-11-2013/#entry78841

     

     

     http://www.wincert.net/forum/topic/9154-slim-net-framework-4-full-x86x64-4-11-2013/#entry79077 

     


    Mine is both Client+Extended or Client only with passive or quiet install option (also ngen executequeueditems so there is no mscorsvw.exe slowdown)

  6. 1 - You can use a registry file:

     

    Windows Registry Editor Version 5.00 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]"DisableChangePassword"=dword:00000001

     

    2 - You can add inside your Autounattend.xml file (change the user name to your needs):

     

     <settings pass="oobeSystem">

    <FirstLogonCommands>                <SynchronousCommand wcm:action="add">                    <Order>1</Order>                    <Description>Le mot de passe n'expire jamais</Description>                    <CommandLine>cmd /c wmic useraccount where "name='Antoine'" set PasswordExpires=FALSE</CommandLine>                    <RequiresUserInput>false</RequiresUserInput>                </SynchronousCommand> 
  7. However it's better to remove this update if this one is installed on our computer!

    I do like this and my computers work better with all my programs!

     


    We recommend that customers uninstall update 2823324, which is provided in Microsoft Security bulletin MS13-036. This article provides multiple methods to uninstall the update. 

     

    Cheers and regards

  8. *Edit: Tested SFX Modified Module 1.5 to remove others shortcuts on my computer an works fine for me!

     

    You can try:

     

    RunProgram="hidcon:cmd /c del \"%PUBLIC%\\Desktop\\Clover.lnk\""
  9. 1 - To repair Office, you can use: Control Panel | Add Remove Programs | Select Office version and with right-click choose: change

     

    2 - This command is to launch WORD!

     

    Try: Start | Run (example Office 2007)

     

    "C:\Program Files (x86)\Microsoft Office\Office12\WINWORD.EXE"
×
×
  • Create New...