Jump to content

nomadturk

Member
  • Posts

    75
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Turkey

Everything posted by nomadturk

  1. Whilst posting, Choose "Browse" then click "Upload" afterwards. Then you can click "add reply"
  2. [HKEY_CLASSES_ROOT\.msfn\ShellNew]
  3. Are you installing it with OOBE? Unattended or what? Do you use SVCPACK or RunOnceEx.cmd? Did you try putting that in to Default User\SendTo folder instead of User\SendTo ?
  4. Why do you oppose using OEM folder structure? What disadvantage do you have by copying your file while at text mode? Just convert your links to %windir%\NOTEPAD.EXE instead of C:\...
  5. Save that as a .reg file, run it at the end of your RunOnceEx.cmd with the command below Regedit /S %CDROM%\YourFile.Reg (assuming you use a cdrom variable.)
  6. Check your :\WINDOWS\system32\drivers\etc\HOSTS file for entries regarding microsoft sites. ?
  7. Maybe you didn't realize but this is a forum for "Unattended" application installs. Meaning people doesn't want their users to follow that instructions. They just want that nagging updater to be closed automatically right after the installation.
  8. ****... Whenever i add Avira to my installation, i get a BSoD. It doesn't matter whether it is RunOnceEx or SVCPACK. It's a driver problem i can't get why i'm getting. This time i got a 0x50 win32k.sys error. It's the same with vmanda's release. I wonder if it's because i'm using a Turkish Windows XP (sp3). It can't be because of DriverPacks since they're not installed yet. Weird... Can anyone recommend me an unattended(able) antivirus that runs on SP3, i miss AVG, and not avast! or trial.
  9. http://translate.google.com/translate?hl=e...sl=ru&tl=RO
  10. This batch file should do it i assume. It doesn't have Fixed paths but variables instead. Hmm, i don't know. I think i'll stick to running it as -silent -setDefaultBrowser instead. (: @ECHO OFF > "%Temp%.\appFirefox.reg" ECHO Windows Registry Editor Version 5.00 >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HTTP\DefaultIcon] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE,1" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HTTP\shell\open\ddeexec] >>"%Temp%.\appFirefox.reg" ECHO @="\"%1\",,0,0,,,," >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HTTP\shell\open\ddeexec\Application] >>"%Temp%.\appFirefox.reg" ECHO @="Firefox" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HTTP\shell\open\command] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE -url \"%1\" -requestPending" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.html] >>"%Temp%.\appFirefox.reg" ECHO @="FirefoxHTML" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.htm] >>"%Temp%.\appFirefox.reg" ECHO @="FirefoxHTML" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\https\DefaultIcon] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE,1" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\https\shell\open\ddeexec] >>"%Temp%.\appFirefox.reg" ECHO @="\"%1\",,0,0,,,," >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\https\shell\open\ddeexec\Application] >>"%Temp%.\appFirefox.reg" ECHO @="Firefox" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\https\shell\open\command] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE -url \"%1\" -requestPending" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.xht] >>"%Temp%.\appFirefox.reg" ECHO @="FirefoxHTML" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\gopher\DefaultIcon] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE,1" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\gopher\shell\open\ddeexec] >>"%Temp%.\appFirefox.reg" ECHO @="\"%1\",,0,0,,,," >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\gopher\shell\open\ddeexec\Application] >>"%Temp%.\appFirefox.reg" ECHO @="Firefox" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\gopher\shell\open\command] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE -url \"%1\" -requestPending" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ftp\DefaultIcon] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE,1" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ftp\shell\open\ddeexec] >>"%Temp%.\appFirefox.reg" ECHO @="\"%1\",,0,0,,,," >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ftp\shell\open\ddeexec\Application] >>"%Temp%.\appFirefox.reg" ECHO @="Firefox" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ftp\shell\open\command] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE -url \"%1\" -requestPending" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.shtml] >>"%Temp%.\appFirefox.reg" ECHO @="FirefoxHTML" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.xhtml] >>"%Temp%.\appFirefox.reg" ECHO @="FirefoxHTML" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet] >>"%Temp%.\appFirefox.reg" ECHO @="FIREFOX.EXE" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FIREFOX.EXE\DefaultIcon] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE,0" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FIREFOX.EXE\shell\safemode] >>"%Temp%.\appFirefox.reg" ECHO @="Firefox &Safemode" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FIREFOX.EXE\shell\safemode\command] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE -safe-mode" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FIREFOX.EXE\shell\open\command] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FIREFOX.EXE\shell\properties] >>"%Temp%.\appFirefox.reg" ECHO @="Firefox &Options" >>"%Temp%.\appFirefox.reg" ECHO. >>"%Temp%.\appFirefox.reg" ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\FIREFOX.EXE\shell\properties\command] >>"%Temp%.\appFirefox.reg" ECHO @="%programfiles%\\Mozilla Firefox\\FIREFOX.EXE -preferences" START /WAIT REGEDIT /S "%Temp%.\appFirefox.reg" DEL "%Temp%.\appFirefox.reg"
  11. Radmin
  12. Doesn't work for me! I'm installing Firefox 3.0.5 from RunOnceEx with -ms -setDefaultBrowser switches but... No help. Internet Explorer still comes as the default browser. Is there any other switch or ...? Opera registers itself without even asking. Why can't firefox do it.. It's trivial but, i'ld like my windows to have Firefox as the default browser from start. What i could come up with yet is this: "%programfiles%\Mozilla Firefox\firefox.exe" -silent -setDefaultBrowser But installing it AS the default browser would be better if possible.
  13. Hey, give this a try! Uses Assoc and ftype to associate mp3 and other extensions to AIMP2. AIMP.cmd
  14. For that PID section, it only differs the KEY value what the CD will accept. If you change the last 3 letters to OEM, it's OEM. If you change the last 3 letters to 335, it's Retail If you change the last 3 letters to 270, it's VLK
  15. IE7Pro 2.4.4 is out!
  16. Well, i solved my AIMP2 problems. First, i'm copying all my custom AIMP2 settings by copying the necessary files to my hard drive via $OEM$ folder. Second, I am installing AIMP2 at RunOnceEx, but with this installation it does not associate the filetypes. So, i import my reg file just after installation. Lastly, AIMP2 needs to be run once to register all necessary stuff and work properly. So, i'm restarting the system once automatically (lame but... no other solutions!) after the user logs on to the desktop for the first time. BTW, mine uses aimp2_light.dll for icons, you must change it to aimp2.dll Other than that, i don't recall anything that shouldn't work for you. All works for me!
  17. Mine does associate them but.. You have to start AIMP2 once after installation in order for it to run. I've tried running and terminating AIMP2 at RunOnce but.. it doesn't work either. Weird. (:
  18. Hmm, i really considered, whether if i should attach it or just copy/paste it. (: Well, of course i was using a virtual environment to test it. I can neither spare that much time to test it live, nor can i spare that much money for DVD's. (: Though it cost me lots of installations and compilations, i've finally resolved the problem. The cause was not due to an added driver/software or a removed component. Weird but, when i removed my registry.cmd from within cmdlines.txt and moved it's contents to RunOnceEx.cmd, the problem was fixed. And no, there were no errors with my registry.cmd. It only had commands to register the .reg files i've been using. I just moved the same commands to runonceex.cmd and... Who'ld have thought it'ld be something like this!
  19. This is what i've been using to associate the extensions. I've used a software like RegShot (forgot the name) by watching the changes in registry to create it. Unfortunately, at my system, you need to start AIMP once for it to register all. BTW, there's an error with your code. ExecWait '"aimp_2.51.323.exe" /S "' should be ExecWait '"aimp_2.51.323.exe" /S' Here, i've modified it to include the whole profile directory. I like to customize everything! !include "MUI2.nsh" Name "AIMP2" OutFile "aimp.exe" !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_LANGUAGE "Turkish" ;Page instfiles Section "" SetOverwrite on SetAutoClose true SetOutPath "$PROGRAMFILES\AIMP2\DATA" FILE "AIMP.ini" SetOutPath "$PROGRAMFILES\AIMP2\DATA\profile" FILE "Profile\AIMP2.ini" FILE "Profile\AIMP2t.ini" FILE "Profile\aimp_lastfm.ini" FILE "Profile\AIMP_Shell.ini" FILE "Profile\Bookmarks.ini" FILE "Profile\EQLib.ini" SetOutPath "$PROGRAMFILES\AIMP2\DATA\profile\ML" FILE "Profile\ML\AIMP2.db" FILE "Profile\ML\AIMP_ML.INI" SetOutPath "$PROGRAMFILES\AIMP2\DATA\profile\PLS" FILE "Profile\PLS\Default.plc" SetOutPath $temp FILE "aimp251328.exe" ExecWait '"aimp251328.exe" /S' FILE "appAIMP.reg" FILE "appAIMP2.reg" Exec 'regedit /s "appAIMP.reg"' Exec 'regedit /s "appAIMP2.reg"' delete "aimp251328.exe" delete "appAIMP.reg" delete "appAIMP2.reg" SectionEnd regAIMP2.zip
  20. For a start, use the search section. Everything you need is there. Also, what's with big red fonts and all these dots?
  21. That's where you're completely wrong. It is primarily because of the way too low market share not to bother. Those OSes don't offer anything magic to protect against viruses. 99% of their "protection" is either: it doesn't run 99% of apps/executables out there (not compatible with Windows binaries) most people aren't logged in as root First is directly due to their low market share, and that can be "fixed" easily. As for #2, that's no advantage over Vista with UAC (main diff: one asks for a password, the other only needs a click) False. Viruses could infect anything too (every single binary on the box -- there's nothing special preventing that) given the proper permissions (no difference at all!) Nope. The viruses could be installed anywhere, just like on Windows. Removing a user won't fix everything magically. And with anything UNIX-y, you can still have rootkits and such (hiding any process/malware and such). It sounds like you don't understand how viruses fundamentally work. Linux/BSD/Macs main advantage is that they're not targeted yet. Cluberti/Zxian/Tarun are totally right. Besides, don't underestimate the amount of people who will gladly type in their password to install "shiny cursors 2009 pro" or whatever such garbage. There's enough of those people around to create HUGE a market for Linux/BSD anti-malware apps. Anyways. Malware aside (it's really not much of an issue these days), where people would go is really simple: they'll go where the software is. And people make software for the platform with the most users. There's more software for Windows because there's more users, and the users keep using Windows because that's where the software is. That's pretty much it in a nutshell (but there's a LOT more reasons why people will keep using it anyways, just too long to list 'em all) Well well well... I admit, i'm not a guru of linux. And i mainly use WinXP. But i used many different linux distros and i feel i must defend it. (: 1- The reason why Linux viruses won't be affecting the whole machine and won't be able to affect the system files is that no linux user is stupid enough to login as root. Having a root user is one security step over windows xp. 2- Windows applications are indeed windows applications, therefore should only run at windows systems. Which they do it right. They mostly don't even work properly different windows releases! But, having WINE, BSD and GNU/Linux OS'es can run their applications, though not all of them and not too good. 3- Any windows release can not be compared to any BSD or GNU/Linux by any msecurity we're talking about. 4- Let's say... The majority of Web servers are running Linux and Unix. This alone is enough a reason to "bother" with writing viruses. 5- Also, about the people part... Luckily majority of Linux/Unix/Bsd/Mac users are clever enough to not to let a virus spread itself to their system. The rest, those who'll gladly type in their password to install "shiny cursors 2009 pro" can't bother using such an operating system that'll ask passwords at so many stages and require custom driver editings, long command line installations and such.
  22. Well, MAC's are BSD based. Thus there's not much of a difference between MacOSX and any GNU/Linux or BSD computer. The thing is, it's not that "no one is bored enough to write a virus". These operating systems doesn't have viruses, or let's say too few of them, because of high security measures. Even if they get infected by a virus, it won't affect any system files and by removing the user with root account, the virus may be cleansed. (mostly, i think) (Well, maybe for ubuntu it will be different because any virus who executes commands by adding sudo to the front will succeed) I assume it is the same case for Mac's too. But, in case of Windows, it's vulnerable to anything. Thus, in case of a virus attack it may destroy the whole system Anyhow, i think most people, especially newbies, will prefer using Mac's afterwards since it requires less struggle than any GNU/Linux / BSD does. Rest will be divided in to hundreds of linux distros and bsd's.
  23. Hello, I've got a problem with my custom windows xp releases. No matter what i could think of didn't help me solve it, so i came to seek help from you guys. My problem is that, sometimes, when i try installing software with Windows Installer based installers i can't install the software due to such an error below. The error message displays after when the installer is trying to "Extracting *****.msi file" The title of the error is "Windows driver model" and it asks me for a switch to install the file. You click OK and installation process halts, rolls back changes etc. I can't install in the end. I know that the installer is good and installs at other computers (without my release). Also, if i extract the exe and install the msi file from the extracted file, it installs without problems. Means i can install them eventually. I couldn't figure out what causes this. I've tried different XP base isos. I've tried SP2, SP3. I've updated every runtime, plugin, software i use with the system. I've downloaded and installed Windows Installer 3.1 and 4.5 redistributable packages, tried again at after each step. Still no change. I've checked the services and Windows Installer is there. I set it running, tried again.. Same problem. This bug still exists. I'm lost... I've attached a copy of my nLite preset, in case it helps. I hope i'm not removing anything Windows Installer uses or depends. Can someone help, please? [Main] Env = 1.4.9.1 - 2.0.50727.1433.Microsoft Windows NT 5.1.2600 Service Pack 2 Target = Windows XP Professional SP3 - 5.1.2600.5512 - Turkish [Tasks] Remove Components Unattended Setup Integrate Drivers Hotfixes and Update Packs Tweaks Create a Bootable ISO Options [Components] ;# Applications # Briefcase ClipBook Viewer Internet Games Pinball Screensavers ;# Keyboards # Albanian keyboard Arabic (101) keyboard Arabic (102) AZERTY keyboard Arabic (102) keyboard Armenian Eastern keyboard Armenian Western keyboard Azeri Cyrillic keyboard Azeri Latin keyboard Belarusian keyboard Belgian (Comma) keyboard Belgian (Period) keyboard Belgian French keyboard Bengali (Inscript) keyboard Bengali keyboard Bosnian Cyrillic keyboard Bosnian keyboard Bulgarian (Latin) keyboard Bulgarian keyboard Canadian French (Legacy) keyboard Canadian French keyboard Canadian Multilingual Standard keyboard Chinese (Simplified) - Microsoft Pinyin IME 3.0 keyboard Chinese (Simplified) - NeiMa keyboard Chinese (Simplified) - QuanPin keyboard Chinese (Simplified) - ShuangPin keyboard Chinese (Simplified) - US Keyboard keyboard Chinese (Simplified) - ZhengMa keyboard Chinese (Traditional) - Alphanumeric keyboard Chinese (Traditional) - Array keyboard Chinese (Traditional) - Big5 Code keyboard Chinese (Traditional) - ChangJie keyboard Chinese (Traditional) - DaYi keyboard Chinese (Traditional) - New ChangJie keyboard Chinese (Traditional) - New Phonetic keyboard Chinese (Traditional) - Phonetic keyboard Chinese (Traditional) - Quick keyboard Chinese (Traditional) - Unicode keyboard Chinese (Traditional) - US Keyboard keyboard Croatian keyboard Czech (QWERTY) keyboard Czech keyboard Czech Programmers keyboard Danish keyboard Devanagari - INSCRIPT keyboard Divehi Phonetic keyboard Divehi Typewriter keyboard Dutch keyboard Estonian keyboard Faeroese keyboard Farsi keyboard Finnish keyboard Finnish with Sami keyboard French keyboard FYRO Macedonian keyboard Gaelic keyboard Georgian keyboard Greek (220) keyboard Greek (220) Latin keyboard Greek (319) keyboard Greek (319) Latin keyboard Greek keyboard Greek Latin keyboard Greek Polytonic keyboard Gujarati keyboard Hebrew keyboard Hindi Traditional keyboard Hungarian 101-key keyboard Hungarian keyboard Icelandic keyboard Inuktitut Latin keyboard Irish keyboard Italian (142) keyboard Italian keyboard Japanese Input System (MS-IME2002) keyboard Japanese keyboard Kannada keyboard Kazakh keyboard Korean Input System (IME 2000) keyboard Korean keyboard Kyrgyz Cyrillic keyboard Latin American keyboard Latvian (QWERTY) keyboard Latvian keyboard Lithuanian IBM keyboard Lithuanian keyboard Luxembourgish keyboard Malayalam keyboard Maltese 47-key keyboard Maltese 48-key keyboard Maori keyboard Marathi keyboard Mongolian Cyrillic keyboard Nepali keyboard Norwegian keyboard Norwegian with Sami keyboard Pashto keyboard Polish (214) keyboard Polish (Programmers) keyboard Portuguese (Brazilian ABNT) keyboard Portuguese (Brazilian ABNT2) keyboard Portuguese keyboard Punjabi keyboard Romanian keyboard Russian (Typewriter) keyboard Russian keyboard Sami Extended Finland-Sweden keyboard Sami Extended Norway keyboard Serbian (Cyrillic) keyboard Serbian (Latin) keyboard Slovak (QWERTY) keyboard Slovak keyboard Slovenian keyboard Spanish keyboard Spanish Variation keyboard Swedish keyboard Swedish with Sami keyboard Swiss French keyboard Swiss German keyboard Syriac keyboard Syriac Phonetic keyboard Tamil keyboard Tatar keyboard Telugu keyboard Thai Kedmanee (non-ShiftLock) keyboard Thai Kedmanee keyboard Thai Pattachote (non-ShiftLock) keyboard Thai Pattachote keyboard Ukrainian keyboard United Kingdom Extended keyboard United States-Dvorak for left hand keyboard United States-Dvorak for right hand keyboard United States-Dvorak keyboard Urdu keyboard US English Table for IBM Arabic 238_L keyboard Uzbek Cyrillic keyboard Vietnamese keyboard ;# Languages # ;Arabic Arabic (Algeria) Arabic (Bahrain) Arabic (Egypt) Arabic (Iraq) Arabic (Jordan) Arabic (Kuwait) Arabic (Lebanon) Arabic (Libya) Arabic (Morocco) Arabic (Oman) Arabic (Qatar) Arabic (Saudi Arabia) Arabic (Syria) Arabic (Tunisia) Arabic (U.A.E.) Arabic (Yemen) Divehi (Maldives) Pashto Syriac (Syria) Urdu ;Armenian Armenian ;Baltic Estonian Latvian Lithuanian ;Central Europe Albanian Bosnian (Latin, Bosnia and Herzegovina) Croatian Croatian (Bosnia and Herzegovina) Czech Hungarian Polish Romanian Serbian (Latin) Serbian (Latin, Bosnia and Herzegovina) Slovak Slovenian ;Cyrillic Azeri (Cyrillic) Belarusian Bosnian (Cyrillic, Bosnia and Herzegovina) Bulgarian FYRO Macedonian Kazakh Kyrgyz (Kyrgyzstan) Mongolian (Mongolia) Russian Serbian (Cyrillic) Serbian (Cyrillic, Bosnia and Herzegovina) Tatar Ukrainian Uzbek (Cyrillic) ;Georgian Georgian ;Greek Greek ;Hebrew Hebrew ;Indic Bengali (India) Gujarati (India) Hindi Kannada (India) Konkani Malayalam (India) Marathi Nepali (Nepal) Punjabi (India) Sanskrit Tamil Telugu (India) ;Japanese Japanese ;Korean Korean ;Simplified Chinese Chinese (PRC) Chinese (Singapore) ;Thai Farsi Thai ;Traditional Chinese Chinese (Hong Kong S.A.R.) Chinese (Macau S.A.R.) Chinese (Taiwan) ;Turkic Azeri (Latin) Uzbek (Latin) ;Vietnamese Vietnamese ;Western Europe and United States Afrikaans Basque Catalan Danish Dutch (Belgium) Dutch (Netherlands) English (Australia) English (Belize) English (Canada) English (Caribbean) English (Ireland) English (Jamaica) English (New Zealand) English (Philippines) English (South Africa) English (Trinidad) English (Zimbabwe) Faeroese Filipino Finnish French (Belgium) French (Canada) French (France) French (Luxembourg) French (Monaco) French (Switzerland) Frisian Galician (Spain) German (Austria) German (Liechtenstein) German (Luxembourg) German (Switzerland) Icelandic Indonesian Inuktitut (Latin) Irish Italian (Italy) Italian (Switzerland) Luxembourgish Malay (Brunei Darussalam) Malay (Malaysia) Maltese Maori Mapudungun Mohawk Northern Sotho Norwegian (Bokmal) Norwegian (Nynorsk) Portuguese (Brazil) Portuguese (Portugal) Quechua (Bolivia) Quechua (Ecuador) Quechua (Peru) Romansh Sami, Inari (Finland) Sami, Lule (Norway) Sami, Lule (Sweden) Sami, Northern (Finland) Sami, Northern (Norway) Sami, Northern (Sweden) Sami, Skolt (Finland) Sami, Southern (Norway) Sami, Southern (Sweden) Spanish (Argentina) Spanish (Bolivia) Spanish (Chile) Spanish (Colombia) Spanish (Costa Rica) Spanish (Dominican Republic) Spanish (Ecuador) Spanish (El Salvador) Spanish (Guatemala) Spanish (Honduras) Spanish (International Sort) Spanish (Mexico) Spanish (Nicaragua) Spanish (Panama) Spanish (Paraguay) Spanish (Peru) Spanish (Puerto Rico) Spanish (Traditional Sort) Spanish (Uruguay) Spanish (Venezuela) Swahili Swedish Swedish (Finland) Tswana Welsh Xhosa Zulu ;# Multimedia # Images and Backgrounds Mouse Cursors Music Samples ;# Network # FrontPage Extensions Internet Connection Wizard MSN Explorer Netmeeting Peer-to-Peer Share Creation Wizard Synchronization Manager Web Folders Windows Messenger ;# Operating System Options # .NET Framework Blaster/Nachi removal tool Color Schemes Desktop Cleanup Wizard Disk Cleanup DR Watson File System Filter Manager IExpress Wizard Out of Box Experience (OOBE) Search Assistant Security Center Shell Media Handler Tour User account pictures Web View ;# Services # Remote Registry ;# Compatibility # [KeepFiles] msconfig.exe [RemoveFiles] clock.avi yahoo.bmp swtchbrd.bmp [Options] CABMerge CABNoHigh ClassicSetup BlackSetupBack DisableMinMem OemBranding DupeFiles ProfilesDir = "%SystemDrive%\Documents and Settings" TargetPath = "WINDOWS" temp_dir = %USERPROFILE%\Local Settings\Temp AdvTweaks [Patches] TcpIp = 100 UsbPoll = 125 DoUxTheme DoSFC [Services2] MSDTC,4 WmiApSrv,4 wuauserv,4 helpsvc,3 ImapiService,4 NtmsSvc,4 srservice,4 TlntSvr,4 upnphost,4 WebClient,4 WmdmPmSN,4 PolicyAgent,4 AppMgmt,4 CiSvc,4 ClipSrv,4 ERSvc,4 HidServ,4 NetDDE,4 NetDDEdsdm,4 ProtectedStorage,4 ScardSvr,4 SysmonLog,4 TrkWks,4 UPS,4 W32Time,4 xmlprov,4 NetLogon,4 Messenger,4 NtLmSsp,4 [Tweaks] Boot and Shutdown-Auto-End tasks immediately Boot and Shutdown-Auto-Kill hung applications immediately Boot and Shutdown-Auto-Kill hung services immediately Boot and Shutdown-Disable automatic restart on System Failure Boot and Shutdown-Do not Parse Autoexec.bat Boot and Shutdown-Logon Page-Welcome screen Boot and Shutdown-Setup Prefetch-Cache-Applaunch and Boot enabled Boot and Shutdown-Status Messages-Default Desktop-Internet Explorer icon-Show Desktop-My Computer icon-Show Desktop-My Documents icon-Show Desktop-My Network Places icon-Show Desktop-Recycle Bin icon-Show Explorer-Advanced Search: preconfigure options Explorer-Associate additional file types with Notepad Explorer-Change Windows Explorer folder view-List Explorer-Classic Control Panel Explorer-Disable Accessibility keyboard shortcuts Explorer-Disable Autorun Explorer-Disable Beep on errors Explorer-Disable Prefix: Shortcut to Explorer-Disable Web Files and Folders connection Explorer-Display the contents of system folders Explorer-Launch folder windows in a separate process Explorer-Preset Places Bar to-C:, D:, E:, Desktop, My Network Places Explorer-Show Statusbar in all windows Explorer-Show the full path in the Address Bar 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 sound when popup is blocked Internet Explorer-Enable Google URL-Search Internet Explorer-Keep IE URL-History for-50 Days (max recommended) Internet Explorer-Set Homepage-www.google.com Internet Explorer-Set Internet Explorer to accept 10 connects at a time 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 Network Connections My Computer-Add Printers and Faxes My Computer-Add Recycle Bin My Computer-Add Registry Editor to Context Menu My Computer-Add Services to Context Menu My Computer-Add Software to Context Menu My Computer-Remove Shared Documents Network-Allow receiving Remote Assistance-Enable Network-Disable administrative shares Network-Disable automatic search for network folders and printers Network-Disable LM HOSTS lookup Network-Remote Desktop-Enable Network-Remove remote-computer NameSpace Performance-Disable Last accessed Timestamp on files Performance-Disable Tracking of Broken Shortcut Links Performance-Disable Warn on low disk space Performance-Do not cache thumbnails Performance-Processor scheduling-Programs Performance-Run 16-bit Windows applications in a separate process Privacy-Disable Driver Update Internet prompt Privacy-Disable Error Reporting Privacy-Remove Alexa Security-Disable Screensaver Security-Disable Web Open With prompt Security-Screensaver Password-Protection-Disabled Start Menu-Add Administrative Tools menu Start Menu-Control Panel-Display as a link Start Menu-Expand Network Connections Start Menu-My Computer-Display as a link Start Menu-My Documents-Display as a link Start Menu-My Music-Don't display this item Start Menu-My Network Places-Don't display this item Start Menu-My Pictures-Don't display this item Start Menu-Network Connections-Display as Connect to menu Start Menu-Printers and Faxes-Display as a link Start Menu-Reduce popup delay Start Menu-Remove Search For People from Search Start Menu-Remove Search the Internet from Search Start Menu-Remove Windows Catalog shortcut Start Menu-Remove Windows Update shortcut Start Menu-Use small icons in Start Panel Taskbar-Disable Group similar Taskbar buttons Taskbar-Disable Language-Bar Taskbar-Lock the Taskbar-Yes Visual Effects-Active window tracking-Disable Visual Effects-Active window tracking speed-Fast Visual Effects-Animate windows when minimizing and maximizing-Disable Visual Effects-Combo box animation-Disable Visual Effects-Cursor shadow-Disable Visual Effects-Display mouse pointer trails-Disable Visual Effects-Fade out selection-Disable Visual Effects-Gradient captions in windows-Disable Visual Effects-Keyboard shortcut underline-Enable Visual Effects-Menu animation-Disable Visual Effects-Menu shadows-Disable Visual Effects-Menu style-Normal Visual Effects-Show translucent selection rectangle-Enable Visual Effects-Show window contents while dragging-Disable Visual Effects-Slide taskbar buttons-Enable Visual Effects-Smooth edges of screen fonts-Standard 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-Enable Windows Media Player-Accept Privacy Statement Windows Media Player-Disable metadata retrieval Windows Media Player-Disable starting with Media Guide Windows Media Player-Enhanced privacy settings Windows Media Player-Optimize fullscreen mode behavior Windows Media Player-Remove all context menu entries [Unattended] ComputerType = Automatic HibernationNo OOBEOff CustomLocales Resolution = 1024x768 BitsPerPel = 32 bit (True Color) DisableSRestore MaximumDataStorePercentOfDisk = 10 RestorePointLife = 45 DesktopTheme = SlanXP3|Segoe|Normal IISInstall = 2 AutoUpdates = 4 AutoUDay = 7 AutoUHour = 15 ProgFilesPath = "\Program Files" CustomNetwork MS_NWIPX [DesktopThemes] E:\NoXP\CustomXP\Themes\NoXP14.Theme [NetAdapter1] connname = "NoXP" macaddress = "" ipaddress = "192.168.0.1" subnetmask = "255.255.255.0" defaultgateway = "" dnsserver1 = "208.67.222.222" dnsserver2 = "208.67.220.220" winsserver = "" netbiossetting = "0" ipxnetworknumber = "00000000" ipxnetworkframetype = "0xFF" [GuiRunOnce] [Drivers] E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\3B\3WARESRV.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Acard\WinXP\AEC6880.INF,aec6880_Winxp E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A\AEC6210.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A2\aec6260.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A5\AEC6880.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A8\AEC671X.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A4\AEC68X5.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A3\AEC6280.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A7\AEC67160.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\A6\AEC6897.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\D\CERCMGT.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\IB4\AACMGT.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD8\AAATIMEO.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD4\ADPTMGT.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD\HPT3XX.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\IB5\ARCSAS.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\IB6\ADP94XX.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD3\AAR1210.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD7\A320RAID.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD5\ADPU160M.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD2\AACAD2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD6\ADPU320.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD1\AAR81XX.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\ADB\AAC.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\ADA\ADP3132.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AM\AMDEIDE.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AU\ALIIDE.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\alisata\SATADISK\win_xp\M5289.INF,m5289XP E:\NoXP\CustomXP\UnattendedDrivers\DRV2\alisata\SATADISK\win_xp\M5289.INF,m5289XPA64 E:\NoXP\CustomXP\UnattendedDrivers\win_xp\M5289.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AU2\M5228.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\3\3WAREDRV.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\SMAXWDM\W2K_XP\ADIHdAud.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AR\ARCM_X86.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\AtherosLan\lWinXP_32\l151x86.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\AtherosLan\rWinXP_32\l151x86.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AT\ahcix86.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\SP36684A\bcmwl5.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S\PNP649R.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\C\CPQ32FS2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\C3\CPQARRY2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L6\L6MRAIDX.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\D3\D3NODEV.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\D1\delpseud.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\D2\DELPSEUD.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\E\ELXPLUS.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\C2\HPCISSX2.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\C1\CPQCISSE.inf,B060 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\C1\CPQCISSE.inf,0046 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\C1\CPQCISSE.inf,B178 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H6\RR232W2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H9\2K_RR172.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H9S\RR172K3.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H5\HPTMV6.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H7S\RR2340K3.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H8\2310_2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H3\H3k\hptmv.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H6S\RR232X.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H3\HPTMV.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H1S\RR174X.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H\HPT3XX.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H3\H3S\hptmv.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H10\HPTIOP.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H7\RR2340.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H1\2K_RR174.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H2\HPT374.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\H4\HPT366.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\IB1\ipsraidn.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\IB3\NFRD960B.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\IB2\NFRD960.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaStor_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaStor_ICH7DH E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaStor_ICH7MDH E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaAHCI_ICH7M E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaStor_ICH7DH E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaAHCI_ICH7R E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaStor_ICH8R E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaStor_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaAHCI_ICH6M E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaStor_ICH7MDH E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaStor_ICH8M E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaAHCI_ICH8M E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ICH9RDODH E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaAHCI_ICH6M E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaStor_ICH8M E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaAHCI_ICH9R E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ICH7MMDH E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaAHCI_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaStor_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ICH8MEM E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaAHCI_ICH8R E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaAHCI_ICH8M E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaAHCI_ICH7R E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ICH9MEM E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaStor_ICH7MDH E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaAHCI_ICH6M E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I2\IAAHCI70.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaStor_ICH7RDH E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaStor_ICH8MEICH9ME E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaAHCI_ICH7M E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaAHCI_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaAHCI_ICH7M E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ICH10R E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaStor_ICH7MDH E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaStor_ICH7DH E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaAHCI_ICH7R E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaAHCI_ICH8R E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaStor_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaStor_ICH8R E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaAHCI_ICH6R E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaStor_ICH8M E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaAHCI_ICH8M E:\NoXP\CustomXP\UnattendedDrivers\SP36132\iastor.inf,iaStor_ICH8R E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaStor_ICH6R E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaAHCI_ESB2 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I1\IASTOR55.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I3\iaahci.inf,iaAHCI_ICH9R E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ICH8RDHDO E:\NoXP\CustomXP\UnattendedDrivers\IntelSATA\iaahci.inf,iaAHCI_ICH8R E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaStor_ICH8RICH9RICH10R E:\NoXP\CustomXP\UnattendedDrivers\intel945f6flpy32\iaAHCI.inf,iaAHCI_ICH7RDH E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\I6\OEMMGMT.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\IT\ITERAID.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\J\JMIDE.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\x32\jraid_i.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L4\LSIPSEUD.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L5\LSI_SAS2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L\L1NODEV.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L1\L1NODEV.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L2\L2NODEV.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L7\MSAS2K3.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\RIS_XP_2003_32bit\yk51x86.inf,BUSDRV E:\NoXP\CustomXP\UnattendedDrivers\RIS_XP_2003_32bit\yk51x86.inf,RAIDCLASS E:\NoXP\CustomXP\UnattendedDrivers\Yukon\yk51x86.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\M4\MV64XX.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\M2\MV614X.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\M\MV61XX.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\M3\MVSATA.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\L3\AR160.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\N\5\NVGTS5.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\NVIDIA_SATA_DRIVER_32BIT_V6.99_MCP51_MCP55\nvata.inf,BUSDRV E:\NoXP\CustomXP\UnattendedDrivers\NVIDIA_SATA_DRIVER_32BIT_V6.99_MCP51_MCP55\nvata.inf,RAIDCLASS E:\NoXP\CustomXP\UnattendedDrivers\NVIDIA_SATA_RAID_F6_DRIVERDISK_32BIT_V6.99_MCP51_MCP55\nvraid.inf,BUSDRV E:\NoXP\CustomXP\UnattendedDrivers\NVIDIA_SATA_RAID_F6_DRIVERDISK_32BIT_V6.99_MCP51_MCP55\nvraid.inf,RAIDCLASS E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\N\6\nvgts.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\N\4\NVATA4.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\N\123\NVATABUS3.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\N\TM\NVATABUSTM.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\N\4IN\NVATA4IN.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100_nt5 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\PA\PAFSTRXP.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\PC\FTTXR5_O.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P2\K\P2FSTK2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\PAS\PAKFTR2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100TX2 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100_2 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra33_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra33_nt5 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra133TX2_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\FastTrak133\WinXP\FASTTRAK.INF,FastTrak133_xp2 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P\K\PBKFSTRK.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P\S\PBK3FSTR.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P\PBFSTTX2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100TX2_nt5 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P1K\FASTTK2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P2\FASTTX2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P9\FTTXR52P.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra133TX2 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra66_xp E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P1\P1FSTTRK.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100_xp_2 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100TX2_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P6\ULSATA.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra33 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P7\ULSATA2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\FastTrak\Driver\NT4\FASTTRAK.INF,FastTrak100_nt51 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\FastTrak\Driver\FastTraq\FASTTRAK.INF,FastTrak100_nt51 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra100_nt5_2 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra133TX2_nt5 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra66_nt5 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\S-ATA\PDC20376\WinXP\fasttx2k.INF,FastTrak_TX2K_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\S-ATA\PDC20579\RaidWINXP\ftsata2.INF,FastTrak_TX2K_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\S-ATA\PDC20376\WinXP\fasttx2k.INF,UlSata_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\ATA-133-WinXP\ULTRA.INF,Ultra66 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\S-ATA\PDC20375\WinXP\UlSata.inf,UlSata_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\S-ATA\PDC20579\UltraWinXP\UlSata2.inf,ulsata2_xp E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P1S\FASTTK3K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P2S\P2FSTK3K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P8\ULTRA.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\S-ATA\PDC20378\WinXP\fasttx2k.INF,FastTrak_TX2K_xp E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\S-ATA\PDC20378\WinXP\fasttx2k.INF,UlSata_xp E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P3\S150SX8.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P4\FASTSX.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P4K\P4FSX2K.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\Promise\FastSX\fastsx.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P5\SPTRAK.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\P4S\P4FSXK3.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\Q2\QL2200.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\Q3\QL2300.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\Q4\QL12160.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\Q\QL2100.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SC5\3132R5C5.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SC2\3132R5C2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S7B\si3114r5.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SB2\SI3132B2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S8\SI3124.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SA2\3124R5A2.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S9\SI3124R.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S7A\SI3114r.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AD9\ASH1205.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SA\3124R5A.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SB\SI3132.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SB3\SI3132B3.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SC4\3132R5C4.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S2A\SII680R.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S7\SI3114.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S2\SI680.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S3\si3531.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SC\SI3132R5.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S5\SI3112R.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\S4\SI3112.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SB5\SI3132.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SC3\3132R5C3.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SB4\SI3132B4.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\FloppyImage\964plus180(181)\RAID\180OB\winxp\SISRaid.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\180OB\winxp\SISRaid.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\964_180\winxp\SISRaid.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SIS\SISRAID.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\FloppyImage\964_180\RAID\winxp\SISRaid.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\FloppyImage\964plus180(181)\RAID\180\winxp\SISRaid.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SIS2\SISRAID4.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\FloppyImage\968\1184\RAID\Winxp_2k\sisraid4.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\966_968\1184\Winxp_2k\sisraid4.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\SIS1\SISRAIDX.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\FloppyImage\966\1182\RAID\Winxp_2k\SISRaid2.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\965\Winxp_2k\SISRaid2.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\FloppyImage\966\1184\RAID\Winxp_2k\sisraid4.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\966_968\1182\Winxp_2k\SISRaid2.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\sisraid411a\RAID411a\FloppyImage\965_965L\RAID\Winxp_2k\SISRaid2.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\AU3\ULISATA.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\via_falcon_v230a\VIA_Falcon_V230A\SATAIDE\WXP\ViPrt.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\V4\VIPRT.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\W2K\ViPrt.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\x86\VIAMRAID.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\v-raid_v560a\V-RAID_V560A\VRAIDDrv\NT4\viamraid.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\v-raid_v560a\V-RAID_V560A\VRAIDDrv\XP\x86\VIAMRAID.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\VIAStor\driver\IDE\NT5\vminiide.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\winxp\VIAMRAID.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\V\VIAMRAID.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DRV2\v-raid_v560a\V-RAID_V560A\VRAIDDrv\XP\x86\VIAMRAID.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\V3\VMINIIDE.INF,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\V2\VIAPIDE.inf,0 E:\NoXP\CustomXP\UnattendedDrivers\DP_MassStorage_wnt5_x86-32_805\D\M\VM\VMSCSI.inf,0 [Hotfixes] E:\NoXP\RyanVM\Plugins\Varsayilan\1\Kels_Runtimes_addon_v4.8.rar E:\NoXP\RyanVM\Plugins\Varsayilan\1\Nomads_FontsPack_ADDON.cab E:\NoXP\RyanVM\Plugins\Varsayilan\b101_HostsXpert_4.2_CPL_addon.rar E:\NoXP\RyanVM\Plugins\Varsayilan\b101_mcblm_si_addon.rar E:\NoXP\RyanVM\Plugins\Varsayilan\DosyaUzantilariniGoster_Addon.rar E:\NoXP\RyanVM\Plugins\Varsayilan\GizliDosyalariGoster_Addon.rar E:\NoXP\RyanVM\Plugins\Varsayilan\Kels_CabTool_v1.8_addon_build2.CAB E:\NoXP\RyanVM\Plugins\Varsayilan\Kels_ClearType_addon_v1.2.CAB E:\NoXP\RyanVM\Plugins\Varsayilan\Kels_CPLBonus_addon_v9.2.2.rar E:\NoXP\RyanVM\Plugins\Varsayilan\KomutPenceresi_Addon.rar E:\NoXP\RyanVM\Plugins\Varsayilan\NR_CursorsAIO_Addon_1.9.rar E:\NoXP\RyanVM\Plugins\Varsayilan\NR_EUEfontUpdate_Addon_1.1.7z E:\NoXP\RyanVM\Plugins\Varsayilan\NR_MTU_Addon.cab E:\NoXP\RyanVM\Plugins\Varsayilan\NR_Prio1.98TR_Addon.rar E:\NoXP\RyanVM\Plugins\Varsayilan\Reapers_Blue2_Cursor_Pack_1.0_AddOn.7z E:\NoXP\RyanVM\Plugins\Varsayilan\Reapers_Clock_Cursor_Pack_1.0_AddOn.7z E:\NoXP\RyanVM\Plugins\Varsayilan\Reapers_Grey_Mouse_Cursor_Pack_1.0_AddOn.7z E:\NoXP\RyanVM\Plugins\Varsayilan\Reapers_IP_Configuration_Manager_2.7.2.80_CPL_AddOn.7z E:\NoXP\RyanVM\Plugins\Varsayilan\Reapers_Nitrogen_Cursor_Pack_1.0_AddOn.7z E:\NoXP\RyanVM\Plugins\Varsayilan\ReapersSuperCopier2B19AddOn.7z E:\NoXP\RyanVM\Plugins\Varsayilan\RegTweaks_Addon_QuickLaunchDEF_dgelwin.cab E:\NoXP\RyanVM\Plugins\Varsayilan\Ricks_AIOVistaAeroCursors_AddOn_v7.07.03.rar E:\NoXP\RyanVM\Plugins\Varsayilan\Ricks_UbuntuHumanCursors_AddOn.rar E:\NoXP\RyanVM\Plugins\Varsayilan\Ricks_VistaRTMAeroCursors_AddOn.rar E:\NoXP\RyanVM\Plugins\Varsayilan\Ricks_VistaRTMFonts_AddOn_v1.1.7z E:\NoXP\RyanVM\Plugins\Varsayilan\Ricktendo64_MacOSxCursorPack_addon_v1.1.7z E:\NoXP\RyanVM\Plugins\Varsayilan\XentientThumbnails1.0.2_AddOn.rar E:\NoXP\RyanVM\Plugins\Varsayilan\2\Plugin ShockwavePlayer.cab E:\NoXP\RyanVM\Plugins\Varsayilan\2\Plugin FirefoxFlashPlugin.cab E:\NoXP\RyanVM\Plugins\Varsayilan\2\Plugin FirefoxShockwavePlugin.cab E:\NoXP\RyanVM\Plugins\Varsayilan\2\Plugin FlashPlayer_IE.cab E:\NoXP\RyanVM\Plugins\Varsayilan\2\Plugin OperaFlashPlugin.cab E:\NoXP\RyanVM\Plugins\Varsayilan\2\Plugin OperaShockwavePlugin.cab E:\NoXP\RyanVM\Plugins\Varsayilan\2\NR_MozillaFlash_AddOn.rar
  24. Why not add the already altered NTUSER.dat to your $OEM$ folder?
  25. When i am creating a new release of my modified XP, i am following these steps, over and over. 1. Take an XP without SP. 2. Apply SP1 and SP2, save as an iso. 3. Apply post-sp updates to this, save as an iso. 4. Check if it's working properly via virtual machine. 5. Include addtional software and drivers meanwhile do the tweaks, remove components. 6. Check if it's working properly via virtual machine. 7. If it's working OK, integrate driver packs, create a new iso. 8. Check if it's working properly via virtual machine. 9. If it's working OK, install it on my own machine to check the performance and find out bugs, if there are any. At every new release, at anything i want to change i'm repeating these steps starting from the step 5 since i've already built a properly working windows iso with updates and service packs. What i wonder is that would it be OK if i Open nLite, add drivers, finish integration, close. Open nLite, add some basic stuff which won't be updated easily, finish integration, close. Later, when needed, add the applications i need, finish integration, close. Lastly, do the tweaks. What i mean is, i'm asking these because i'm bored of doing the same things again and again. For example i don't want to add sata drivers and themes and user settings more than once. I wonder if it will be a problem or not if i run nLite multiple times after completing these, leave out adding additional software and removing stuff (since mayhap, some software i'm adding may add some new stuff there along with some new services such as .net services). Would it corrupt anything? What you say?
×
×
  • Create New...