
myselfidem
MemberContent Type
Profiles
Forums
Events
Everything posted by myselfidem
-
There is no error in config.txt, error by copy/paste... X-D However the error is inside your post and not corrected on this thread! Enjoy!
-
Just a little typo error inside your config.txt: check it! ;!@InstallEnd@! Cheers
-
Oops, just an error updated here, but I will try (updated with RunProgram=): RunProgram="NotepadReplacer116.exe /NOTEPAD=\"%Programfiles%\\Notepad++\\notepad++.exe" /VERYSILENT"
-
I think this could be: RunProgram:"NotepadReplacer116.exe /NOTEPAD=\"%Programfiles%\\Notepad++\\notepad++.exe" /VERYSILENT" I can't find NotepadReplacer116.exe on Google ! Try and let us know!
-
Try this silent switch using WPI: http://ninite.com/he...res/silent.html And you can read inside the manual how to use USSF buton finder!
-
Inside your config.txt, try: GUIMode="2" config.txt (saved as UTF-8 file) ;!@Install@!UTF-8! GUIMode="2" MiscFlags="4" RunProgram="x86:hidcon:cmd /c \"%%T\\file_x86.cmd"" RunProgram="x64:hidcon:cmd /c \"%%T\\file_x64.cmd"" ;!@InstallEnd@! I think the batch need to be improved: file_x86.cmd @echo off MKDIR "%CommonProgramFiles(x86)%\Program\Test" XCOPY /Y "%~dp0library.dll" "%CommonProgramFiles(x86)%\Program\Test\" /C /I /E /H /R REN "%CommonProgramFiles(x86)%\Program\Test\library.dll" library.bak DEL /F /Q "%ProgramFiles(x86)%\Program\Test\file.exe" REGEDIT /S "%~dp0regfile.reg" shutdown -r -t 3 Assuming the regfile.reg and library.dll are inside your SFX file! However, I think it's not a good idea to restart the computer at last using SFX file with a batch file! Because the temp folder will be removed and the batch file is already in use and errors may occurs. *Edit: errors about quotes inside config.txt updated and corrected!
-
Languages, Themes, Manuals & Mods
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
About Windows 8 Editions, I think the OSSKU's numbers discusssed here: http://www.msfn.org/...ost__p__1011481 Are now: thanks to check if it's OK! Inside wmi.js (function getOSsku(sku)) the lines below: case 27: OSSKU="Enterprise N Edition"; break; case 48: OSSKU="Pro Edition"; break; case 49: OSSKU="Professional N Edition"; break; case 72: OSSKU="Enterprise Evaluation Edition"; break; case 98: OSSKU="8 N Edition"; break; case 99: OSSKU="8 China Edition"; break; case 100: OSSKU="8 Single Language Edition"; break; case 101: OSSKU="8 Core Edition"; break; case 103: OSSKU="Professional Edition with Media Center"; break; } return OSSKU; } And inside wmi.js [function getOSver()] Change: if (Caption.indexOf("Windows 8") != -1) To: if (Caption.indexOf("8") != -1) Regards -
Now here are the results using your link and this convert link hexadecimal to decimal: Hexadecimal Conversion For WPIW case 27: OSSKU="Enterprise N Edition"; break; case 48: OSSKU="Pro Edition"; break; case 49: OSSKU="Professional N Edition"; break; case 72: OSSKU="Enterprise Evaluation Edition"; break; case 98: OSSKU="8 N Edition"; break; case 99: OSSKU="8 China Edition"; break; case 100: OSSKU="8 Single Language Edition"; break; case 101: OSSKU="8 Core Edition"; break; case 103: OSSKU="Professional Edition with Media Center"; break; Regards
-
Many thanks! I will try to convert them.
-
Thanks, but, my question is to obtain the OS SKU number !
-
Thanks for your answer. Those OSSKU's can be found using the SKU.vbs I given on my first post. Testing Windows 8 Enterprise Evaluation gives OSSKU:72 For Windows 8 Pro the OSSKU is: 48 *Edit: we can find a list here, but for Windows 8 this list doesn't exist at the moment: Win32_OperatingSystem class (browse to tilte: OperatingSystemSKU)
-
Languages, Themes, Manuals & Mods
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Here is the new french manual with Chapter-9.html updated for WPI update 8.6.2 (ChangeLog), And adding also Chapter-6.html (line 93): %USB%: Thanks and regards -
Could you post (copy) your config.txt ?
-
You give a question to my first question! Well. About Windows RT (Windows on ARM): Windows RT ARM architecture However the 3 others Windows 8 sku numbers can be useful. Seems Windows 8 Pro is OSSKU: 48 Can you give us one? *Edit: it seems we must wait a little to know the SKU numbers, maybe there will be: case 36: OSSKU="8 Edition"; break; case 48: OSSKU="Pro Edition"; break; case 60: OSSKU="RT Edition"; // WPI is not available for Windows RT Edition break; case 72: OSSKU="Enterprise Edition"; break;
-
Languages, Themes, Manuals & Mods
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Thanks for the new manual. However could you change or remove inside Chapter-6.html (line 322) Note: This cannot be checked by WMI, so it is based on whether or not a battery exists and a PCMCIAController exists. Not perfect by any means Regards -
I would like to ask to find the OperatingSystemSKU for each Windows 8 version. We know now there is four Windows 8 editions: Windows 8 editions Windows 8 Windows 8 Pro Windows 8 Enterprise Windows RT The goal is to add the SKU numbers to Windows Post-Install Wizard to improve the program for Windows 8 editions. This can be detected with this vbs file: SKU.vbs On Error Resume Next Const wbemFlagReturnImmediately = &h10 Const wbemFlagForwardOnly = &h20 arrComputers = Array(".") For Each strComputer In arrComputers Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", _ wbemFlagReturnImmediately + wbemFlagForwardOnly) For Each objItem In colItems WScript.Echo "OperatingSystemSKU: " & objItem.OperatingSystemSKU Next Next Many thanks to share your results. Regards
-
Languages, Themes, Manuals & Mods
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Yes, you are right this key doens't exist for IE8 and lower Internet Explorer version. However, testing the suggestion given by Dynaletik, works for me to detect IE8=8.0 or IE9=9.0 I can't test with IE10 now. Thanks and regards -
WPI v8.6.3 Release Thread!
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Please attach your lang file inside the correct thread: http://www.msfn.org/board/topic/158272-languages-themes-manuals-mods/page__view__findpost__p__1010201 Cheers -
Languages, Themes, Manuals & Mods
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
On the WPIW Home page (Home tab) , thanks to remove also: sample config (word and link 404) For any questions about configuration see [the sample config] and read the FAQ. Thanks and regards. -
Languages, Themes, Manuals & Mods
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
After testing Windows 8 Enterprise (eval) on Oracle VM VirtualBox the sku is 72: wmi.js case 72: OSSKU="Enterprise Edition"; break; Regards -
Languages, Themes, Manuals & Mods
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Yes, it's better to use sku: "Pro" for Windows 8 Pro or sku: "Pro Edition". Windows 8 editions Regards -
Could you try this SKU.vbs to know the sku about Windows 8 Pro?: sku.vbs On Error Resume Next Const wbemFlagReturnImmediately = &h10 Const wbemFlagForwardOnly = &h20 arrComputers = Array(".") For Each strComputer In arrComputers Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", _ wbemFlagReturnImmediately + wbemFlagForwardOnly) For Each objItem In colItems WScript.Echo "OperatingSystemSKU: " & objItem.OperatingSystemSKU WScript.Echo Next Next Thanks