
myselfidem
MemberContent Type
Profiles
Forums
Events
Everything posted by myselfidem
-
Updating manual
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Thanks. A little typo error inside Chapter-1: line 97: simply chose Regards -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Yes! About the HDD... But I think, if we do not copy the Audio folder to HDD, the music is displayed inside the installer Audio Player and there is no path: Install.m3u Kalimba.mp3 (I realize that this is what you said but in a different way! ) It seems the trouble is that the file Install.m3u doesn't accept variables like %systemdrive% and fixe the path to CopyAudio toHD with "C:\Audio" (drive letter), will be a solution, I think! Environment variable Cheers -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Thanks Whatsup and Cheers and enjoy! -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
It's because making test I selected Install.m3u ! Please give your result about my question above, when you have time! -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
It's easy to do, you just need to change the time (0,250) to (0,2500) inside installer.js and keep copy and delete the Audio folder! Thanks to give your result! -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Thanks! Install.m3u (example mine) C:\Audio\Kalimba.mp3 C:\Audio\Install.m3u Have you tried to change only the time inside installer.js like I explained above? Works fine for me! -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
It's just a question: How to be sure that the music inside the installer is really displayed from the HDD if we select: copy the Audio folder and play from the HDD? Regards *Edit: I see that the problem is when a mp3 file is in use (at last) the error code 145 is displayed and the folder isn't removed, but all files inside are removed! And there is no trouble to remove the files and folder if another music file (.mid file) is selected at the end of the installation, all files and the folder are removed (also mp3 files), using RD /S /Q "Audiopath". I think this is proof that the music file is read from the HDD! *Edit: Problem solved adding more time to stop Media Player using mp3 files at line 532 inside installer.js and with a fixed path C:\Audio if (PlayAudioInInstaller && DeleteAudioFolder && programs[i].uid=="DELETE_AUDIO_FROM_HD") // Stop player so can delete folder { document.getElementById("MediaPlayer").controls.stop(); document.getElementById("MediaPlayer").url=""; Pause(0,2500); } *Edit: There is no trouble selecting Install.m3u file but this one isn't displayed...Strange! -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
It seems it would be useful to change, inside installer.js the : case 'DELDIR': cmd="CMD /C RD /S /Q " + cmd; Using - if it's possible - : CMD /C DEL /S /F /Q "AudioPath\*.*" && RD /S /Q "AudioPath" Because the trouble is with mp3 files. I got the same error code 145 (the folder is empty, but the folder isn't removed). But with a fixed path C:\Audio the music is displayed. WPI_Log.txt // Audio tab PlayAudioInInstaller=true InstallAudio=['Sleep Away.mp3'] Volume=75 Shuffle=true CopyAudioFolder=true CopyAudioPath=['C:\Myspace'] DeleteAudioFolder=true mardi 21 août 2012 23:00:56 Programme: Copie du dossier audio sur le disque dur ID unique: COPY_AUDIO_TO_HD Ordre: 0 Catégorie: WPI Built In mardi 21 août 2012 23:00:57 - cmd1 Succès (Code de retour 0): CMD /C XCOPY C:\WPI_v8.5.7\Audio C:\Myspace /C /I /E /Y /H /R mardi 21 août 2012 23:00:57 - Installation terminée. ----- mardi 21 août 2012 23:00:57 Programme: VLC ID unique: ---Nouveau--- Ordre: 900001 Catégorie: Applications mardi 21 août 2012 23:01:15 - cmd1 Succès (Code de retour 0): "C:\WPI_v8.5.7\Install\vlc-2.0.3-win32.exe" /S mardi 21 août 2012 23:01:15 - Installation terminée. ----- mardi 21 août 2012 23:01:16 Programme: Suppression du dossier audio sur le disque dur ID unique: DELETE_AUDIO_FROM_HD Ordre: 0 Catégorie: WPI Built In mardi 21 août 2012 23:01:16 - cmd1 ** Avertissement ** (Code de retour 145): CMD /C RMDIR /S /Q C:\Myspace mardi 21 août 2012 23:01:16 - Installation terminée. ----- Nombre d'installations échouées: 0 Installation terminée: mardi 21 août 2012 23:01:17 Regards -
Please vote: Vista/Win7/Win8 UAC support poll
myselfidem replied to Francesco's topic in Windows Post-Install Wizard (WPI)
I see there is no more WinVer.vbs Here it is. WinVer.rar -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Tested using RMDIR /S /Q and worked fine! (inside installer.js). And path is: C:\Audio with Audio Player WPI_Log.txt *Edit: I have the same result inside WPI_Log.txt but using %systemdrive%\Audio, with the correct path, if I change inside global.js this line: var CopyAudioPath=['%systemdrive%\\Audio']; with: var CopyAudioPath='%systemdrive%\\Audio'; But the music isn't displayed ! Only using C:\Audio Regards -
simple batch file question from a newbie
myselfidem replied to THXMAN's topic in Windows Post-Install Wizard (WPI)
http://www.msfn.org/board/topic/157072-help-importing-reg-file-please/page__view__findpost__p__1001605 http://www.msfn.org/...ost__p__1007463 -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
To do simple, use: DeleteAudioFolder=false And use the command {BATCH} with WPI to clean all the files and the folder "C:\Audio" with the batch file given above. *Edit: Or try using quotes with WPI and give the path: "C:\Audio" -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
I can read, error code 145: System Error Codes Sometimes RMDIR /S /Q "C:\Audio " works better than RD /S /Q "C:\Audio" to delete a folder. Or like this: cmd cmd /c del /s /f /q "C:\Audio\*.*" && rd /s /q "C:\Audio" -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Inside // Tools tab Select: LogInstallation=true; Try again and save your WPI_Log.txt after the installation is done, and attach here please. Using: DeleteAudioFolder=true; This can help us to give some help! However seems strange installing Windows Live Essentials 2012 after 1:32 minute ! -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Could you attach your useroptions.js please? -
WPI v8.6.0 Release Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
You can use the update fonction with WPI 8.5.6 but the new one is a beta release (WPI 8.5.7) and you must apply the same changes given above! http://www.msfn.org/...ost__p__1007605 Please write inside the right thread if you have more questions (same link as above)! -
WPI v8.6.0 Release Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Thanks! Check also the reboot trouble using WPI 8.5.6 or WPI 8.5.7: http://www.msfn.org/...ost__p__1007708 Cheers Many thanks to Kels, Francesco and all others who keep the development for this nice sofware! -
WPI v8.6.0 Release Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Remove inside your language file lang_es.js (the lines number could be different) And remove also inside installer_log.js: At this line: function LogWPIInformation() WriteLogLinePlain(" "+getText(lblSysArch6432)+"="+sysArch6432); WriteLogLinePlain(" "+getText(lblTrue64Bits)+"="+true64bits); Solved here and more help: http://www.msfn.org/...ost__p__1007423 -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Adding inside informations.js ConditionsGrid.addRow(gId++,'getOSvernum()=="'+getOSvernum()+'"'); works fine! And this can be also added to My Computer! (inside lang_en.js; global_lang.js; information.js). Example. MyComputerGrid.addRow(gId++,getText(lblOSvernumber)+','+getOSvernum()+''); And inside installer_log.js WriteLogLinePlain(" "+getText(lblOSvernumber)+"="+getOSvernum()); Regards *Edit: missing inside installer_log.js // Features tab WriteLogLinePlain(" ShowDownloadOutput=" + ShowDownloadOutput); WriteLogLinePlain(" DisableInstallCombobox=" + DisableInstallCombobox); -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Tried to copy Audio using : %systemdrive%\Audio And all the WPI\Audio folder is copied on the HDD successfully. But the file install.m3u seems not working with Media Player...I will try another music! This music file need to be converted to use with Media Player! About m3u files and Media Player: http://en.wikipedia.org/wiki/M3U *Edit: You are right, after a new test using %systemdrive%\Audio the folder Audio is copied and also removed - but doesn't work. No music are displayed. rb_config.js // WPI Reboot Configuration File // Install process started at: lundi 20 août 2012 09:31:37 prb=0; programs[prb]=new program(prb); programs[prb].prog=['Copie du dossier audio sur le disque dur']; programs[prb].uid=['COPY_AUDIO_TO_HD']; programs[prb].ordr=[0]; programs[prb].bit64=['no']; programs[prb].cat=['WPI Built In']; programs[prb].cmds=['{DIRCOPY} D:\\wpi\\Audio %systemdrive%\\Audio']; prb++ programs[prb]=new program(prb); programs[prb].prog=['Execute After']; programs[prb].uid=['EXECUTE_AFTER']; programs[prb].ordr=[0]; programs[prb].bit64=['no']; programs[prb].cat=['WPI Built In']; programs[prb].cmds=['"%systemdrive%\\Windows\\SETUP\\SCRIPTS\\clean.vbs"']; prb++; programs[prb]=new program(prb); programs[prb].prog=['Suppression du dossier audio sur le disque dur']; programs[prb].uid=['DELETE_AUDIO_FROM_HD']; programs[prb].ordr=[0]; programs[prb].bit64=['no']; programs[prb].cat=['WPI Built In']; programs[prb].cmds=['{DELDIR} %systemdrive%\\Audio']; prb++; Using: C:\Audio to copy on the HDD works and no warning pop-up without using install.m3u But Windows needs time to restart when I install only some programs with the music inside the installer! *Edit 2: After a new test. All works fine using the path C:\Audio. Shuffle works and the folder is removed at the end of the installation. But do not select Install.m3u music. WPI_Log.txt -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
I will try tomorrow to copy the music file on the HDD and I give you the result. -
WPI Bug Report Thread
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
In fact to be more clear, I selected Audio Player with only the installer ( selecting: Shuffle) choosing 3 or 4 music inside: .\WPI\Audio\ All selction made with WPI and not manual! All works fine and Audio Player works inside the installer exept to stop the sound! But like I said, when Windows restarts there is a black screen during 4 minutes and there is an error: Connection service failure, Event system... And to restart the OS I must wait 4 minutes... After all is OK. But all is fine without using Audio Player inside the installer and applying the changes given above! (20 secondes to restart the OS). I tried to copy a folder but I made something wrong, no success at this time...Maybe it's needed to create a folder inside WPI and this one will be copied ! HTH *Edit: But if remeber and if I understand you have a warning pop-up using the path: C:\Audio ? -
simple batch file question from a newbie
myselfidem replied to THXMAN's topic in Windows Post-Install Wizard (WPI)
Enjoy! -
simple batch file question from a newbie
myselfidem replied to THXMAN's topic in Windows Post-Install Wizard (WPI)
Maybe you can try to use the oem.bat like this using {BATCH} with WPI: oem.bat @ECHO OFF COPY /Y "%wpipath%\Install\oemlogo\OEMLogo.bmp" "%windir%\System32\" REGEDIT /S "%wpipath%\Install\oemlogo\OEMinfo.reg" EXIT -
Updating manual
myselfidem replied to Kelsenellenelvian's topic in Windows Post-Install Wizard (WPI)
Thanks to apply these changes when you have time. Regards