
I didn't answer because I don't know for sure (I use Vista now for my Media Center). AFAIK, there are no other MCE addon packs other than what you've found here, but that doesn't mean there aren't more MCE updates, necessarily.
I gave you my EXACT process from start to finish... what more do you need to know? We have told how, what updates are necessary... I'm kind of lost at what you are waiting for now???ace_neo wrote:Thanks roirraW "edor".
Ok r there any updates for MCE after this ?
Can u list which updates and addon packs of MCE are needed to complete entire integration?
Give links where ever possible plz..
u sure thoses 2 can be run at t13????benjamminzIS wrote:ace, again you didn't listen to me...
I told you that I placed the kb900325 & kb925766 hotfix exes in SVCPACK and ran them with /quiet /norestart /noupdate switches... this is how I have gotten it to work...
ok, so you didn't end up using a3 rollup2 addon?ace_neo wrote:benjamminzIS check out media center version in that it is shown whether u have update rollup pack 2 installed or not.
To check version, go to media center-->setting-->software version..
To install update rollup pack 2, integrate hotfixes directly using nilte after MCE installer addon. By doing so update rollup 2 gets install properly.
I'm confused. I have a version of this installed and when I run Media Center and click settings I don't have "software version" as an option, nor can I find this info under General or anywhere else. Running Microsoft Update and checking my "installed updates" doesn't show anything since MCE was slipstreamed. Belarc Advisor, http://www.belarc.com/free_download.html does correctly indicate my system as Windows XP Media Center Edition Service Pack 3 (build 2600), but the only KB it shows installed for MCE is KB900325 (rollup 2) which it lists as SP4. And both Belarc and MS update say all appropriate updates have been applied and nothing else is needed. So I guess I'm all set, but how do I "prove it"?ace_neo wrote:To check version, go to media center-->setting-->software version..
I assume now that what you mean is the version tab of the Properties of C:\WINDOWS\ehome\ehshell.exe? If so, then you were right. Even though Belarc Advisor correctly identifies my system as Media Center SP4 and that Rollup 2 was applied, the software version was not right. After applying KB925766, it was still SP4, but now the version number was 5.1.2715.3011 and both KB925766 and KB900325 show up as installed in Belarc. But neither now nor earlier did either KB ever show up as installed in MS MU, even though they were both slipstreamed/nLited in using the instructions earlier in this topic, nor did either KB, or any other KB ever show up as needing to be installed in MU.ace_neo wrote:tab in mce software that shows software version.
...
Your MCE software build should be 5.1.2715.3011.(Media Center No. 4)
I think it's Settings and About. I think it was the very last option in the Settings menu.bphlpt wrote:I'm confused. I have a version of this installed and when I run Media Center and click settings I don't have "software version" as an option, nor can I find this info under General or anywhere else.ace_neo wrote:To check version, go to media center-->setting-->software version..
FYI, I haven't fooled with these MCE addons but otherwise I've used nLite successfully for everything except that I use WMP11 Slipstreamer of course.bphlpt wrote:And now, does anybody have a confirmed method of setting up an unattended install disc with XPSP3, any other necessary KB's, MCE, WMP11, IE7, Dot Net, DP's and all other appropriate addons/switchless installers
What lines do i need to remove? I want a custom theme + wallpaper also!searchengine wrote:I use this MCE addon (I unpack and alter "medctroc" inf to remove all references to Theme files...and mcbliss) only so that I can choose my own default theme by oem folder and nlite.
; Symphony General registry settings.
;
[eHome_Reg]
HKLM, "Software\Microsoft\Windows\CurrentVersion\Media Center", "MCBliss", 0x00020000, "%10%\Resources\Themes\Royale\%MCBliss%"
HKLM, "Software\Microsoft\Windows\CurrentVersion\Policies\System", "InstallVisualStyle", 0x00020000, ""%10%\Resources\Themes\Royale\Royale.msstyles"
HKLM, "Software\Microsoft\Windows\CurrentVersion\Policies\System", "InstallTheme", 0x00020000, "%10%\Resources\Themes\Royale.theme"
HKLM, "SOFTWARE\Microsoft\Active Setup\Installed Components\{2C7339CF-2B09-4501-B3F3-F3508C9228ED}","Version", 0, "1,1,1,8"
HKU, ".DEFAULT\Software\Microsoft\windows\CurrentVersion\ThemeManager", "DllName", 0x00020000, "%windir%\Resources\themes\royale\royale.msstyles"
MrNxDmX wrote:
@ Raoul90, you need to change these files from related hotfixes:
encdec.dll --> KB925766
mpg2data.ax --> KB900325
MSVIDCTL.DLL --> KB925766
QUARTZ.DLL --> KB927544
sbe.dll --> KB925766
vbicodec.ax --> KB900325
WSTPAGER.AX --> KB900325
wstrendr.ax --> KB900325
Also these 3 cat files: KB900325.cat, KB925766.cat, KB927544
I wish I could help you there!
Code: Select all
@ECHO OFF
TITLE Integrating SP2 and SP3 over SP0
MODE CON COLS=35 LINES=3
SET DT=%DATE%_%TIME%
SET LOGSTAMP=%DATE:/=_%_%TIME:~0,8%
SET LOGSTAMP=%LOGSTAMP::=_%
SET LOGSTAMP=%LOGSTAMP: =0%
SET LOG=INTEGRATE_SP3_%LOGSTAMP%.LOG
SET D1=E:
SET F1=%D1%\INTEGRATE
SET F2=%F1%\XPUA
SET F3=%F2%\I386
SET F4=%F3%\ASMS
IF EXIST "%F2%\WIN51IP.SP3" GOTO :ALREADYINTEGRATED
REM 0 = Black 8 = Gray
REM 1 = Blue 9 = Light Blue
REM 2 = Green A = Light Green
REM 3 = Aqua B = Light Aqua
REM 4 = Red C = Light Red
REM 5 = Purple D = Light Purple
REM 6 = Yellow E = Light Yellow
REM 7 = White F = Bright White
:INTEGRATEANYWAY
COLOR 1B
ECHO BEGINNING INTEGRATION ON %DT%
ECHO BEGINNING INTEGRATION ON %DT% >>%LOG%
ECHO Integrating SP2 over SP0 now...
ECHO Integrating SP2 over SP0 now... >>%LOG%
sp2 /integrate:%F2%
CLS
COLOR A0
ECHO Integrating SP3 over SP2 now...
ECHO Integrating SP3 over SP2 now... >>%LOG%
sp3 /integrate:%F2%
CLS
COLOR 8C
MODE CON COLS=85
ECHO NOW REMOVING, IF EXIST, FILES OBSOLETE OR RELATED TO SP2 ONLY...
ECHO NOW REMOVING, IF EXIST, FILES OBSOLETE OR RELATED TO SP2 ONLY... >>%LOG%
ECHO IF EXIST, REMOVING DIRECTORY %F2%\docs >>%LOG%
ECHO IF EXIST, REMOVING DIRECTORY %F2%\dotnetfx >>%LOG%
ECHO IF EXIST, REMOVING DIRECTORY %F2%\support >>%LOG%
ECHO IF EXIST, REMOVING DIRECTORY %F2%\valueadd >>%LOG%
ECHO IF EXIST, REMOVING DIRECTORY %F2%\dotnetfx >>%LOG%
ECHO IF EXIST, DELETING FILE %F2%\WIN51IP.SP2 >>%LOG%
ECHO IF EXIST, DELETING FILE %F3%\PLUGIN.OC_ >>%LOG%
ECHO IF EXIST, DELETING FILE %F3%\SP2.CAB >>%LOG%
ECHO IF EXIST, DELETING FILE %F3%\SP2.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\70\POLICY\MSFT\MSWINCRT\MSWINCRT.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\70\MSFT\WINDOWS\MSWINCRT\MSVCIRT.DLL >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\70\MSFT\WINDOWS\MSWINCRT\MSVCRT.DLL >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\70\MSFT\WINDOWS\MSWINCRT\MSWINCRT.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\60\POLICY\60\COMCTL\COMCTL.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\60\MSFT\WINDOWS\COMMON\CONTROLS\COMCTL32.DLL >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\60\MSFT\WINDOWS\COMMON\CONTROLS\CONTROLS.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\POLICY\MSFT\WINDOWS\NETWORKING\RTCDLL\RTCDLL.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\POLICY\MSFT\WINDOWS\NETWORKING\DXMRTP\DXMRTP.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\MSFT\WINDOWS\NET\RTCRES\RTCRES.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\MSFT\WINDOWS\NET\RTCRES\RTCRES.DLL >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\MSFT\WINDOWS\NET\RTCDLL\RTCDLL.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\MSFT\WINDOWS\NET\RTCDLL\RTCDLL.DLL >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\MSFT\WINDOWS\NET\DXMRTP\DXMRTP.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\52\MSFT\WINDOWS\NET\DXMRTP\DXMRTP.DLL >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\2\DEFAULT\DEFAULT.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\10\POLICY\MSFT\WINDOWS\GDIPLUS\GDIPLUS.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\10\MSFT\WINDOWS\GDIPLUS\GDIPLUS.CAT >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\10\MSFT\WINDOWS\GDIPLUS\GDIPLUS.DLL >>%LOG%
ECHO IF EXIST, DELETING FILE %F4%\1\DEFAULT\DEFAULT.CAT >>%LOG%
IF EXIST "%F2%\docs" rmdir /s /q %F2%\docs
IF EXIST "%F2%\dotnetfx" rmdir /s /q %F2%\dotnetfx
IF EXIST "%F2%\support" rmdir /s /q %F2%\support
IF EXIST "%F2%\valueadd" rmdir /s /q %F2%\valueadd
IF EXIST "%F2%\WIN51IP.SP2" del /q /f %F2%\WIN51IP.SP2
IF EXIST "%F3%\PLUGIN.OC_" del /q /f %F3%\PLUGIN.OC_
IF EXIST "%F3%\SP2.CAB" del /q /f %F3%\SP2.CAB
IF EXIST "%F3%\SP2.CAT" del /q /f %F3%\SP2.CAT
IF EXIST "%F4%\70\POLICY\MSFT\MSWINCRT\MSWINCRT.CA_" del /q /f %F4%\70\POLICY\MSFT\MSWINCRT\MSWINCRT.CA_
IF EXIST "%F4%\70\MSFT\WINDOWS\MSWINCRT\MSVCIRT.DL_" del /q /f %F4%\70\MSFT\WINDOWS\MSWINCRT\MSVCIRT.DL_
IF EXIST "%F4%\70\MSFT\WINDOWS\MSWINCRT\MSVCRT.DL_" del /q /f %F4%\70\MSFT\WINDOWS\MSWINCRT\MSVCRT.DL_
IF EXIST "%F4%\70\MSFT\WINDOWS\MSWINCRT\MSWINCRT.CA_" del /q /f %F4%\70\MSFT\WINDOWS\MSWINCRT\MSWINCRT.CA_
IF EXIST "%F4%\60\POLICY\60\COMCTL\COMCTL.CA_" del /q /f %F4%\60\POLICY\60\COMCTL\COMCTL.CA_
IF EXIST "%F4%\60\MSFT\WINDOWS\COMMON\CONTROLS\COMCTL32.DL_" del /q /f %F4%\60\MSFT\WINDOWS\COMMON\CONTROLS\COMCTL32.DL_
IF EXIST "%F4%\60\MSFT\WINDOWS\COMMON\CONTROLS\CONTROLS.CA_" del /q /f %F4%\60\MSFT\WINDOWS\COMMON\CONTROLS\CONTROLS.CA_
IF EXIST "%F4%\52\POLICY\MSFT\WINDOWS\NETWORKING\RTCDLL\RTCDLL.CA_" del /q /f %F4%\52\POLICY\MSFT\WINDOWS\NETWORKING\RTCDLL\RTCDLL.CA_
IF EXIST "%F4%\52\POLICY\MSFT\WINDOWS\NETWORKING\DXMRTP\DXMRTP.CA_" del /q /f %F4%\52\POLICY\MSFT\WINDOWS\NETWORKING\DXMRTP\DXMRTP.CA_
IF EXIST "%F4%\52\MSFT\WINDOWS\NET\RTCRES\RTCRES.CA_" del /q /f %F4%\52\MSFT\WINDOWS\NET\RTCRES\RTCRES.CA_
IF EXIST "%F4%\52\MSFT\WINDOWS\NET\RTCRES\RTCRES.DL_" del /q /f %F4%\52\MSFT\WINDOWS\NET\RTCRES\RTCRES.DL_
IF EXIST "%F4%\52\MSFT\WINDOWS\NET\RTCDLL\RTCDLL.CA_" del /q /f %F4%\52\MSFT\WINDOWS\NET\RTCDLL\RTCDLL.CA_
IF EXIST "%F4%\52\MSFT\WINDOWS\NET\RTCDLL\RTCDLL.DL_" del /q /f %F4%\52\MSFT\WINDOWS\NET\RTCDLL\RTCDLL.DL_
IF EXIST "%F4%\52\MSFT\WINDOWS\NET\DXMRTP\DXMRTP.CA_" del /q /f %F4%\52\MSFT\WINDOWS\NET\DXMRTP\DXMRTP.CA_
IF EXIST "%F4%\52\MSFT\WINDOWS\NET\DXMRTP\DXMRTP.DL_" del /q /f %F4%\52\MSFT\WINDOWS\NET\DXMRTP\DXMRTP.DL_
IF EXIST "%F4%\2\DEFAULT\DEFAULT.CA_" del /q /f %F4%\2\DEFAULT\DEFAULT.CA_
IF EXIST "%F4%\10\POLICY\MSFT\WINDOWS\GDIPLUS\GDIPLUS.CA_" del /q /f %F4%\10\POLICY\MSFT\WINDOWS\GDIPLUS\GDIPLUS.CA_
IF EXIST "%F4%\10\MSFT\WINDOWS\GDIPLUS\GDIPLUS.CA_" del /q /f %F4%\10\MSFT\WINDOWS\GDIPLUS\GDIPLUS.CA_
IF EXIST "%F4%\10\MSFT\WINDOWS\GDIPLUS\GDIPLUS.DL_" del /q /f %F4%\10\MSFT\WINDOWS\GDIPLUS\GDIPLUS.DL_
IF EXIST "%F4%\1\DEFAULT\DEFAULT.CA_" del /q /f %F4%\1\DEFAULT\DEFAULT.CA_
ECHO DONE INTEGRATING ON %DT%...
ECHO DONE INTEGRATING ON %DT%... >>%LOG%
PAUSE
EXIT
:ALREADYINTEGRATED
ECHO THIS SOURCE HAS ALREADY BEEN UPDATED TO SP3!!!
ECHO THIS SOURCE HAS ALREADY BEEN UPDATED TO SP3!!! >>%LOG%
PAUSE
Code: Select all
[Main]
Env = 1.4.5 - 2.0.50727.832.Microsoft Windows NT 5.1.2600 Service Pack 2
Target = Windows XP Professional SP3 - 5.1.2600.5512 - English (United States)
[Tasks]
Remove Components
Unattended Setup
Integrate Drivers
Hotfixes and Update Packs
Tweaks
Create a Bootable ISO
Options
[Components]
;# Applications #
Accessibility Options
Briefcase
Calculator
ClipBook Viewer
Pinball
WordPad
;# Drivers #
Cameras and Camcorders
Display Adapters
Display Adapters (old)
Ethernet (LAN)
IBM PS/2 TrackPoint
IBM ThinkPad
ISDN
Logitech WingMan
Microsoft SideWinder
Modems
Multifunctional
Portable Audio
Scanners
Sony Jog Dial
Sound Controllers
Tape drives
Toshiba DVD decoder card
Wireless Ethernet (WLAN)
;# Hardware Support #
Brother Devices
Gravis Digital GamePort
Iomega Zip drive
Multi-port serial adapters
;# Keyboards #
...snip...
;# Languages #
...snip...
;# Multimedia #
AOL ART Image Format Support
DirectX diagnostic tool
Images and Backgrounds
Intel Indeo codecs
Mouse Cursors
Music Samples
Old CDPlayer and Sound Recorder
Speech Support
;# Network #
Client for Netware Networks
Communication tools
FrontPage Extensions
Internet Connection Wizard
Internet Information Services (IIS)
MSN Explorer
Netmeeting
Web Folders
Windows Messenger
;# Operating System Options #
Color Schemes
Document Templates
File and Settings Wizard
File System Encryption
Help and Support
IExpress Wizard
Input Method Editor
Manual Install and Upgrade
MS XML 2.0
Search Assistant
Security Center
Service Pack Messages
Tour
Web View
Zip Folders
;# Services #
Beep Driver
Indexing Service
Messenger
Telnet
;# Compatibility #
Compat01
Compat02
Compat03
Compat04
Compat11
Compat13
Compat14
Compat15
[KeepFiles]
msconfig.exe
telnet.exe
[RemoveFiles]
clock.avi
yahoo.bmp
swtchbrd.bmp
[Options]
CABNoHigh
ClassicSetup
BlackSetupBack
DisableFreereq
DisableMinMem
OemBranding
ProfilesDir = "%SystemDrive%\profilez"
TargetPath = "windowz"
temp_dir = %SystemDrive%\xptemp
RemoveMUI
CleanBiosInfo
AdvTweaks
NoISOPreset
[Patches]
TcpIp = 15000
DoUxTheme
DoSFC
[Services2]
StiSvc,3
TermService,3
RDSessMgr,3
RSVP,4
WebClient,4
WmdmPmSN,3
RemoteRegistry,4
ScardSvr,4
TapiSrv,3
RasAuto,3
RasMan,3
[Tweaks]
Boot and Shutdown-Disable automatic restart on System Failure
Boot and Shutdown-Logon Page-Welcome screen
Boot and Shutdown-Numlock-On
Boot and Shutdown-Setup Prefetch-Cache-Disabled
Boot and Shutdown-Show Administrator on the Welcome Screen
Boot and Shutdown-Status Messages-Extended
Desktop-Internet Explorer icon-Hide
Desktop-My Computer icon-Show
Desktop-My Documents icon-Hide
Desktop-My Network Places icon-Hide
Desktop-Recycle Bin icon-Show
Desktop-Wrap icon titles-Enable
Explorer-Advanced Search: preconfigure options
Explorer-Associate additional file types with Notepad
Explorer-Change Windows Explorer folder view-Details
Explorer-Classic Control Panel
Explorer-Disable Autorun
Explorer-Disable Beep on errors
Explorer-Disable Prefix: Shortcut to
Explorer-Disable shortcut arrow
Explorer-Disable Web Files and Folders connection
Explorer-Display the contents of system folders
Explorer-Preset Places Bar to-My Computer, C:, D:, E:, F:
Explorer-Recycle Bin: allow to rename and delete
Explorer-Restore previous folder windows at logon
Explorer-Show Drive Letters in front of Drive Names
Explorer-Show extensions of known file-types
Explorer-Show hidden files and folders
Explorer-Show Map Network Drives buttons in Explorer bar
Explorer-Show protected operating system files
Explorer-Show Statusbar in all windows
Explorer-Show the full path in the Address Bar
Explorer-Show the full path in the Title Bar
Explorer-Use small icons in Explorer bar
Internet Explorer-Disable Download Complete notification
Internet Explorer-Disable Go Button
Internet Explorer-Disable Market Place bookmark
Internet Explorer-Disable Media Player 6.4 created bookmarks
Internet Explorer-Disable Outlook Express link creation
Internet Explorer-Disable Password-Caching
Internet Explorer-Disable sound when popup is blocked
Internet Explorer-Enable Google URL-Search
Internet Explorer-Keep IE URL-History for-20 Days (default)
Internet Explorer-Set Homepage-www.google.com
Internet Explorer-Set IE-Cache limit to-20 MB
Internet Explorer-Set Internet Explorer to accept 10 connects at a time
Internet Explorer-Set popup-blocker to high
My Computer-Add Administrative Tools
My Computer-Add Control Panel
My Computer-Add Control Panel to Context Menu
My Computer-Add Device Manager to Context Menu
My Computer-Add Drive Cleanup to Context Menu
My Computer-Add Event Viewer to Context Menu
My Computer-Add Folder Options
My Computer-Add Fonts Folder
My Computer-Add My Network Places
My Computer-Add Network Connections
My Computer-Add Printers and Faxes
My Computer-Add Recycle Bin
My Computer-Add Registry Editor to Context Menu
My Computer-Add Scheduled Tasks
My Computer-Add Services to Context Menu
My Computer-Add Software to Context Menu
My Computer-Add Taskbar Settings
My Computer-Remove Shared Documents
Network-Disable automatic search for network folders and printers
Network-Disable restoring mapped network drives on logon
Network-Disable Simple File Sharing
Network-Remote Desktop-Enable
Network-Remove remote-computer NameSpace
Performance-Disable Last accessed Timestamp on files
Performance-Disable Optimize harddisk when idle
Performance-Disable Tracking of Broken Shortcut Links
Performance-Disable Warn on low disk space
Performance-Do not cache thumbnails
Performance-Processor scheduling-Background services
Performance-Run 16-bit Windows applications in a separate process
Performance-Use Windows classic folders / No Tasks Sidepanel
Privacy-Disable Driver Update Internet prompt
Privacy-Disable Error Reporting
Privacy-Remove Alexa
Security-Always show Updates under Software
Start Menu-Add Administrative Tools menu
Start Menu-Control Panel-Display as a menu
Start Menu-Disable Highlight newly installed programs
Start Menu-Do not use Personalized Menus
Start Menu-Expand Network Connections
Start Menu-My Computer-Display as a menu
Start Menu-My Documents-Display as a menu
Start Menu-My Music-Don't display this item
Start Menu-My Network Places-Display as a menu
Start Menu-My Pictures-Don't display this item
Start Menu-Network Connections-Display as Connect to menu
Start Menu-Number of programs on Start menu-10
Start Menu-Printers and Faxes-Display as a menu
Start Menu-Reduce popup delay
Start Menu-Remove Pinned Apps List from Start Panel
Start Menu-Remove Search For People from Search
Start Menu-Remove Search the Internet from Search
Start Menu-Remove Set Program Access and Defaults
Start Menu-Remove Windows Catalog shortcut
Start Menu-Scroll Programs
Start Menu-Use small icons in Start Panel
Taskbar-Disable Balloon Tips
Taskbar-Disable Hide inactive icons
Taskbar-Disable Language-Bar
Taskbar-Hide Volume Control Icon in System Tray
Taskbar-Lock the Taskbar-No
Visual Effects-Active window tracking-Disable
Visual Effects-Animate windows when minimizing and maximizing-Disable
Visual Effects-Combo box animation-Disable
Visual Effects-Cursor shadow-Enable
Visual Effects-Display mouse pointer trails-Disable
Visual Effects-Fade out selection-Disable
Visual Effects-Gradient captions in windows-Enable
Visual Effects-Keyboard shortcut underline-Enable
Visual Effects-Menu animation-Disable
Visual Effects-Menu shadows-Disable
Visual Effects-Show window contents while dragging-Disable
Visual Effects-Slide taskbar buttons-Disable
Visual Effects-Smooth-scroll list boxes-Disable
Visual Effects-Tooltip animation-Disable
Visual Effects-Use a background image for each folder type-Disable
Visual Effects-Use drop shadows for icon labels on the desktop-Disable
Windows Media Player-Accept Privacy Statement
Windows Media Player-Disable automatic codec download
Windows Media Player-Disable automatic saving of DRM-type music files
Windows Media Player-Disable license backup prompt
Windows Media Player-Disable metadata retrieval
Windows Media Player-Disable MRU
Windows Media Player-Disable scripting commands
Windows Media Player-Enhanced privacy settings
Windows Media Player-Optimize fullscreen mode behavior
Windows Media Player-Remove all context menu entries
[Unattended]
UnattendMode = 1
ComputerType = ACPI Multiprocessor PC
AutoLogon = Administrator
FirewallOff
OOBEOff
Resolution = 1440x900
BitsPerPel = 32 bit (True Color)
Vrefresh = 75 Hz
MaximumDataStorePercentOfDisk = 10
RestorePointLife = 30
DesktopTheme = Default||
AutoUpdates = 4
AutoUDay = 5
AutoUHour = 15
DoProgFiles
ProgFilesPath = "\programz"
CustomNetwork
[NetAdapter1]
connname = "homeNet"
macaddress = "0014853a3476"
ipaddress = "10.10.10.11"
subnetmask = "255.255.255.0"
defaultgateway = "10.10.10.10"
dnsserver1 = "10.10.10.10"
dnsserver2 = "204.57.55.100"
winsserver = ""
netbiossetting = "0"
ipxnetworknumber = "00000000"
ipxnetworkframetype = "0xFF"
[GuiRunOnce]
[Drivers]
...snip...
[Hotfixes]
HotfixingReports
ASMSCompress
ENU_AddOns_SpeedUp_1.3.zip
RED_XP_SP3_UpdatePack_2.1.0.7z
DirectX_9.0c_End-User_Runtime_AddOn_0.3.4_-_redxii.7z
5er_KB893056_SP3_Addon.7z
NR_MCE_INSTALLER_ADDON_B2.CAB [mce themes stripped out of mediactr.cab]
KB900325.exe [untouched from MU]
KB925766.exe [untouched from MU]
xable_Sysinternals-Utilities-AIO-v1.4_addon.cab
REAPERS_IP_CONFIGURATION_MANAGER_2.7.2.80_CPL_ADDON.CAB
RICKS_VISTASYSTEMPROPERTIES1.8_ADDON_70805.CAB
GORKI_ADDON_JKDEFRAGGUI_040208.CAB
Kels_CPLBonus_addon_v8.2.3.CAB
Kels_Uber_Addon_v12.3.CAB
Kels_NotePad++_v4.9.2_addon.cab [edited for context menu entry for any files to be able to be opened with right click via notepad++]
RVMADDONS_1.8.4.CAB
DriveSpace_v5.0.0.22_AddOn.cab
BENJAMMINZ_UTORRENT_ADDON.CAB [based on ricks, less the gadget and with an autoit script so that it automatically runs it once and sets the port for me]
Gorki_AddOn_RegTweakage.NET_0.2b_0.1.cab
odyn1982_AudioUtilities_Addon_v2.5.cab
RICKTENDO64_NLITE1.4.5PLUS_ADDON.CAB
DIRPRINT_ADDON.CAB
Kels_YzApps_v1_addon.CAB
NR_VGAMESAIO_ADDON_V1.3.CAB
REAPERS_BOWLING_EVOLUTION_1.07A_ADDON.CAB
BENJAMMINZIS_GAMEZ_ADDON.CAB [some of ms. peels games and some otherones that I lost the original addon files for and can't download anymore so I just made my own entries file]
benjamminz_SVCPACK_addon.7z [to add some misc. svcpack addons, see SVCPACK.INF below.]
OnePiece_IE7AddOn_2.1.1_ENU.7z
DOUG_IETWEAK_ADDON_V1.0.CAB
xable_OUE-OGA-v1.7_addon.cab
xable_WGAN-v1.2_addon.cab
Gorki_Theme_AgraphiteII_250408.cab
Gorki_Theme_HumanFW_0.1.cab
Gorki_Theme_IllumeCG_070208.cab
Gorki_Theme_Stolen16_21107.cab
Gorki_Theme_VistyV2_0.1.cab
NR_CursorsAIO_Addon_1.9.rar
RICKTENDO64_LUNAROYALCLOCK_ADDON_V1.6B2.CAB
Ricks_LunaRoyaleOrb_AddOn_v3.2.rar
Ricks_UbuntuHumanCursors_AddOn.rar
BENJAMMINZIS_MEGATHEME_ADDON.7z [I just consolidated a bunch of AIO themepacks into my own personal megapack]
Code: Select all
[SetupHotfixesToRun]
0_dotNET11SP1.exe
0_dotNET10SP3.exe
NR_IT.exe
kb900325.exe /q /n /z /o
kb925766.exe /q /n /z /o
0_ROGUESPEARSRUNTIMES.EXE
SPTD_156.exe add /q
MOZILLASUITE.EXE
FL_OP_PLAYER.EXE /S
VMWARETOOLS.EXE
VISTASOUNDS.EXE
SEGOEUI.EXE
WPIR.BAT
Code: Select all
[Shell]
CustomDefaultThemeFile = "%WinDir%\Resources\Themes\Default.theme"
and againmuiz wrote:I used the addon on a Dutch XP PRO SP3 (Not slipstreamed)
It installed fine, even MCE works.
But there are no updates for MCE.
And when i download a few and try to instal, it says its only for MCE.
EDIT:
When i use a XP SP2 , slipstream the addon , then slipstream SP3
My key doesnt work , also my MCE key doesnt work.
So only way to use it for me is without updates.
EDIT2:
After my first method, updates only install after first logon.
reminds me of this :
http://www.msfn.org/board/Rollup-and-ho ... ml&hl=MUIZ
EDIT3:
Yes my old guide did the trick
Updated fine, no more errors...
ahmuiz wrote:i slipstreamed an OEM MCE to SP3, and SP3 updates.
Then used the components and netfx folder from that version to put in my XP PRO
And i had to add a new quarz.dll , otherwise there was an update for media player.