Jump to content

ionut_y

Member
  • Posts

    72
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Everything posted by ionut_y

  1. 1.Make your own pack installer of FreeCommander folder with INNO,NSIS,etc very simple with Winrar SFX,see SFX Option->Path to Extract,for silent see Mode tab check Hide All 2. Search for E-bay soft uninstall.exe (if there is such file )and run it silent after FreeCommander setup
  2. I've tried your reg file,it doesn't work for me on a new machine.I think registry snap 1 must be done on a computer where doesn't existing AIMP2 and snap 2 on the same machine after installation and customization.If I'll find a good solution I'll post it there.
  3. Thanks,you're right, but silent install worked for me,the only problem I have is file association,I'll try your .reg
  4. installer used is INNO, so use /SILENT or /VERYSILENT
  5. I think I solved this way : I've used SysTracer to get file association for AIMP2,then I've made a NSIS installer thanks to radix for the clue !!!! I've attached .reg file and there is NSIS script : !include "MUI2.nsh" Name "AIMP2" OutFile "aimp.exe" !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_LANGUAGE "English" ;Page instfiles Section "" SetOverwrite on SetAutoClose true SetOutPath "$PROGRAMFILES\AIMP2\DATA" FILE "AIMP.ini" SetOutPath "$PROGRAMFILES\AIMP2\DATA\profile" FILE "AIMP2.ini" SetOutPath $temp FILE "aimp_2.51.323.exe" ExecWait '"aimp_2.51.323.exe" /S "' file "fileasso.reg" Exec 'regedit /s "fileasso.reg"' delete "aimp_2.51.323.exe" delete "fileasso.reg" SectionEnd fileasso.zip
  6. thanks radix,nice advice,I'll try it soon.
  7. Hi ! Does anyone create a custom install for AIMP2,I want to pack my settings hotkeys,default skin,... I found some files in ..Application Data\AIMP\ but also are files are in \Program Files\AIMP2\DATA\... What about file association. Thanks for any advice.
  8. I think I solved this way : Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shellex\ContextMenuHandlers\PowerISO] @="{967B2D40-8B7D-4127-9049-61EA0C2C6DCE}" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.daa] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.iso] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.bin] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.cue] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.nrg] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.img] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.mdf] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.mds] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.bwi] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.b5i] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.cdi] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.pdi] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.gi] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.p01] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.pxi] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.ncd] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.c2d] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.cif] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.lcd] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.fcd] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.vcd] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.dmg] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.bif] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.uif] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{967B2D40-8B7D-4127-9049-61EA0C2C6DCE}] @="PowerISO" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{967B2D40-8B7D-4127-9049-61EA0C2C6DCE}\InProcServer32] @="C:\\Program Files\\PowerISO\\PWRISOSH.DLL" ThreadingModel="Apartment" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex\ContextMenuHandlers\PowerISO] @="{967B2D40-8B7D-4127-9049-61EA0C2C6DCE}" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shellex\ContextMenuHandlers\PowerISO] @="{967B2D40-8B7D-4127-9049-61EA0C2C6DCE}" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PowerISO] @="PowerISO File" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PowerISO\DefaultIcon] @="C:\\Program Files\\PowerISO\\PowerISO.exe,0" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PowerISO\shell] [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PowerISO\shell\open] [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PowerISO\shell\open\command] @="C:\\Program Files\\PowerISO\\PowerISO.exe \"%1\""
  9. Hi ! I have installed silent PowerIso and it works fine,but does not have any file association,how can I associte automatically it with known extensions (.iso,.daa,etc) Thanks.
  10. I can't tell you exact solution,you better search this forum using search option above,if no solution then start a new topic.
  11. it will not work because you have a subfolder INSTALL put all files from this subfolder into $$ and you don't have to edit RunOnce
  12. It's exactly what i supposed to be,look to my earlier advice "So if you use $OEM$\$1 then RunOnce must look like this : start /wait %systemdrive%\yoursetup.exe .. or if you use $OEM$\$$ then RunOnce must look like this : start /wait %SYSTEMROOT%\yoursetup.exe .." If you used $OEM$\$1\Install\ files are copied in c:\Install folder and then you try to run files from %SYSTEMROOT%\WinRAR_3.71_Corporate_Edition.exe /S wich is c:\windows\WinRAR_3.71_Corporate_Edition.exe /S Correct use is : start /wait %systemdrive%\install\WinRAR_3.71_Corporate_Edition.exe /S
  13. I think you've created $OEM$\$1 and put install packages there and in RunOnce tab you put this start /wait %SYSTEMROOT%\yoursetup.exe ..... So if you use $OEM$\$1 then RunOnce must look like this : start /wait %systemdrive%\yoursetup.exe .. or if you use $OEM$\$$ then RunOnce must look like this : start /wait %SYSTEMROOT%\yoursetup.exe .. Please read there : http://unattended.msfn.org/unattended.xp/view/web/18/ $$ - Windows Folder $1 - Root of hard drive where Windows is installed to partition.
  14. After install you'll find this folder c:\install (if system drive is C) and all the files you put in $OEM$\$1\Install,it is not a wrong ideea to remove it after use.
  15. Go to setup folder,create $OEM$\$1\Install then copy all your packages there.Run Nlite,load last session,go to RunOnce tab and add your commands ................ start /wait %systemdrive%\install\mysetup.exe /SILENT" ......... RMDIR %systemdrive%\install /s /q Make .iso file and test it with Virutal PC http://www.microsoft.com/downloads/details...;displaylang=en
  16. i went there but i didnt find the folder named $OEM$ Create it and rebuild iso,nlite will include this folder. You can create \$OEM$\$1\Install this will become %systemdrive%\install\ so you can run start /wait %systemdrive%\install\mysetup.exe /SILENT" there you'll fine some tips http://unattended.msfn.org/unattended.xp/view/web/18/ This folder could be removed this way RMDIR %systemdrive%\install /s /q
  17. You're welcome with Nero,you can do this way,but works only with Nero Micro download demo kit from there create a .reg file REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Nero\Installation\Families\Nero 8\Info] "User"="xxxxxxxx" "Company"="xxxxxxxxxx" "Serial8_1199672675"="xxxxxxxxx" replace 'x' with your user,company and serial,save this file as nero.reg now run installer this way regedit /s Nero.reg nero-8.3.6.0_english_lite.exe /VERYSILENT you can add these lines into a .bat file, download add-on maker from there put all your 3 file into a folder,run add-on maker,choose your folder and .bat file as installation file,make the .cab then extrat cab and you'll find a single .exe that works silet and combines all 3 files.
  18. Can U EXPLAIN??????????????????????????????? Nlite asked you to choose a local folder to save windows setup files,go there and you'll find $OEM$ and $$ folder. Please read this http://unattended.msfn.org/unattended.xp/view/web/18/ Go also there : http://www.winaddons.com/nlite-addons and you''ll find Adobe Reader 9,download this add-on,unpack it and you'll find ENTRIES_AdobeReader.INI and AdobeReader90.exe,open .ini file,there are silent switches for silent mode AdobeReader90.exe /sAll /rs,now you have to put AdobeReader90.exe in $OEM$/$$ and in RunOnce tab start /wait %SYSTEMROOT%\AdobeReader90.exe /sAll /rs or add the cab file in nlite Hotfixes/Add-ons stage. Now rebuild .iso file with nlite.
  19. Download Nlite : http://www.filehippo.com/download_nlite/do...85e14b1dbb68b4/ You can integrate your software in Hotfixes/Add-ons stage,there you'll find some http://www.winaddons.com/nlite-addons You can also use Nlite RunOnce tab,your software will be intalled at fist log on ,but you'll need to know silent switches for each. I can give you some examples start /wait %SYSTEMROOT%\se_tp\klcodec.exe /VERYSILENT /SP- start /wait %SYSTEMROOT%\se_tp\firefox.exe -ms In my case I've put "se_tp" folder that contains software packages,in $OEM$/$$ and it will be automatically copied in windows folder so,at first log on this path will be valid (%SYSTEMROOT%\se_tp\)
  20. Thanks strel for your answer.I'll try soon your suggestion. I also have other .reg files in RunOnce section and work fine.I also tried to replace LOGON.SC_ in I386 folder,but no chance to work. I've replaced BLISS.JP_ with one custom file and it works fine for wallpaper but for sreensaver I'm still looking for a trick.
  21. Hi I run this .reg file in RunOnce Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Control Panel\Desktop] "SCRNSAVE.EXE"="C:\\WINDOWS\\system32\\bubbles.SCR" file bubbles.SCR exists in system32 folder,but this it doesn't change default screen saver.After first logon if I manually run .reg, it works fine,any suggestion ? Thanks.
×
×
  • Create New...