Jump to content

ricktendo

Members
  • Posts

    8,715
  • Joined

  • Last visited

  • Days Won

    444

Everything posted by ricktendo

  1. 8-09-08 - Added Polish support - Translated French and German Strings Same addon name no change, verify with MD5 checksum
  2. I guess by editing your favorite .Theme file
  3. Holaz
  4. I don't remember which but in one of my addon making Videos I explain [Version], Description and Tip Vid 1 Vid 2 BTW to intentionally "HIDE" or SHOW it in add/rem Windows Components just remove this from the sysoc entries (it will also show if your "OCEntry" [Optional Component Entry] does not match like MrNxDmX described)
  5. You cannot use the Vista media center on XP but you can patch the resources to look kinda like it
  6. You can simply overwrite the one in lang and that will do it, but it will not be installed unfortunately unless you install support for other asian langs The reason i put it in i386 and gave it a x on the end is because some people were having trouble with it and nLite, nLite will delete it if you choose to remove the other languages BTW most stuff in the LANG folder is installed via INF
  7. [Optional Components] OCSection [OCSection] OptionDesc="" Tip="" Run=Launch.PostInstall [Launch.PostInstall] CommandLine="rundll32.exe advpack.dll,LaunchINFSection INF_FILE.INF,NameOfSection" TickCount=500 To fix yours just remove the %1%\ its not needed...only use that for manual installers not during setup, leave it with no path it will assume that INF is the default dir BTW what do you want to launch a installer during windows setup for?
  8. OK its simple, you cannot create a service with AddReg on your current windows desktop (but during windows setup it works fine)...these addreg strings are breaking the INF during manual install HKLM,"SYSTEM\CurrentControlSet\Services\ The Advanced INF install warning is just telling what the normal install cannot, the other "Install" is being broken by the services AddReg also but its just not telling you there is something wrong, only the advance install will give you the warning...understand what I am trying to say? Solution is to create a seperate AddReg (like Service.AddReg) section for the services and don't add it to DefaultInstall for testing, now test your addon and see if it the other stuff works
  9. Correct bjfrog, those will cause a AdvancedINF error if you do a test install with Avanced Install (available if you use Kels uber pack in the Right Click menu) But dont worry CurrentControlSet\Services\xxx work during windows setup
  10. No and doubt if it ever will be
  11. Cleanup = 1 is how you can self delete the INF (if you do this you have to use UpdateInis to delete the entry from SYSOC.INF otherwize you will get an error when you try to launch add/rem windows components)
  12. - Updated v2.4.2.0 - Internationalized the addon supports: English, Spanish, French, Italian, German, Dutch and Turkish Request: Please if you speak French, Italian, German, Dutch or Turkish could you please translate the following strings to make this addon better:
  13. My inf does not support install on x64 OS's hidec is just a command window hider (hides ugly cmd window)
  14. All its used for is to locate the LDID's (16422, 10, 11, etc) you can use this PDF to find them also http://www.sokoolz.com/addons/r64/ADVANCED_INF.pdf
  15. Looks the same as when IE7 is not installed, png's are not displayed properly with transparency
  16. If mine does not execute the program go ahead and add another quote, if it worked your way thats then thats the correct amount of quotes Quotes may only be needed btw for the second runpost/presetupcommand actually, this should work just fine %16422%\%Prog_Dir%\%Sub_Dir%\uninst.exe /SILENT;quotes not needed in the first path %16422%\%Prog_Dir%\%Sub_Dir%\uninst.exe /SILENT """%16422%\%Prog_Dir%\%Sub_Dir%\Example.ini""";quotes are needed in second path OH and the quotes are only needed/used for paths with spaces in them, example "Program(space)Files\etc"
  17. This should do it [Version] Signature="$Windows NT$" [Optional Components] VirDir [DefaultInstall] AddReg =VirDir.AddReg Copyfiles =VirDir.Files,Help.Files,VirDir.Shortcut [VirDir] OptionDesc ="VirDir" Tip ="Create Virtual Drive" Modes =0,1,2,3 AddReg =VirDir.AddReg Copyfiles =VirDir.Files,Help.Files,VirDir.Shortcut [DestinationDirs] VirDir.Files =16422,%Vir% Help.Files =16422,%VirHelp% VirDir.Shortcut =16407,Utilts,Virmgr [SourceDisksNames.x86] 1="Windows XP CD-Rom","VirDir.CAB",,"i386" [SourceDisksFiles] banner.jpg=1 dw.css=1 irunin.bmp=1 irunin.dat=1 irunin.ini=1 irunin.lng=1 shim.gif=1 virdir.exe=1 help.htm=1 VirDir.lnk=1 [VirDir.Files] irunin.bmp irunin.dat irunin.ini irunin.lng virdir.exe virdir_help.htm,help.htm [Help.Files] banner.jpg dw.css shim.gif [VirDir.Shortcut] VirDir.lnk [VirDir.AddReg] HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Run","VirDir",0x0,"%16422%\VirDir Manager\virdir.exe /startup" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirDir Manager0.9",,0x10 HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirDir Manager0.9","DisplayName",0x0,"VirDir Manager" ;HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirDir Manager0.9","UninstallString",0x0,"%10%\iun6002.exe ""%16422%\VirDir Manager\irunin.ini""" HKLM,"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirDir Manager0.9","UninstallString",0x0,"rundll32 advpack.dll,LaunchINFSection VirDir.inf,Uninstall" [Uninstall] RunPreSetupCommands =Run.Uninstaller DelFiles =VirDir.Shortcut RunPostSetupCommands=Del.ShortcutDirs [Run.Uninstaller] "%10%\iun6002.exe ""%16422%\VirDir Manager\irunin.ini""" [Del.ShortcutDirs] "rundll32 advpack.dll,DelNodeRunDLL32 ""%16407%\Utilts\Virmgr"",1" [Strings] Vir =VirDir Manager VirHelp=VirDir Manager\virdir_help_files
  18. http://www.ryanvm.net/forum/viewtopic.php?t=6411
  19. Was contacted today by Thoosje asking if I knew any Russian people who could help translate his Vista Tweaker program (100% Freeware) into Russian for him. Contact him if you can help with this great free program Hes already has: Chinese, Spanish, Turkish, Portuguese, German and French translations (if you language is not on that list and you would like to add yours contact him also)
  20. You can use DelFiles then to delete your shortcuts, this will use the same section used for CopyFiles to locate and delete the files [Uninstall] RunPreSetupCommands =RunUninst DelFiles = Shortcut OH and BTW some changes you wanted your INF [Version] Signature="$Windows NT$" [Optional Components] UltraISO [DefaultInstall] CopyFiles =UltraISO.Files,lang.Files,drivers.files,Common.Files,@UltraISO.inf AddReg =UltraISOInstall.AddReg,USERSettings.AddReg,UltraISOUninstall.AddReg RegisterDLLs=UltraISOShell.Dlls ProfileItems =UltraISO.AddShortcut [UltraISO] OptionDesc ="UltraISO Premium Edition" Tip ="UltraISO Premium Edition Addon" Modes =0,1,2,3 CopyFiles =UltraISO.Files,lang.Files,drivers.files,Common.Files AddReg =UltraISOInstall.AddReg,USERSettings.AddReg,UltraISOUninstall.AddReg RegisterDLLs=UltraISOShell.Dlls ProfileItems =UltraISO.AddShortcut [SourceDisksNames.x86] 1="UltraISO Files","UltraISO.cab",,"i386" [DestinationDirs] UltraISO.Files =16422,UltraISO lang.Files =16422,UltraISO\lang drivers.files =16422,UltraISO\drivers Common.Files =16427\EZB Systems ;<-Fixed common files flag [SourceDisksFiles] History.txt =1 isoshell.dll =1 License.txt =1 Readme.txt =1 ultraiso.chm =1 UltraISO.exe =1 ultraiso.ico =1 unins000.dat =1 unins000.exe =1 lame_enc.dll =1 ISODrv64.sys =1 IsoCmd.exe =1 ISODrive.sys =1 lang_cn.dll =1 lang_jp.dll=1 [UltraISO.Files] Readme.txt ultraiso.chm UltraISO.exe ultraiso.ico unins000.dat unins000.exe History.txt isoshell.dll License.txt [lang.Files] lang_cn.dll lang_jp.dll [Common.Files] lame_enc.dll [Drivers.Files] ISODrv64.sys IsoCmd.exe ISODrive.sys [UltraISO.AddShortcut] Name =UltraISO CmdLine =16422,UltraISO,UltraISO.exe SubDir =MyAPP\UltraISO WorkingDir =16422,UltraISO [UltraISOShell.Dlls] 16422,UltraISO,isoshell.dll,1 [UltraISOInstall.AddReg] HKCR,".bin",,,"binimage" HKCR,".iso",,,"UltraISO" HKCR,".isz",,,"UltraISO" HKCR,".ui",,,"UltraISO" HKCR,"binimage",,,"BIN File" HKCR,"binimage\DefaultIcon",,,"""%16422%\UltraISO\UltraISO.exe"",0" HKCR,"binimage\shell\Convert to ISO\command",,,"""%16422%\UltraISO\UltraISO.exe"" -bin2iso ""%%1""" HKCR,"binimage\shell\open\command",,,"""%16422%\UltraISO\UltraISO.exe"" ""%%1""" HKCR,"UltraISO",,,"UltraISO File" HKCR,"UltraISO\DefaultIcon",,,"""%16422%\UltraISO\UltraISO.exe"",0" HKCR,"UltraISO\shell\open",,,"Open with &UltraISO" HKCR,"UltraISO\shell\open\command",,,"""%16422%\UltraISO\UltraISO.exe"" ""%%1""" [USERSettings.AddReg] HKCU,"%SEU5%",,,"%16422%\UltraISO" HKCU,"%SEU5%","Shared",,"%16427%\EZB Systems";<-Fixed 16427=%CommonProgramFiles% HKCU,"%SEU5%","XPBurn",,"0" HKCU,"%SEU5%","ISOFolder",,"%16389%\My ISO Files" HKCU,"%SEU5%","UseSkins",,"3" HKCU,"%SEU5%","SoundEffect",,"1" HKCU,"%SEU5%","Language",,"1033" HKCU,"%SEU5%","RecompileISO",,"0" HKCU,"%SEU5%","SaveBackup",,"0" HKCU,"%SEU5%","SuperRestore",,"1" HKCU,"%SEU5%","UserName",,"%NAME%" HKCU,"%SEU5%","Registration",,"%SN%" HKLM,"%SEU5%",,,"%16422%\UltraISO" HKLM,"%SEU5%","Shared",,"%16427%\EZB Systems" ;<-Fixed also HKLM,"%SEU5%","Install",,"1" [UltraISOUninstall.AddReg] HKLM,"%UNINST%","Inno Setup: Setup Version",,"5.2.3" HKLM,"%UNINST%","Inno Setup: App Path",,"%16422%\UltraISO" HKLM,"%UNINST%","InstallLocation",,"%16422%\UltraISO\" HKLM,"%UNINST%","Inno Setup: Icon Group",,"UltraISO" HKLM,"%UNINST%","Inno Setup: User",,"Administrator" HKLM,"%UNINST%","Inno Setup: Selected Tasks",,"desktopicon,associate,isodrive" HKLM,"%UNINST%","Inno Setup: Deselected Tasks",0x0 HKLM,"%UNINST%","DisplayName",,"UltraISO Premium %VER%" HKLM,"%UNINST%","DisplayIcon",,"%16422%\UltraISO\UltraISO.exe" ; ;----------------- I Add UNINSTALL String Here---------- HKLM,"%UNINST%","UninstallString",0,"rundll32.exe advpack.dll,LaunchINFSection UltraISO.inf,Uninstall" ;HKLM,"%UNINST%","QuietUninstallString",,"""%16422%\UltraISO\unins000.exe"" /SILENT" ;<-Not needed HKLM,"%UNINST%","NoModify",0x10001,1 HKLM,"%UNINST%","NoRepair",0x10001,1 ; You should add a uninstall prompt to this section now that the uninstaller is silent [Uninstall] RunPreSetupCommands =RunUninst ProfileItems=UltraISO.DelShortcut [RunUninst] """%16422%\UltraISO\unins000.exe"" /SILENT";<-made silent [UltraISO.DelShortcut] Name =UltraISO,0x00000002 SubDir=MyAPP\ULTRAISO [Strings] UNINST="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\UltraISO_is1" SEU5="Software\EasyBoot Systems\UltraISO\5.0" VER="V9.30" NAME="LiuHongWei" SN=""
  21. Again? How long now Sull?
  22. Ma mama always said "stupid is as stupid does" Nice find
  23. Gracias OnePiece, si yo recuerdo ver ese update en Windows Search 4.0 Gracias por recordarme
×
×
  • Create New...