Jump to content

urie

Member
  • Posts

    520
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by urie

  1. REM http://www.intervideo.com/jsp/InterVideoDVDCopy_Profile.jsp REM NOTES: Installshield - Extracted REG ADD %KEY%\1001 /VE /D "InterVideo DVDCopy 4" /f REG ADD %KEY%\1001 /V 101 /D "E:\Install\IVIDVDCopy4\Setup.exe -s -f1\"E:\Install\IVIDVDCopy4\setup.iss\"" /f REG ADD %KEY%\1001 /V 102 /D "REGEDIT /S E:\Install\IVIDVDCopy4\IVIDVDCopy41.reg" /f REG ADD %KEY%\1001 /V 103 /D "REGEDIT /S E:\Install\IVIDVDCopy4\IVIDVDCopy42.reg" /f REG ADD %KEY%\1001 /V 104 /D "CMD /C DEL \"%ALLUSERSPROFILE%\Start Menu\Programs\Startup\InterVideo WinCinema Manager.lnk\"" /f REG ADD %KEY%\1001 /V 105 /D "CMD /C DEL \"%ALLUSERSPROFILE%\Desktop\InterVideo DVDCopy 4.lnk\"" /f Regfiles
  2. you would be far better using winrar it's a lot easier. Add this to the comment section in winrar Path=C:\Windows\System32 SavePath Silent=2
  3. UnattendXP will do it have a look here, this will do everything you need. http://maxxpsoft.com/files/unattendxp.php? http://maxxpsoft.com/forums/
  4. Djé, thanks for the explanation thats cleared things up
  5. Ok what gives? I did that and FF doesn't install! Am I missing something? I got "Firefox Setup 1.5.0.3.exe" directly from the mozilla.com site, put it into my $oem$ and added this to my runonceex.cmd REG ADD %KEY%\005 /VE /D "FireFox 1.5" /f REG ADD %KEY%\005 /V 1 /D "%PP%Firefox Setup 1.5.0.3.exe -ms" /f Maybey try renaming it without spaces. REG ADD %KEY%\005 /VE /D "FireFox 1.5" /f REG ADD %KEY%\005 /V 1 /D "%PP%Firefox_Setup_1.5.0.3.exe -ms" /f
  6. Hi there, this thread may help. http://www.msfn.org/board/index.php?showtopic=72998
  7. if your machine came with MCE preinstalled have a look here. http://www.msfn.org/board/index.php?showtopic=63258
  8. what program are you trying switches with, setup.exe or Symantec Client Security.msi it should be the msi file you use.
  9. God help you if you hard drive goes 80+ GB is that your system drive or is it partitioned why cant you make a backup with acronis for example and do a clean install of windows to check then just restore again and you will be back to normal.
  10. http://www.msfn.org/board/index.php?showtopic=63258
  11. Well that done it even nuhi has a donate button on his webpage for nLite, Nologic was just looking for some feedback.
  12. For XP home just start in safe mode that brings up administrator login screen
  13. Usage: setup.exe [options] [options] can be any of the following combination: -h: This help. -a [path]: Alternate archive search path. -app [app id]: ID of application which is launching the installer (shared installs) -app_path [app]: Points to (full path) representative file of application (Shared installs) * -dd [path]: Suggested install destination directory. (Shared installs) * -greLocal: Forces GRE to be installed into the application dir. * -greShared: Forces GRE to be installed into a global, shared dir (normally) c:\program files\common files\mozilla.org\GRE -reg_path [path]: Where to make entries in the Windows registry. (Shared installs) -f: Force install of GRE installer (Shared installs), though it'll work for non GRE installers too. -greForce: Force 'Component GRE' to be downloaded, run, and installed. This bypasses GRE's logic of determining when to install by running its installer with a '-f' flag. -n [filename]: Setup's parent process filename. * -ma: Run setup in Auto mode. * -ms: Run setup in Silent mode. -ira: Ignore the [RunAppX] sections -ispf: Ignore the [Program FolderX] sections that show the Start Menu shortcut folder at the end of installation. * -showBanner: Show the banner image in the download and install progress dialogs * -hideBanner: Hide the banner image in the download and install progress dialogs * -cleanupOnUpgrade: Tells Setup to check to see if user is upgrading (installing on top of previous version of product). If user is upgrading: * NORMAL mode: prompt user on how to proceed * All other modes: assume user wants to cleanup. * -noCleanupOnUpgrade: Tells Setup to not check if user is upgrading (installing on top of previous version of product). This will disable the cleanup feature. * means it will override config.ini
  14. Yzöwl i used the reg file posted here http://www.msfn.org/board/index.php?s=&showtopic=71739&view=findpost&p=490133 i had to use the vbs script i posted to get registry setting back to default as i said there were no icons on html or htm files not even when firefox was set to default browser.
  15. '-------------------------------------------------------------- 'Applies To : Microsoft Windows XP 'Author : Ramesh Srinivasan - Microsoft MVP [Windows XP] 'Created on : January 17, 2006 'Description : Fixes the icons for HTM/HTML/MHT/MHTML files 'Homepage : http://windowsxp.mvps.org 'More Info : http://windowsxp.mvps.org/htmicon.htm 'Prerequisite : Windows XP systems / Administrative privileges '-------------------------------------------------------------- Set WshShell = CreateObject("WScript.Shell") On Error resume Next WshShell.RegWrite "HKCR\.htm\", "htmlfile", "REG_SZ" WshShell.RegWrite "HKCR\.html\", "htmlfile", "REG_SZ" WshShell.RegWrite "HKCR\.mht\", "mhtmlfile", "REG_SZ" WshShell.RegWrite "HKCR\.mhtml\", "mhtmlfile", "REG_SZ" WshShell.RegWrite "HKCR\htmlfile\DefaultIcon\", "%Programfiles%\Internet Explorer\IEXPLORE.EXE,1", "REG_EXPAND_SZ" WshShell.RegWrite "HKCR\mhtmlfile\DefaultIcon\", "%Programfiles%\Internet Explorer\IEXPLORE.EXE,22", "REG_EXPAND_SZ" WshShell.Regdelete "HKCR\htmlfile\ShellEx\IconHandler\" WshShell.Regdelete "HKCR\mhtmlfile\ShellEx\IconHandler\" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTM\Application" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTM\ProgID" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTML\Application" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTML\ProgID" WshShell.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE\", "%Programfiles%\Internet Explorer\IEXPLORE.EXE", "REG_EXPAND_SZ" Wshshell.RUN ("regsvr32.exe mshtml.dll -i -s") Wshshell.RUN ("regsvr32.exe shdocvw.dll -i -s") MsgUser = Msgbox ("Fixed the registry settings. Restart Windows for the changes to take effect", 4160, "HTML icon fix for Windows XP") Set WshShell = Nothing
  16. http://wiki.djlizard.net/Product_IDs
  17. '-------------------------------------------------------------- 'Applies To : Microsoft Windows XP 'Author : Ramesh Srinivasan - Microsoft MVP [Windows XP] 'Created on : January 17, 2006 'Description : Fixes the icons for HTM/HTML/MHT/MHTML files 'Homepage : http://windowsxp.mvps.org 'More Info : http://windowsxp.mvps.org/htmicon.htm 'Prerequisite : Windows XP systems / Administrative privileges '-------------------------------------------------------------- Set WshShell = CreateObject("WScript.Shell") On Error resume Next WshShell.RegWrite "HKCR\.htm\", "htmlfile", "REG_SZ" WshShell.RegWrite "HKCR\.html\", "htmlfile", "REG_SZ" WshShell.RegWrite "HKCR\.mht\", "mhtmlfile", "REG_SZ" WshShell.RegWrite "HKCR\.mhtml\", "mhtmlfile", "REG_SZ" WshShell.RegWrite "HKCR\htmlfile\DefaultIcon\", "%Programfiles%\Internet Explorer\IEXPLORE.EXE,1", "REG_EXPAND_SZ" WshShell.RegWrite "HKCR\mhtmlfile\DefaultIcon\", "%Programfiles%\Internet Explorer\IEXPLORE.EXE,22", "REG_EXPAND_SZ" WshShell.Regdelete "HKCR\htmlfile\ShellEx\IconHandler\" WshShell.Regdelete "HKCR\mhtmlfile\ShellEx\IconHandler\" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTM\Application" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTM\ProgID" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTML\Application" WshShell.Regdelete "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.HTML\ProgID" WshShell.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE\", "%Programfiles%\Internet Explorer\IEXPLORE.EXE", "REG_EXPAND_SZ" Wshshell.RUN ("regsvr32.exe mshtml.dll -i -s") Wshshell.RUN ("regsvr32.exe shdocvw.dll -i -s") MsgUser = Msgbox ("Fixed the registry settings. Restart Windows for the changes to take effect", 4160, "HTML icon fix for Windows XP") Set WshShell = Nothing Thanks
  18. LLXX Thanks, but still no joy i allready had this entries in my registry. C:\Program Files\Internet Explorer\iexplore.exe,1
  19. Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.htm] "PerceivedType"="text" @="htmlfile" "Content Type"="text/html" [HKEY_CLASSES_ROOT\.htm\OpenWithList] [HKEY_CLASSES_ROOT\.htm\OpenWithList\FRONTPG.EXE] [HKEY_CLASSES_ROOT\.htm\OpenWithList\notepad.exe] [HKEY_CLASSES_ROOT\.htm\OpenWithList\WINWORD.EXE] [HKEY_CLASSES_ROOT\.htm\PersistentHandler] @="{eec97550-47a9-11cf-b952-00aa0051fe20}" [HKEY_CLASSES_ROOT\.html] "PerceivedType"="text" @="htmlfile" "Content Type"="text/html" [HKEY_CLASSES_ROOT\.html\PersistentHandler] @="{eec97550-47a9-11cf-b952-00aa0051fe20}" [HKEY_CLASSES_ROOT\htmlfile] @="HTML Document" [HKEY_CLASSES_ROOT\htmlfile\BrowseInPlace] @="" [HKEY_CLASSES_ROOT\htmlfile\CLSID] @="{25336920-03F9-11cf-8FD0-00AA00686F13}" [HKEY_CLASSES_ROOT\htmlfile\DefaultIcon] @="\"%1\"" [HKEY_CLASSES_ROOT\htmlfile\ScriptHostEncode] @="{0CF774D0-F077-11D1-B1BC-00C04F86C324}" [HKEY_CLASSES_ROOT\htmlfile\shell] @="opennew" [HKEY_CLASSES_ROOT\htmlfile\shell\Edit] @="&Edit" [HKEY_CLASSES_ROOT\htmlfile\shell\Edit\command] @="\"C:\\Program Files\\Microsoft Office\\Office10\\msohtmed.exe\" %1" [HKEY_CLASSES_ROOT\htmlfile\shell\open] @="Open in S&ame Window" [HKEY_CLASSES_ROOT\htmlfile\shell\open\command]
  20. I disagree with you Dynaletik - a good number of people do use Autoit Nero 7x script for installation...
  21. Check out this link I know it's about OEM.logo but it's about gfx http://www.msfn.org/board/index.php?s=&sho...ndpost&p=350030 hope this helps urie
×
×
  • Create New...