Jump to content

GuuZ

Member
  • Posts

    49
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by GuuZ

  1. Ok I created my own Winamp package with WINinstall 2003 LE. And it works fine. BUT .. Everytime after I rebooted, and I run my winamp.exe again a small install progress bar shows up for like 2 secs, and after that winamp just runs. Only first time after rebooting. What does this progress bar? Can I get rid of it? It kinda annoys me Thanx edit: it seems that this progress bar comes from the original msi I installed it from... so it's like reinstalling itself everytime I rebooted help???
  2. jup all works fine
  3. works fine thanx a lot m8
  4. works now but after installing I changed my programfilespath back to c:\program files.... works fine. But there's still one thing.. All the shortcuts that should direct to D:\Applications direct to C:\Progam Files now ;(... Should I just replace those shortcuts with a batch file?
  5. thanx a lot!!! I'll try it tonight
  6. Ah I see Now I understand.. thanx Will try this when I get home from work
  7. C:\>echo %%ProgramFiles%%%C:\Program Files% C:\>
  8. Well I'll give it a shot tonight. Thanx for your reply
  9. GuuZ

    GetDiz

    No lol, that I can use the /x swich to extract the files But that's not important in this case now is it? mazin, would you be so kind to take a look at this one for me? http://www.msfn.org/board/index.php?showtopic=18861 thanx
  10. Ok I solved the RRC not working... IT didn't work because it aumatically converted %ProgramFiles% into C:\ProgramFiles.. so that made the command: RRC Search /data /text="C:\Program Files" /replace="C:\Program Files" /noprompt.. Now I have solved that with the following: SET PF1=%ProgramSET PF2=Files%RRC Search /data /text="%%PF1%%PF2%%" /replace="C:\Program Files" /nopromptAnd that works! Now there are actually two things where stuff messes up. This is how my setup works now: ProgramFilesFolder changes to D:\Applications from cmdlines.txtprepare.cmd runs from RunOnceExMy Apps get installed (to D:\Applications) from RunOnceExfinalize.cmd runs from RunOnceExprepare.cmd SET PF1=%ProgramSET PF2=Files%RRC Search /data /text="%PF1%%PF2%" /replace="C:\Program Files" /nopromptRRC Search /data /text="%%PF1%%PF2%%" /replace="C:\Program Files" /nopromptRRC Search /data /text="D:\Applications" /replace="C:\Program Files" /nopromptregedit /s %Systemdrive%\Install\D-Schijf.regD-schijf.reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion]"ProgramFilesDir"="d:\\Applications""ProgramFilesPath"="%ProgramFiles%"finalize.cmd cmdow @ /HID@echo off SET PF1=%ProgramSET PF2=Files%RRC Search /data /text="%PF1%%PF2%" /replace="D:\Applications" /nopromptRRC Search /data /text="%C:\Program Files%" /replace="C:\Program Files" /nopromptregedit /s %Systemdrive%\Install\C-schijf.regC-schijf.reg Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion]"ProgramFilesDir"="C:\\Program Files""ProgramFilesPath"="%ProgramFilesOk first thing that messes up: I take for example the Softwate/Microsoft/Outlook Express. There's a value Installdir it's called I believe.. At the default install it says: "%Program Files%\Outlook Express\etc." Now if I'm correct this line should be changed by the 1st RRC command in prepare.cmd. And it does change. But for some strange reason it changes to "%C:\Program Files%\Outlook Express\etc." Yup thos 2 %'s dont belong there. But in my finalize.cmd there's another line that should solve it. Well guess not. RRC Search /data /text="%C:\Program Files%" /replace="C:\Program Files" /nopromptDidn't do a thing to it. So when I get in windows... the regkey is still like %C:\Program Files%\.... And this is not the only one.. Totally there are 101 keys who have this problem. Weird enough. If I enter the exact same command in commandprompt. The keys do get changed! But that's not really unattended now is it? Ok 2nd issue. For all my applications installed to D:\Applications at the end all the shortcuts point to C:\Program Files\myapp... Is there a way to fix this too? Or should I simply let it copy over my correct shortcuts? I hope someone's here who can help me Thanx a lot
  11. Well probarly that wouldn't work either because you also can't name the file without any folder. This is probarly because it sets a total different default folder when executing from the RunOnceEX menu
  12. Can be downloaded here: http://www.quicksfv.org/download.html I prolly need to do it the same as here: http://www.msfn.org/board/index.php?act=ST&f=80&t=18710 But there's a slight difference... This program gives me the oppurtunity to right click on a file and let me creatce a sfv-file for it. Offcourse I want that to so I will probarly need a register entry for it. Anyone? mazin perhaps?
  13. Full Pathnames did work Thanx a lot m8
  14. looks like dos DOES support %systemdrive% and %systemroot% so I'm now trying with full pathnames.. see if that helpes.
  15. Well I just tryed... It didn't give an error or something. Just looked like normal, but it still didn't get imported :@ btw, how can I use full paths? Dos doesn't support vars like %systemdrive% and %systemroot%
  16. For some reason everywhere I specify the command "regedit /s regfile.reg" from RunOnceEx it doesn't get executed while the rest does. I'll post most of the files I'm using here, PLEASE READ FURTHER BELOW THEM!!! $OEM$\cmdlines.txt [COMMANDS]"useraccounts.cmd""ProgramFiles.cmd""RunOnceEx.cmd"$OEM$\ProgramFiles.cmd cmdow @ /HID@echo off RRC search /text="%ProgramFiles%" /replace="C:\Program Files" /data /nopromptregedit /s D-schijf.reg$OEM$\D-schijf.reg -> Gets Inserted! Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion]"ProgramFilesDir"="d:\\Applications""ProgramFilesPath"="%ProgramFiles%"$OEM$\RunOnceEx.cmd cmdow @ /HID@echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications" /f REG ADD %KEY%\001 /VE /D "Preparing Installation" /fREG ADD %KEY%\001 /V 1 /D "%systemdrive%\Install\prepare.cmd" /f REG ADD %KEY%\005 /VE /D "Abit EQ" /fREG ADD %KEY%\005 /V 1 /D "%systemdrive%\Install\AbitEQ\Setup.exe -s" /f REG ADD %KEY%\010 /VE /D "Adobe Reader 6.0" /fREG ADD %KEY%\010 /V 1 /D "%systemdrive%\Install\AdobeReader\Adobe_Reader_6.0.1.msi /qn" /f REG ADD %KEY%\015 /VE /D "BSPlayer" /fREG ADD %KEY%\015 /V 1 /D "%systemdrive%\Install\BSPlayer\bsplayer100.808.exe /S" /f REG ADD %KEY%\020 /VE /D "Daemon Tools" /fREG ADD %KEY%\020 /V 1 /D "%systemdrive%\Install\DaemonTools\daemon.msi Reboot=Suppress /qn" /f REG ADD %KEY%\025 /VE /D "DirectX 9.0b" /fREG ADD %KEY%\025 /V 1 /D "%systemdrive%\Install\DirectX\DX9NTopk.exe" /f REG ADD %KEY%\030 /VE /D "FlashFXP 2.1" /fREG ADD %KEY%\030 /V 1 /D "%systemdrive%\Install\FlashFXP\FlashFXP_21_Setup.exe /S" /f REG ADD %KEY%\035 /VE /D "GetDiz" /fREG ADD %KEY%\035 /V 1 /D "%systemdrive%\Install\Getdiz\Getdiz.cmd" /f REG ADD %KEY%\040 /VE /D "Microsoft Java VM" /fREG ADD %KEY%\040 /V 1 /D "%systemdrive%\Install\JavaVM\MSJavx86_3809full.exe /Q:A /R:N" /fREG ADD %KEY%\040 /V 2 /D "%systemdrive%\Install\JavaVM\MSJavx86_3810update.exe /Q:A /R:N" /f REG ADD %KEY%\045 /VE /D "Microsoft Office 2003" /fREG ADD %KEY%\045 /V 1 /D "%systemdrive%\Install\Office2k3\setup.exe TRANSFORMS=UNATTENDED.MST /qb-" /f REG ADD %KEY%\050 /VE /D "MSN Messenger 6.2" /fREG ADD %KEY%\050 /V 1 /D "%systemdrive%\Install\MSNMessenger\MsnMsgs.msi /qn" /f REG ADD %KEY%\055 /VE /D "mIRC" /fREG ADD %KEY%\055 /V 1 /D "%systemdrive%\Install\mirc\mirc.cmd" /f REG ADD %KEY%\060 /VE /D "Nero Burning Rom" /fREG ADD %KEY%\060 /V 1 /D "regedit /s %systemdrive%\Install\Nero\nero.reg" /fREG ADD %KEY%\060 /V 2 /D "%systemdrive%\Install\Nero\nero6316.exe /silent /noreboot" /f REG ADD %KEY%\110 /VE /D "Finalizing Installation" /fREG ADD %KEY%\110 /V 1 /D "%systemdrive%\Install\finalize.cmd" /f$OEM$\$1\Install\GetDiz\Getdiz.cmd cmdow @ /HID@echo off md d:\Applications\GetDizxcopy Files\*.* d:\Applications\GetDiz\*.* /e /h /yregedit /s getdiz.reg$OEM$\$1\Install\GetDiz\Getdiz.reg -> Does NOT get inserted! Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.diz]@="GetDiz.Document" [HKEY_CLASSES_ROOT\.nfo]@="GetDiz.Document" [HKEY_CLASSES_ROOT\Applications\GetDiz.exe] [HKEY_CLASSES_ROOT\Applications\GetDiz.exe\shell] [HKEY_CLASSES_ROOT\Applications\GetDiz.exe\shell\open] [HKEY_CLASSES_ROOT\Applications\GetDiz.exe\shell\open\command]@="\"D:\\Applications\\GetDiz\\GetDiz.exe\" \"%1\"" [HKEY_CLASSES_ROOT\GetDiz.Document]@="GetDiz Document" [HKEY_CLASSES_ROOT\GetDiz.Document\shell] [HKEY_CLASSES_ROOT\GetDiz.Document\shell\open] [HKEY_CLASSES_ROOT\GetDiz.Document\shell\open\command]@="\"D:\\Applications\\GetDiz\\GetDiz.exe\" \"%1\"" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]"MSI Console"="Msifont.fon"$OEM$\$1\Install\mirc\mirc.cmd cmdow @ /HID@echo off md d:\Applications\mIRCxcopy Files\*.* d:\Applications\mIRC\*.* /e /h /yregedit /s mirc.reg$OEM$\$1\Install\mirc\mirc.reg -> Does NOT get inserted! Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\mIRC\License]@="xxx-xxxxxx" [HKEY_CURRENT_USER\Software\mIRC\UserName]@="GuuZ"$OEM$\$1\Install\Nero\nero.reg -> Does NOT get inserted! [HKEY_LOCAL_MACHINE\SOFTWARE\Ahead\Nero - Burning Rom\Info]"User"="Daniël van den Bosch""Company"="GuuZ Productions""Serial6"="xxxx-xxxx-xxxx-xxxx-xxxx"Ok! As you can see the first reg file that I call from cmdlines.txt gets inserted perfectly! No Problem there!!! Now in RunOnceEx.cmd I call a few .cmd files, they all get executed perfectly except for the regedit command. You could almost say it ignores the regedit commands. Same for the ner.reg I call straight from RunOnceEx.cmd doesn;t get inserted either. My first thought: regedit.exe doesn't excist yet. Well it has to excist else it wasn't able to import my very first regfile called from cmdlines.txt /me crys for help I hope you guys can help me
  17. GuuZ

    GetDiz

    Yeah I found out Anywayz your method is working fine now Thanx a lot
  18. GuuZ

    GetDiz

    I've emailed them... But no response... Anywayz... I;m trying your method atm... with copying the files and importing the regkeys without the setup files. Hope it works, so I won't need that setupfiles anymore. Btw pskill getdiz... automatically kills the setup process... so it doesn't even get the change to install....
  19. The order doesn't matter. The regtweaks are applied for every user anyway. No matter what order you set them.
  20. GuuZ

    GetDiz

    just tested and didnt work a single bit
  21. Ok I reached this part of my CD. But for some reaseon RRC doesn't change anything in the register at all. It doesn't even when I run it in my own Windows. It sais it has found and replaced a lot of keys. But for some reason it finds them again and again. It doesn't do anything with it :s Help!?
×
×
  • Create New...