Jump to content

dlevens

Member
  • Posts

    103
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About dlevens

dlevens's Achievements

0

Reputation

  1. Faster load time with IE7 installed on system. White screen shows for a long time before the wpi screen comes up. Dennis
  2. I currently use virtualdub to join all my avi and mpeg files but cannot find a good program that can handle wmv files. I do not want to re encode the files, just piece them together into a single file as the video and audio are identical. Any suggestions? Dennis
  3. I tried adding the autologon.reg to my cmdlines.txt and it does try to autologon Dennis, but I get an error "The system could not log you on...." etc I also see that the Administrator account was created?!?!?! wtf Dennis
  4. I prefer to get the oobeinfo process working as it worked before. it does not matter what number command you use, I have it at 9 because I always want this command last. I can slip in other commands easy this way. Thanks for the suggestion, but I am not looking for another way to do this. Dennis
  5. I cannot seem to get my oobeinfo.ini working again. I had this working in the past and now it seems to be ignored. I want to create a single account "Dennis" and have this account replace the administrator account. I do NOT want the administrator account created at all. When I go to documents and settings I only want to see a folder Dennis and All Users. Here is what I have OOBEINFO.INI file is located in $OEM$\$$\system32\oobe\OOBEINFO.INI my winnt.sif For some reason I cannot figure out the Administrator account is still being created and the Dennis account is not be created. Any thoughts on what is causing this? Dennis
  6. I am trying to build a clean autoit script for nero 7.2.0.3b that will install only the following 5 components: nero start smart nero burning rom nero express nero vision nero recode However, I cannot clean my current install of nero 7 out of my system. I have uninstalled it fine, I deleted nero and ahead from program files. I cleaned out the registry from HKLM, I deleted the temp files. I even deleted the ahead and nero folders from documents and settings. I download all 5 clean tools from nero's site and ran them. I have rebooted. NOW WTF is the serial number still showing up when I do a manual install? Where the hell is nero hiding its crap that the serial number is auto put into the serial field and it even knows what applications I chose to install manually before. I could just reformat but this is p***ing me off. I cannot stand it when an install leaves its crap all over the system. Any help would be appreciated. Dennis
  7. 7.0.8.2 INCEXCFTR (2FF8B816) (Actions) NeroHome INCLUDE 7.2.0.3 INCEXCFTR (2FF8B816) (Features) NeroHome INCLUDE Interesting, has to be a simple syntax fix then, just no idea on how to do it. We definately need BoardBabe's help. Dennis
  8. What would really be appreciated is a silent installer that includes everything except the following: Nero Scout Nero Home Nero PhotoSnap Nero PhotoSnap Viewer Nero MediaHome InCD Nero ShowTime Nero BackItUp Nero SoundBox Now that the old 'AutoIt Script' for nero 7 no longer works for the latest nero release such a installer would really be very usefull for a lot of people for whom space is not issue but the presence of certain nero features is. Specially the crappy Nero Scout and Nero Showtime. Maybe you cna just guide us as to how we can make such an installer. Thanks, Sanjay I also second that! Dennis
  9. bummers, still no response on this script? Anyone willing to share their own autoit script that works for 7.2.0.3? I cannot seem to figure out why the script stopped working, been playing with it for a few hours. Odd. Dennis
  10. Just upgraded to the new 4.3.5 version and would like to offer the following suggestions: 1. If you use exclusions (excl) then the multi check does not work properly. It will check all and the excl will not be selected as it should but you cannot click the multi again to uncheck everything in that category. Instead you have to use uncheck all to remove the checks. It would be ideal if when checking the multi it would check all but the excl but still show a check in the multi box and when you remove the check it removes all checks from that category. 2. I have so many entries now in my wpi that it loads very slow. It would be nice to implement a select box similar to the configs choices that would load a seperate config.js file. For instance I made a full page of regsitry changes that would be ideal for a seperate config.js file. When I wanted registry choices in wpi I could just select another config.js file and wpi would load that file. This way wpi would load quicker as it would not need to scan through one huge config.js file. Dennis
  11. Anyone seen this before? When I go to burn my CD nero complains and says it needs to rename these 3 files in the \i386\WinSxS\Manifests folder x86_policy.5.1.Microsoft.Windows.SystemCompatible_6595b64144ccf1df_5.1.2600.2000_x-ww_e037a8a.Manifest x86_policy.6.0.Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_eb84b25e.Manifest x86_policy.7.0.Microsoft.Windows.CPlusPlusRuntime_6595b64144ccf1df_7.0.2600.2180_x-ww_cf5111a1.Manifest It says it has to rename the files to be compatible with the cd file system. I am using nero ultra 6.6.0.16 I am using cdshell as the boot loader and have several .igz .img floppy images, INSERT, and ubcd for windows. These are the settings I am using for nero Dennis
  12. I think I have everything solved now but your quote above. What do you mean by corel key place? Dennis
  13. use a reg file? I fail to see how that would prevent these two items from being installed? I use reg files to config options post install but not sure how it can prevent something from installing? Am I missing something? Dennis
  14. I was able to do an admin install which asked for the serial, it accepted it fine and a silent install worked using the the files made from the admin install. I used msiexec /i pspx.msi /qb However, I would like to make a silent install that does not install the thumbnail and browse with paint shop options. During a manual install you can uncheck these, but how do you not install these for an unattended install? Dennis
  15. wow, talk about using a sledge hammer to kill a fly. Keep it simple. This is how I do it. Call install.cmd from winnt.sif [GuiRunOnce] command9= "%SystemDrive%\install.cmd" install.cmd located in $OEM$\$1 @ECHO OFF rem find the CDROM letter ... for %%i in (D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\WIN51 SET cdrom=%%i: rem copies i386 to hard drive ... ECHO Please wait, source files are being copied. This may take several minutes. xcopy %CDROM%\i386\*.* %SystemDrive%\Support\i386\ /e /i /h /y rem adds source location for i386 to registry ECHO Adding registry entries. reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup" /v "Installation Sources" /t REG_MULTI_SZ /d "%SystemDrive%\Support\i386" /f reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup" /v SourcePath /d %SystemDrive%\Support /f reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup" /v ServicePackSourcePath /d %SystemDrive%\Support /f reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v SourcePath /d %SystemDrive%\Support\I386 /f rem runs cleanup script start %cdrom%\install\cleanup.cmd exit install.cmd
×
×
  • Create New...