Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. Help here: http://www.msfn.org/board/topic/162174-deploying-ie-10-for-windows-7/page__view__findpost__p__1031844
  2. Information on TechNet: Installing Internet Explorer 10 Internet Explorer 10: Appendix A: Troubleshooting *Edit: You can try first to integrate IE10 and after use MDT with your new image ! Microsoft Deployment Toolkit (MDT) 2012 Update 1 And do not try to integrate Windows6.1-KB2718695-x64.cab or Windows6.1-KB2718695-x86.cab: gives error !
  3. You can try and adapt this batch file to suit your needs! WAIK for Windows 7 must be installed on your computer! Remember to download the prerequisite updates matching your Windows 7 Edition (x86 or x64)! Example for Windows 7 SP1 x86 to integrate IE10 (en-us): Windows6.1-KB2533623-x86.msu Windows6.1-KB2670838-x86.msu Windows6.1-KB2726535-x86.msu Windows6.1-KB2729094-v2-x86.msu Windows6.1-KB2731771-x86.msu Windows6.1-KB2786081-x86.msu Extracted files from IE10-Windows6.1-x86-en-us.exe: IE-Win7.CAB IE-Spelling-NEU.MSU IE-Hyphenation-NEU.MSU HTH
  4. And to integrate IE10 on my Windows 7 SP1 image I use this command (adapt to your needs!): Example for IE10 French! IE10.cmd @echo off & Color 1F title Installation Internet Explorer 10 echo. rem Extraction de la version IE10 pour Windows 7 x86 choisie rem C:\IE10-Windows6.1-x86-fr-fr.exe /X:C:\IE10 rem Créer un dossier temporaire: C:\work rem Sélectionner l'index correspondant à l'image echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Mount-Wim /Wimfile:"C:\Win7_SP1\sources\install.wim" /index:1 /MountDir:"C:\work" ping /n 3 127.0.0.1 >nul echo. rem Installation des mises à jour requises echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\Windows6.1-KB2533623-x86.msu" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\Windows6.1-KB2670838-x86.msu" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\Windows6.1-KB2726535-x86.msu" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\Windows6.1-KB2729094-v2-x86.msu" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\Windows6.1-KB2731771-x86.msu" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\Windows6.1-KB2786081-x86.msu" ping /n 3 127.0.0.1 >nul echo. rem Installation des fichiers pour IE10 qui ont été décompressés echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\IE10\IE-Win7.CAB" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\IE10\IE-Spelling-NEU.MSU" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\IE10\IE-Hyphenation-NEU.MSU" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\IE10\IE-Spelling-FRA.MSU" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\IE10\IE-Hyphenation-FRA.MSU" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Image:"C:\work" /Add-Package /PackagePath:"C:\IE10\IE10\ielangpack-FRA.CAB" ping /n 3 127.0.0.1 >nul echo. "C:\Program Files\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"C:\work" /Commit echo. pause Image IE10 integrated
  5. Using exe files with -install switches works always fine for me!
  6. Msiexec (command-line options) Download link given post #4
  7. I do not use MDT! But we need to install first prerequisite updates for Internet Explorer 10 : Download Internet Explorer 10 http://support.micro...b/2770065/en-us A platform update is available for Windows 7 SP1 and Windows Server 2008 R2 SP1 HTH *Edit: How to know the updates needed? 1 - Download IE10 for your language 2 - Create a folder as C:\IE10 3 - Extract all files using Start | Run : C:\IE10-Windows6.1-x86-en-us.exe /X:C:\IE10 4 - You will find the file: SETUPDOWNLOADLIST.TXT with all information about updates needed
  8. How to keep the installation order number?: http://www.msfn.org/...-install-order/ 1 - Inside program.js , changing (on line 213): {return x - y;} 2 - Inside program.js (on line 322) adding: progspercat.sort(byOrder); // Sort by ascending numerical order if (SortWithinCats) progspercat.sort(SortByProg); // Sort by alphabetical order Thanks to make tests and check if it's OK! Tested and works fine for me! Regards
  9. To enable DragAndDrop inside Configuration Tab, we can add inside configwizard.js: Line 185; about: function CreateNavigation() NavGrid.enableDragAndDrop(true); Line 228; about: function CreateConfigurations() ConfigurationsGrid.enableDragAndDrop(true); Thanks to check if it's OK! Tested and works fine for me. Regards Image Enable Drag And Drop Note: To keep the new order we must change the number(s) manually!
  10. After many tets, it seems there is a workaround! 1 - Inside program.js , changing (on line 213): {return x - y;} 2 - Inside program.js (on line 322) adding: progspercat.sort(byOrder); // Sort by ascending numerical order if (SortWithinCats) progspercat.sort(SortByProg); // Sort by alphabetical order Thanks to make tests and check if it's OK! The order will be saved correctly inside config.js (1,2,3,4,5,6,7,8,9,10,11, etc.). Tested and works fine for me! Algorithm of JavaScript "sort()" Function Regards *Edit: post updated
  11. I use this temporary solution that works! Give numbers like this: 01, to 09, and after 10, etc. The order will be saved correctly, and we can use install by categories without troubles! But for 100 programs the trouble appears a new time!
  12. Saving an existing configuration, the order change to: order (with 32 programs): 1, 10, 11, 12, 13, 14, 15, 16, 17, 18,19, 2, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 3, 30, 31, 32, 4, 5, 6, 7, 8, 9. I'm looking for a workaround!
  13. Yes, it is a bug and this happens some times. The order and number are correct inside the configuration wizard; but the order may change inside config.js and the programs are installed not using the order number but the order of the list (writed inside config.js)! Example: If I add a new Category and select some programs for this new category, when the configuration is saved the installation order inside config.js file change and programs will be installed using the order of the list and not the order number!(example install order changed to: 1,8,9,10,2,3,4,5,6,7)
  14. Command {DOWNLOAD} updated for Win7 and Win8. Example to downlaod and install mseinstall.exe (fr-fr x86): config.js pn=1; prog[pn]=['MS Essentials']; uid[pn]=['MSESSENTIALS']; ordr[pn]=[1]; dflt[pn]=['yes']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['Applications']; pfro[pn]=['no']; cmds[pn]=['{DOWNLOAD} http://mse.dlservice.microsoft.com/download/F/3/9/F392321B-C03D-498A-BEBB-141E2F367E44/frfr/x86/mseinstall.exe']; desc[pn]=['MS Essentials']; pn++; Regards
  15. You can try to use BlueScreenView v1.46 - View BSOD (blue screen) to open the minidump file created and read about the error found! Maybe the trouble is with the screen monitor? DELL link: Studio XPS 435T/9000
  16. Give an order number for all other applicatons!
  17. Try to use: Del_Shorcut.reg Windows Registry Editor Version 5.00 ; Remove Windows Firewall shorcut on My Computer [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{4026492F-2F69-46B8-B9BF-5654FC07E423}]
  18. Hello grabben! Yes, this project seems dead! You can try this awesome program: Win Toolkit v1.4.1.14 Cheers and regards
  19. Do you see some error codes inside WPI_Log.txt ? Do you see history.js on your HDD ? Change: StartBeepAtSecs=220 (to 10 for example)!
  20. Well, I know it's an old thread,but... Yes, Kels the code are correct! I found a workaround about this question: http://www.msfn.org/board/topic/158272-languages-themes-manuals-mods/page__view__findpost__p__1029819 HTH
  21. I suggest to add a new function for WPI. 1 - Detect KeyboardLayout inside wmi.js (from line 348) : function getKeyboardLayout() { position="wmi.js"; whatfunc="getKeyboardLayout()"; try { objWMIService=GetObject("winmgmts:\\\\" + "." + "\\root\\CIMV2"); colItems=objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); enumItems=new Enumerator(colItems); objItem=enumItems.item(); KeyboardLayout=objItem.Locale; } catch(ex) { } return KeyboardLayout; } Add inside global.js // wmi.js var KeyboardLayout; Add inside global_lang.js var lblKeyboardLayout=[]; Add inside information.js (on line 119): MyComputerGrid.addRow(gId++,getText(lblKeyboardLayout)+','+getKeyboardLayout()+''); Add inside lang_en.js lblKeyboardLayout[lang] = ['Keyboard Layout']; 2 - To display properly Language, location and keybordlayout, I suggest to change: Inside core.js Change // %OSLANG% to: // %OSLANG% var LCID; CreateLocalArray(); try { objWMIService=GetObject("winmgmts:\\\\" + "." + "\\root\\CIMV2"); colItems=objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", wbemFlagReturnImmediately | wbemFlagForwardOnly); enumItems=new Enumerator(colItems); objItem=enumItems.item(); LCID=objItem.Locale; for (var x=0; x<arrOSLang.length; x++) { if (arrOSLang[x].LCID==LCID) { oslang=arrOSLang[x].TLA; oslocale=arrOSLang[x].Locale; break; } } } catch(ex) { oslang="ENU"; oslocale="English - United States"; } // Environment variable for batch file setEnvVar("HDD",hdd,false); setEnvVar("CDDRV",cddrv,false); setEnvVar("WPIPATH",wpipath,false); setEnvVar("ROOT",root,false); setEnvVar("OSLANG",oslang,false); setEnvVar("OSLOCALE",oslocale,false); } And remove inside core.js: function DecToHex(d) { position="core.js"; whatfunc="DecToHex()"; var hD="0123456789abcdef"; var h=hD.substr(d&15,1); while(d>15) { d>>=4; h=hD.substr(d&15,1)+h; } return h; } Image Computer Information Tested and works fine for me! Example: config.js pn=1; prog[pn]=['Ashampoo']; uid[pn]=['ASHAMPOO']; ordr[pn]=[1]; dflt[pn]=['yes']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['Applications']; pfro[pn]=['no']; cmds[pn]=['{OS=Win8%comma%Win7%comma%Vista%comma%XP} "%wpipath%\\Install\\abs6_free.exe"']; cond[pn]=['getOSlang()=="FRS"']; pn++; WPI_Log.txt Thanks to check if it's OK! Regards
  22. Inside wmi.js we can add on line 940: if (objItem.MediaType.toUpperCase().indexOf("DVD WRITER") != -1 || objItem.PNPDeviceID.toUpperCase().indexOf("DVD") != -1) Adding the second part we can see all values also with Windows XP. CD\DVD Burner was not detected before on XP, but only on Windows 7. Tested on my computer with dualboot (Windows XP and Windows 7) and works fine! Thanks and regards
×
×
  • Create New...