bazer Posted August 4, 2005 Share Posted August 4, 2005 (edited) I am trying to to install a new theme on my unattened install it loads but it shows up as in Pic1 yet it should look like Pic2 Can anyone help ??I have added this line to WINNT.SIF[shell]CustomDefaultThemeFile = "%systemdrive%\Resources\Themes\Theme.msstyles"I have put the file on the cd in this folder\$OEM$\$$\Resources\ThemesAnd allso in this folder when the above didnt work\$OEM$\$1\Program Files\Plus!\ThemesNow it is in both folders and still dont work correctly Can any one help PLEASE ????Allso while im hear can anyone answer me thisWhy isnt my registry crack being entered into the registry here is how i did this@echo offTITLE Installing Updates And Applications.ECHO Installing Updates Now!!start /wait %systemdrive%\Install\Netframe\Net1.exe copy %systemdrive%\Extras\System\*.* %systemdrive%\windows\system32\*.* /YclsECHO Installing Updatesstart /wait %systemdrive%\Extras\Update.exe /Qstart /wait %systemdrive%\Install\Journal\Viewer.msi /Quietstart /wait %systemdrive%\Install\JVM\JVM\javatrig.exe /Q start /wait %systemdrive%\Install\JVM\JVM-Update\javatrig.exe /Qstart /wait %systemdrive%\Extras\Net3.exe /Qstart /wait %systemdrive%\Extras\Net2.exe /QECHO Installing Messenger 7start /wait %systemdrive%\Install\Messenger7\MsnMsgs.msi /QUIETstart /wait %systemdrive%\Install\Dll\dll.exe /S /QEcho Installing Media Player 10start /wait %systemdrive%\Install\Media\Media.exe /Qstart /wait %systemdrive%\Install\Bit\Bit.exe /S /D="C:\Bittorrent"ECHO Installing Nero Burning Romstart /wait %systemdrive%\Install\Nero\Nero66015.exe /silent /sn=****-****-****-****-****-**** /write_sn /no_ui /norebootstart /wait %systemdrive%\Install\Nero-Ex\Express.exe /silent /sn=****-****-****-****-****-****/write_sn /no_ui /norebootECHO Installing Norton Antivirusstart /wait %systemdrive%\Install\Norton\Setup.msi /QNECHO Installing Winzip 9start /wait %systemdrive%\Install\Winzip\Setup.exeECHO Installing Google Toolbarstart /wait %systemdrive%\Install\Google\Setup.exe /s /qnECHO Installing Adawarestart /wait %systemdrive%\Install\ADware\Setup.exe /SILENTECHO Installing Winrarstart /wait %systemdrive%\Install\Winrar\Setup.exe /S /Q /QN /SILENTstart /wait %systemdrive%\Install\Par\Setup.exe /S ECHO Installing Clone-CDstart /wait %systemdrive%\Install\CloneCD\Setup.exe /SECHO Installing Cucusoft Pro 6.15start /wait %systemdrive%\Install\Cucusoft\Setup.exe /SILENT /VERYSILENT /D="C:\Cucusoft"ECHO Installing Xvid Codec'sstart /wait %systemdrive%\Install\Xvid\Setup.exe /SILENT /VERYSILENT /D="C:\Xvid"Installing Alcohol120%start /wait %systemdrive%\Install\Alcohol\Setup.msi /qn REBOOT=REALLYSUPPRESSECHO Cleaning Up Now...REGEDIT /S %systemdrive%\install\crack.regREGEDIT /S %systemdrive%\install\reg.regECHO FinishedDEL %systemdrive%\Documents and Settings\All Users\Start Menu\Uninstall.lnkRD %systemdrive%\Install /S /QRD %systemdrive%\Extras /S /QEXITThat text is in a file called Install.cmd and is in this folder\$OEM$\$1\InstallThe registry cracks are in the same folder all the progs run but the cracks dont ?? Can Anyone help with this aswell please ??Thank's in advance. Edited August 5, 2005 by bazer Link to comment Share on other sites More sharing options...
Shark007 Posted August 4, 2005 Share Posted August 4, 2005 (edited) [shell]CustomDefaultThemeFile = "%systemdrive%\Resources\Themes\Theme.msstyles"Try changing %systemdrive% to %windir%ALSO: ...\Resources\Themes\Theme.msstyles , should point to a*.theme file , although *.msstyles may work to set a style, I've never tried that.%systemdrive% = the drive where windows is installed. eg. C:\%windir% = the \windows folder eg. C:\WindowsShark Edited August 4, 2005 by Shark007 Link to comment Share on other sites More sharing options...
bazer Posted August 4, 2005 Author Share Posted August 4, 2005 Shark007Thank's for the relpy but it didnt work any more suggestions ?? Link to comment Share on other sites More sharing options...
Godfatha Posted August 4, 2005 Share Posted August 4, 2005 configure your theme stuff, save it (so far u had been) and place your theme and styles here: \$oem$\$$\Resources\Themes (just modify the first part of the path)then open your winnt.sif and put that line there: [Shell] CustomDefaultThemeFile = "%SystemRoot%\Resources\Themes\Theme.theme"it gotta be *.theme instead of styles and systemroot is the "windir"I dunno about your registry stuff, but u COULD place a file called "cmdlines.txt" in your $OEM$ folder that looks like that:[COMMANDS]"registry.cmd"and u create a file called "registry.cmd" in ur $OEM$ folder looking like that:@echo offREGEDIT /S crack.regREGEDIT /S reg.regEXITand last but not least u place your crack.reg and reg.reg in your $OEM$ folder, give that a try, this is how i do my setup.-T Link to comment Share on other sites More sharing options...
Achdine Posted August 4, 2005 Share Posted August 4, 2005 Firstly, please edit out your Nero serial number from your first post.As was mentioned, the theme has to be a .theme file. More info about creating that .theme file is in the Guide.Also, I noticed you have this line in your batch file: copy %systemdrive%\Extras\System\*.* %systemdrive%\windows\system32\*.* /Y You can achieve the same end by placing those files in $OEM$\$$\System32\ on your CD, and that way you don't have to copy twice and then delete. Also, the %SystemDrive%\Windows part is better written as just %WinDir%. You can see the other variables by typing "Set" at the command prompt.Finally, about the registry files. Firstly, I would not run them from CmdLines.txt as Godfatha suggests, because the programs haven't been installed yet. Depending on the data in the registry files, it may get overwritten when the program installs.What I would do is make sure that they are valid registry files (can you merge them by double-clicking? Remember they need the "Windows Registry Editor Version 5.00" or "RegEdit4" as the first line). You could also consider adding the lines from the batch file itself, instead of calling external files. Read the "Reg /?" and "Reg Add /?" helpfiles to figure out how to do this.Beyond that, I'm not sure what to tell you. We may need to see the contents of the registry files if you can't get them working (remember to use CODE tags this time, please). Link to comment Share on other sites More sharing options...
bazer Posted August 5, 2005 Author Share Posted August 5, 2005 Ok guy's Thanks to your help i got the registry cracks working but still have a problem with the theme i have tried what you said but still no joy and i have tried it with a different theme this the theme is called .theme and not .msstyle anymore help would be apprecated. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now