Jump to content

myselfidem

Member
  • Posts

    2,515
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by myselfidem

  1. well, it seems you've made something wrong and of course I can't help you if I can't look at your files!
  2. About title buttons, it's strange to see they are writted on two lines!
  3. Inside: .\WPI\Common\Themes\Windows\wpi.htm We can add some value: 1 - Line 15 ( />) (also inside Installer.hta: at line 262) <bgsound id="TimerSound" src="#" loop="1" autostart="true" /> Thanks and regards *Edit: We can also change inside: optionswizardtemplate_sounds.htm (and on all htm files) Changing all value: <nobr></nobr> <td> <nobr> <div id="lblSndWPIStart" class="opTxt" align="absmiddle"></div> </nobr> </td> With: <td nowrap> <div id="lblSndWPIStart" class="opTxt" align="absmiddle"></div> </td>
  4. Don't forget to remove the key inside the file when this one is attached ! You need to add the pass="windowsPE" (example): <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>en-US</UILanguage> </SetupUILanguage> <InputLocale>1809:00001809</InputLocale> <UserLocale>en-IE</UserLocale> <UILanguage>en-US</UILanguage> <SystemLocale>en-IE</SystemLocale> </component> And adding also inside pass="oobeSystem": <settings pass="oobeSystem"> <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UILanguage>en-US</UILanguage> <UserLocale>en-IE</UserLocale> <SystemLocale>en-IE</SystemLocale> <InputLocale>1809:00001809</InputLocale> </component> Integration for the language pack also inside boot.wim (index:1). You can check your file with WSIM.
  5. To avoid making changes on all Themes for WPI inside: WPI\Themes\Win7\installer.css We can remove my first suggestion to add inside installer.css (line 77: .WPI_Txt): white-space: nowrap; And we can add inside Installer.hta on line 419: <div class="WPI_Text" style="position:relative; height:13px; font-family:arial; font-size:8pt; overflow:hidden; white-space:nowrap;"> Thanks and regards
  6. With the modified line inside configwizard.js we can uninstall an Antivirus Product like this example: Microsoft Security Essentials (using a batch file and Condition: getAntivirusProduct) Remove.bat @echo off REM Uninstall MSE and display the wizard window using 'x' switch REM Using switch 'x' and 's' for silent uninstall cmd /c "%systemdrive%\Program Files\Microsoft Security Client\Setup.exe" /x /s exit config.js prog[pn]=['Uninstaller']; uid[pn]=['UNINSTALLER']; ordr[pn]=[3]; dflt[pn]=['yes']; forc[pn]=['no']; bit64[pn]=['no']; cat[pn]=['Applications']; pfro[pn]=['no']; cmds[pn]=['"%wpipath%\\Install\\AntiVirus\\Remove.bat"']; cond[pn]=['getAntiVirusProduct()=="Microsoft Security Essentials"']; desc[pn]=['Uninstaller']; pn++; WPI_Log.txt samedi 5 janvier 2013 06:08:41 Programme: Uninstaller ID unique: UNINSTALLER Ordre: 000003 Catégorie: Applications samedi 5 janvier 2013 06:08:44 - cmd1 Succès (Code de retour 0): "cmd.exe" /C "C:\WPI_v8.6.3\Install\AntiVirus\Remove.bat" samedi 5 janvier 2013 06:08:44 - Installation terminée. To know the uninstall string about Antivirus Product we can do like said uphold2001. Look inside the registry about the Antivirus installed on the computer. Tested and works! HTH
  7. It seems we can change also inside configwizard.js : On line 1096: HandleConditionsSelectionMenu(!InsertCondValues ? "ConnectedToInternet()" : 'ConnectedToInternet("'+ConnToNet+'")'); On line 1108: HandleConditionsSelectionMenu(!InsertCondValues ? "isDesktopLoaded()" : 'isDesktopLoaded("'+DesktopLoaded+'")'); To see these Conditions. Regards
  8. A little typo error inside WPI.hta on line 349: (because) <!-- Here becaue of the getText() calls --> I don't see the trouble with WPI about font at startup!
  9. Submitting new changes: globals.js On line 196, we can remove: (because the correct value already exists on line 198) // wmi.js PNPDID_SystemEnclosureType On line 195 we can add (because they are missing): // wmi.js FirewallProductName, AVProduct; configwizard.js (we can change) On line 1088: HandleConditionsSelectionMenu(!InsertCondValues ? "getFirewallProduct()" : 'getFirewallProduct()=="'+getFirewallProduct()+'"'); On line 1092: HandleConditionsSelectionMenu(!InsertCondValues ? "getAntiVirusProduct()" : 'getAntiVirusProduct()=="'+getAntiVirusProduct()+'"'); optionswizard.js Add missing line 1959 :(about usb key) // Features tab tf.WriteLine("DoNotShowIfUSB="+DoNotShowIfUSB+";"); Adding also your modification on line 65 inside globals.js DoNotShowIfUSB=false; Thanks and regards.
  10. Maybe we can also add inside globals.js ?: on line 195 (or elsewhere): // wmi.js var FirewallProductName, AVProduct; Regards
  11. Inside globals.js we can remove (on line 196): // wmi.js PNPDID_SystemEnclosureType; Because the correct value already exists on line 198. Thanks and regards
  12. getAntivirusProduct Will return the name of Antivirus installed on the computer using Configuration and Dependencies, if we change the line 1092 inside: configwizard.js HandleConditionsSelectionMenu(!InsertCondValues ? "getAntiVirusProduct()" : 'getAntiVirusProduct()=="'+getAntiVirusProduct()+'"'); Regards
  13. You can copy your customized useroptions.js inside the usb key and change the value: true to false: On line 55 (open with notepad) // Features tab DoNotShowIfUSB=false; Maybe it's needed to change this default value inside useroptions.js ? Tested and works! *Edit: I see it's done inside the new attached global.js and works fine! The line is missing inside useroptions.js created after launching WPI.exe from the usb key, the first time and will be writed when the user select: inside Features: DoNotShowIfUSB:true Thanks Kels. *Edit2: It seems a line is missing inside: optionswizard.js to do this work on: // Features tab (line 1959) tf.WriteLine("DoNotShowIfUSB="+DoNotShowIfUSB+";");
  14. Many thanks Kels! Inside English Manual on: 1 - Chapter-1.html, line 12 about (set on one line) : <img src="../images/Donate.png" /> 2 - Chapter-10.html, path on the line 48 (position quot): <img src="../images/layout.gif" /> Regards
  15. Inside Installer.hta it's possible to remove <nobr> </nobr> at line 419 and keep: Windows Post-Install Wizard And adding inside installer.css (WPI\Themes\Win7) .WPI_Text { color: GrayText; white-space: nowrap; /* Prevents a text from breaking into a new line automatically */ } Tested and works fine. Found help here: MDN Maybe it's useful? Regards
  16. On English Manual some lines are missing (at the bottom) inside: 1 - index.html 2 - Chapter-9.html 3 - Chapter-10.html 4 - Chapter-11.html <script type="text/javascript"> <!-- var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"}); //--> </script> About images, seems to be needed tu use the code like this, using at last: /> <img src="../images/Logo.png" /> 1 - French Manual updated and set Chapter-8 on Chapter-10 and Chapter-10 on Chapter-8: 2 - Added "HTML codes to put French special characters" inside the WPI French Manual: HTML Codes for French New French Manual downloaded link: http://www.mediafire.com/?6696bficr91ar Thanks and regards!
  17. About silent installation, you can find help here: Licensing and activation FAQ deploy UltraEdit *Edit: look inside: C:\ProgramData\IDMComp\UltraEdit\license\uedit32.spl [HKEY_LOCAL_MACHINE\SOFTWARE\IDM Computer Solutions\UltraEdit] exist with UltraEdit v18.20 !
  18. Like said Sp0iLedBrAt, look inside the Registry and save the key about your valid key registered! IDM.reg (example without the key: Trial) Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\IDM Computer Solutions] [HKEY_LOCAL_MACHINE\SOFTWARE\IDM Computer Solutions\UltraEdit] "skeleton"=hex: "EditEnvironment"="UEEGeneral" @="" [HKEY_CURRENT_USER\Software\IDM Computer Solutions] [HKEY_CURRENT_USER\Software\IDM Computer Solutions\uedit32] [HKEY_CURRENT_USER\Software\IDM Computer Solutions\uedit32\Locks] [HKEY_CURRENT_USER\Software\IDM Computer Solutions\UltraEdit] @="" "InstallType"="EXE" "ContextMenuText"="&UltraEdit" "IntegrateWithExplorer"=dword:00000001 "FirstRun"="1" "RanOnce1"="UEEGeneral"
  19. Yes, we must keep the comma (%comma%) for multiple OS choices! Look at WPI_Log.txt to see errors. Examples with Windows SP1 7 (x86): WPI_Log.txt (installation skipped: wrong Architecture) vendredi 28 décembre 2012 10:30:36 Programme: Ashampoo ID unique: ASHAMPOO Ordre: 000001 Catégorie: Applications vendredi 28 décembre 2012 10:30:36 - cmd1 *** Abandonné *** (Architecture incorrecte): {OS=Win8} "%wpipath%\Install\abs6_free.exe" vendredi 28 décembre 2012 10:30:36 - Installation terminée. samedi 29 décembre 2012 11:33:17 Programme: Ashampoo ID unique: ASHAMPOO Ordre: 000001 Catégorie: Applications samedi 29 décembre 2012 11:33:17 - cmd1 *** Abandonné *** (Architecture incorrecte): {OS=Win8%comma%Vista%comma%XP} "%wpipath%\Install\abs6_free.exe" samedi 29 décembre 2012 11:33:18 - Installation terminée.
  20. Some help to integrate IE9: Internet Explorer 9 Preinstallation Techniques About Microsoft Security Essentials: http://www.wincert.net/forum/topic/9814-repack-installer-request/page-2#entry93722
×
×
  • Create New...