Everything posted by LazyBoy
-
RunOnceEx doesn't run on startup.
As a matter of fact, I am. I integrated IE7 and WMP11. So the problem is IE huh...I guess that explains why after getting Windows updates, RunOnceEx executed on the next boot. Is there a solution though?
-
RunOnceEx doesn't run on startup.
I'm not sure what breaks my RunOnceEX.cmd but I'm sure it's not the batch file itself. It used to work and I've been keeping it untouched. I integrated the latest RyanVM's update pack (Feb, 2007) using nLite, in the cmdlines.txt I have: "regedit /S hkcu.reg" "useraccounts.cmd" "RunOnceEx.cmd" The first two that are used to create the accounts are working correctly but not the RunOnceEx. It's in the registry but it just doesn't run, so I went ahead and download Windows update since Feb., after restart the RunOnceEx executes correctly...does anyone know why this happens?
-
Why do I have two Administrator folders?
In Document and Settings folder I have two folders named Administrator and Administrator.PC-000 PC-000 is the name of the computer. I can't delete this folder and the folder name stays the same after I renamed my computer to PC-01. Instead of Administrator.PC-01, it's still Administrator.PC-000. When I log in though, it's with the account Administrator, Administrator.PC-000 is not in the user name folder. Is there a way to delete it?
-
Why do my sound cards never get installed?
I just checked and they are in fact, unsigned...which is weird. I downloaded the drivers from Nvidia website which are supposed to be WHQL certified. Either way, I also have: DriverSigningPolicy = Ignore NonDriverSigningPolicy = Ignore ...in my answer file, shouldn't that pretty much take care of any issues with unsigned drivers? This problem always ONLY happens with sound card drivers....
-
Why do my sound cards never get installed?
I've been integrating drivers into my Windows CD. Everything gets installed fine except sound card...does anyone know why? This is the WINNT.SIF file from my latest install (this is for an nForce2 mobo). OemPnPDriversPath="Drivers\000_chipset\agp;Drivers\000_chipset\mem;Drivers\000_chipset\SMbus;Drivers\002_video;Drivers\003_network;Drivers\003_network\PreNRM\WinXP;Drivers\004_audio\audio0;Drivers\004_audio\audio1;Drivers\004_audio\audio2;Drivers\005_printer" The chipset installed fine; video card installed fine, network card installed fine as well as the printer...just not the sound card. In device manager it shows ! besides the name. This is not the first time that's happened too. On my main PC I had this problem too, the X-Fi sound card had a ! next to it in device manager. I always have to reinstall the sound card after Windows installation is complete. What's interesting is that when I install the sound card after Windows installation, I point them to the same folders I use in my answer file. It works in Windows, but not for Windows installation and I don't know why. Can someone help?
-
[Question] Is there an environment variable for "current folder&q
Doh! You're right. I totally forgot about it being implied... Just to make sure though, the variable is "." so it would be ".\notepad.exe" for "'currentfolder'\notepad.exe"?
-
[Question] Is there an environment variable for "current folder&q
This is the batch file I use to replace notepad with notepad2. copy %systemdrive%\notepad.exe %systemroot%\system32\dllcache copy %systemdrive%\notepad.exe %systemroot%\system32\ copy %systemdrive%\notepad.exe %systemroot%\ As you can see, this batch file will not work unless I first copy notepad.exe to the C: drive. I put notepad2 with the batch file, so if I can just have batch file copy notepad.exe from the same folder (I put them together), that would save me a lot of trouble.
-
[HELP] RunOnceEx from CD
Can I use cmdow @ /HID with the alternate method? Like cmdow @ /HID SetLocal enableextensions SET CDROM=%~d0 SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Programs" /f REG ADD %KEY%\005 /VE /D "Adobe Acrobat 7.0.5" /f REG ADD %KEY%\005 /V 1 /D "%CDROM%\switchless\reader705.exe" /f REG ADD %KEY%\010 /VE /D "Microsoft .NET Framework 2.0" /f REG ADD %KEY%\010 /V 1 /D "%CDROM%\switchless\dotnet2.exe" /f EndLocal EXIT I haven't seen how RunOnceEx from CD works out but is cmdow needed?
-
[HELP] RunOnceEx from CD
I just finished reading the "RunOnceEX from CD" and there is something not so clear that I didn't get. ********************************** Alternatively, you can use the following code to set the %CDROM% variable if you wish to not be bothered by the CD.txt file requirements, or the inefficiency of checking every drive for a specific file, used of the previous method. It works by setting the %CDROM% variable to the same drive on which the script resides. In this case, the script being the actual RunOnceEx.cmd file. Just make sure you also include before the EXIT line, to close the extension. Keep in mind, when the extension is closed, the %CDROM% variable will be reset. For consistency, this guide will use the first method, but both are working solutions. ********************************** Where do I put the SetLocal enableextensions? Is this the correct way? cmdow @ /HID @Echo Off 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:\CD.txt SET CDROM=%%i: SetLocal enableextensions SET CDROM=%~d0 SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Programs" /f REG ADD %KEY%\005 /VE /D "Adobe Acrobat 7.0.5" /f REG ADD %KEY%\005 /V 1 /D "%CDROM%\switchless\reader705.exe" /f REG ADD %KEY%\010 /VE /D "Microsoft .NET Framework 2.0" /f REG ADD %KEY%\010 /V 1 /D "%CDROM%\switchless\dotnet2.exe" /f EndLocal EXIT Is this correct? Thanks in advance for any help.
-
[HELP] Creating users using OOBE method
Initially it didn't work but after a bit of searching here I found out it's the hotfix. I did not import KB902942 and KB912945 (not sure which one is the culprit) and OOBE works BUT...I still get the OOBE setup asking 1)if I wanted to enable automatic updates 2)if I wanted to set up internet connection and 3)if I wanted to activate Windows. Is there any way to skip that part also? I do have [Data] AutomaticUpdates = 1 in my answer file but it still asks me if I want to enable autoupdate. Also is there a way to set up password using the OOBE method?
-
[HELP] Quick question about makecab
I just finished reading the addon guide and I'm about to make a cab out of them. I would prefer to use Windows' built-in makecab instead of a 3rd party program, but I can't figure out the command line to include the SVPACK folder. I tried: makecab entries_dvddec.ini + svcpack dvdd.cab but it didn't work...SVCPACK is the problem. Also does it matter if I rename the ini file? e.g. ENTRIES_01.ini Thanks. Edit: BTW, does the install file in SVCPACK has to follow the 8.3 naming rule?
-
[Help] - Putting TweakMCE in Control Panel?
For my custom unattended CD I put tweakui in $$\system32 folder with a reg key to make it display in Control Panel. I would like to put TweakMCE in there too with a reg key for making it appear in Control Panel but I don't know how to do that. I tried editting the TweakUI reg key but after I merge the key, tweakui would disappear from Control Panel. This is the key I used for TweakUI ; Add TweakUI to Control Panel ; ============================ [HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}] @="Tweak UI" "InfoTip"="Advanced customization for Windows" [HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\DefaultIcon] @="%SystemRoot%\\\\System32\\\\tweakui.exe,0" [HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell] [HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell\Open] [HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell\Open\Command] @="tweakui.exe" [HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\ShellFolder] "Attributes"=dword:00000030 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}] @="Add Tweakui to Control Panel" I think the problem is that I didn't change the CLSID, I don't know which one is for MCE though. Please help! Title Edited - Please follow new posting rules from now on. --Zxian
-
How do I make a non-branded MCE DVD?
My Alienware notebook came with a Windows MCE 2005 edition DVD and it's slightly customized. I would like to make it into a non-branded disc like the one you can buy from newegg and then nlite it, the problem is I don't know what files to remove. Well I think the $OEM$ folder should be deleted as well as the winnit.sif file but I don't know what else. Is there a way I can check with a non-branded disc?
-
Clean, Unattended Install with Windows XP Upgrade version?
I haven't made an unattended install CD yet. I just wanna make sure before I do it and reinstall the computer.
-
Clean, Unattended Install with Windows XP Upgrade version?
How do I make an unattended install with Windows XP Upgrade version? Is it possible to skip that or put some Windows 98/ME files on the customized Windows XP CD so it won't ask me to insert my Win98/WinME CD?
-
Can you do regedit /s *.reg ?
I have some reg files I wanna apply to windows at the end of my program installation. I numbered them 001.reg to 005.reg Right now I have: regedit /s %systemdrive%\registry\000.reg regedit /s %systemdrive%\registry\001.reg regedit /s %systemdrive%\registry\002.reg regedit /s %systemdrive%\registry\003.reg regedit /s %systemdrive%\registry\004.reg regedit /s %systemdrive%\registry\005.reg Can I just have one line instead? Like regedit /s %systemdrive%\registry\*.reg I was testing it and it didn't seem to get the second one and on.
-
Need a little help with Steam (keep it from loading at startup)
Could you tell me how to delete a key in command prompt?
-
Need a little help with Steam (keep it from loading at startup)
I ran this command on a pristine Windows (in virtual pc), steam installed fine and the reg file was merged correctly. and this is what I have for steam.reg However after I restarted Windows, steam still loaded. I checked the same key and it was not 0 as I set it to, nor was it 1, but something like 1231245 (some really high value) and steam still loads up startup with that value. How do I fix this? Thanks!
-
Quick question about the answer file WINNT.SIF
I don't know. How would that affect it? Right now I'm creating new ISOs with fewer nLite settings and I'm gonna go from there and see if I can find out what's wrong.
-
Quick question about the answer file WINNT.SIF
Here is is: [Data] AutomaticUpdates = 1 Autopartition = 0 MsDosInitiated = 0 UnattendedInstall = Yes OemDrivers = OemInfFiles [unattended] UnattendMode = ProvideDefault UnattendSwitch = Yes OemPreinstall = Yes OemSkipEula = Yes FileSystem = * WaitForReboot = No NoWaitAfterTextMode = 1 NoWaitAfterGUIMode = 1 DriverSigningPolicy = Ignore NonDriverSigningPolicy = Ignore Hibernation = No [Display] AutoConfirm = 1 BitsPerPel = 32 Xresolution = 1280 Yresolution = 960 Vrefresh = 60 [systemRestore] CheckpointCalendarFrequency = 3 MaximumDataStorePercentOfDisk = 4 RestorePointLife = 14 [GuiUnattended] TimeZone = 04 OEMSkipRegional = 1 OemSkipWelcome = 1 [Components] AccessOpt = Off chat = Off clipbook = Off fax = Off fp_extensions = On freecell = On hearts = Off indexsrv_system = Off media_clips = Off minesweeper = On mousepoint = Off msnexplr = Off pinball = Off rec = Off solitaire = On spider = Off zonegames = Off [userData] ProductKey = "Product Key" ComputerName = COMPUTER-1 FullName = "LazyBoy" OrgName = "None" [RegionalSettings] Language = 0409 LanguageGroup = 7,10,9,1 [Networking] InstallDefaultComponents = Yes [identification] JoinWorkgroup = HOME [branding] BrandIEUsingUnattended = Yes Home_Page = http://www.google.com/ig Quick_Link_1_Name = "Ultimate Unattended XP CD" Quick_Link_1 = http://unattended.msfn.org/://http://www.google.com/ig Quick_...ended.msfn.org/ [iEPopupBlocker] BlockPopups = Yes FilterLevel=Low ShowInformationBar=Yes [OemInfFiles] OemDriverFlags = 1 OemDriverPathName = "%SystemRoot%\nldrv" OemInfName = "yk51x86.inf","oemhl01a.inf","2005fpw.inf","neta3ab.inf","nv4disp2.inf","nv4_disp.inf","lvpro2c.inf","lvpro2s.inf","lvpro2v.inf","e1000325.inf","inibtmgr.inf","c2_26409.inf","cx_26409.inf"
-
Quick question about the answer file WINNT.SIF
Yeah...just tried it again and it didn't work. I followed the WXPSP2 Deployment Tool Help File and had this: [Components] AccessOpt = Off chat = Off clipbook = Off fax = Off fp_extensions = On freecell = On hearts = Off indexsrv_system = Off media_clips = Off minesweeper = On mousepoint = Off msnexplr = Off pinball = Off rec = Off solitaire = On spider = Off zonegames = Off None of those were removed as far as I'm concerned. I used nLite RC1 to remove Components MSN Explorer and Windows Messenger and I THINK by doing that it disabled the [Components] answers in WINNT.SIF file. Just a wild guess because I'm new to creating a customized Windows CD and really don't know what's wrong. :/
-
Quick question about the answer file WINNT.SIF
Are these different from each other? Example FullName="LazyBoy" FullName=LazyBoy FullName = LazyBoy FullName = "LazyBoy" Example 2 TargetPath="\Windows" TargetPath=\Windows TargetPath = "\Windows" TargetPath = \Windows I tested my answer file that had some compnents turned off. I used (e.g.) hearts = off and it still installed, so that raised my question about the answer file.
-
Where can I download tweakui.msi?
Ok, I have a book here that teaches about unattended setup and it says to create $OEM$/$1 to do silent install of 3rd party programs during Windows setup Does my folder structure make any sense though? Edit: NM, got it from the guide here at MSFN? Thanks!
-
Where can I download tweakui.msi?
I have $OEM$/$1 instead of $OEM$/$$, does that mean I put the .exe in $OEM$/$1/system32 ?
-
Where can I download tweakui.msi?
The one I got from MS website doesn't work with any switch. I heard there is a msi version of it but I couldn't google one. Thanks for the help ^^