Jump to content

fred_gaou

Member
  • Posts

    12
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    France

About fred_gaou

  • Birthday 04/30/1982

Contact Methods

  • Website URL
    http://

fred_gaou's Achievements

0

Reputation

  1. Hi, I use nlite and I want to create an addon that installs Devcon.exe (simply copy the files in system32, indeed) in my XP SP3. Can I do that only using the entries.ini files or must I add an inf files? Here is the addon structure I'd like to: Devcon.cab +DEVCON.EX_ +ENTRIES_devcon.INI ENTRIES_devcon.INI content: [general] builddate=2009/10/11 description=utilitaire de ligne de commande qui peut être utilisé à la place du Gestionnaire de périphériques title=Devcon version=1 website= ; fichiers à copier dans system32 ; gardent le nom complet même s'ils sont compressé tel que SYSSETUP.IN_ [dosnet_files] d1,DEVCON.EXE [txtsetup_files] DEVCON.EXE = 100,,,,,,,2,0,0 Is it ok? Plus, I didn't find a resource (i.e.:MSDN) that explains what 100,,,,,,,2,0,0 really means and how to use the syntax form to change destination directory? Have you got a link, please? regards
  2. I solved my problem using an add-on (updated download link) that patches hivesys.inf adding these lines: HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","InstalledDisplayDrivers",0x00010000,"vga", "framebuf", "vga256", "vga64k" HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","VgaCompatible",0x00010001,1 HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","InstalledDisplayDrivers",0x00010000,"vga", "framebuf", "vga256", "vga64k" HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","VgaCompatible",0x00010001,1 HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","DefaultSettings.BitsPerPel",0x00010001,32 HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","DefaultSettings.XResolution",0x00010001,1024 HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","DefaultSettings.YResolution",0x00010001,768 HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\Video","Service",0x00000000,"VgaSave" HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","InstalledDisplayDrivers",0x00010000,"vga", "framebuf", "vga256", "vga64k" HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","VgaCompatible",0x00010001,1 HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\Video","Service",0x00000000,"VgaSave" HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","InstalledDisplayDrivers",0x00010000,"vga", "framebuf", "vga256", "vga64k" HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","VgaCompatible",0x00010001,1 HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.BitsPerPel",0x00010001,32 HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.XResolution",0x00010001,1024 HKLM,"SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000","DefaultSettings.YResolution",0x00010001,768 You can do it manually adding these lines in hivesys.inf just after [AddReg] entrie: HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","DefaultSettings.BitsPerPel",0x00010001,32 HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","DefaultSettings.XResolution",0x00010001,1024 HKLM,"SYSTEM\CurrentControlSet\Services\VgaSave\Device0","DefaultSettings.YResolution",0x00010001,768 HKLM,"SYSTEM\CurrentControlSet\Control\Video\<i class="spip">23A77BF7-ED96-40EC-AF06-9B1F4867732A</i>\0000","DefaultSettings.BitsPerPel",0x00010001,32 HKLM,"SYSTEM\CurrentControlSet\Control\Video\<i class="spip">23A77BF7-ED96-40EC-AF06-9B1F4867732A</i>\0000","DefaultSettings.XResolution",0x00010001,1024 HKLM,"SYSTEM\CurrentControlSet\Control\Video\<i class="spip">23A77BF7-ED96-40EC-AF06-9B1F4867732A</i>\0000","DefaultSettings.YResolution",0x00010001,768 So, GUI-setup is now set to 1024x768 (you can modify this values). I use 1365VidChng.exe later in GuiRunOnce so that it sets the best display resolution for each computer.
  3. Hi, I use nLite to build my XP SP3 and I test my setup with VirtualBox (Sun). I have tested 1365VidChng.exe (I renamed it VidChng.exe in my batch). I made an add-on that run at T13. Here is my batch: @echo off CD /D %systemdrive%\temp\ScrRes : Virtual Machine Resolutions, No Driver VidChng.exe 800X600X32@1 -q VidChng.exe 1024X768X32@1 -q : Laptop Resolution VidChng.exe 1024X768X32@60 -q VidChng.exe 1200X800X32@60 -q VidChng.exe 1400X1050X32@60 -q VidChng.exe 1600X1200X32@60 -q : Desktop resolutions VidChng.exe 800X600X32@75 -q VidChng.exe 1024X768X32@75 -q VidChng.exe 1200X900X32@75 -q VidChng.exe 1600X1200X32@75 -q EXIT It does the work ! Before batch, the resolution is 640x480 After batch, the resolution is 1024x768: But with this result... The all screen enlarged to 1024x768 but you can notice that the part of the 640x480 previous screen didn't enlarge but moved to upper left corner. Then, display is normal during OOBE process and I don't have to confirm screen resolution I don't slipstream Video Driver or other drivers. Somebody have a solution to enlarge the setup screen since VituaBox and most of system support at less 800x600? Set 800x600 in nLite options don't work for me. I think nLite use the winnt.sif tweak Or this is happen only with VirtualBox?
  4. If you want to create an add-on: 1- Unzip the located windowsxp-kb905474-xxx-x86.exe with Winrar or 7z. 2- You'll get wganotifypackageinner.exe. Unzip it. 3- Now, just update this one, unzip it and replace its files with your located ones. You'll have to rename legitcheckcontrol.dll 4- Rebuild the add-on by compressing files with 7z or with the makecab dos command.
  5. WGA: French download link updated to v1.9.40.0 (KB905474) windowsxp-kb905474-fra-x86.exe Bonus: French download link to PowerShell (KB926140) windowsxp-kb926140-v5-x86-fra.exe
  6. Hello, I'd like to create a very simple add-on named for instance toto.cab structured like this: (this an example) Entries.ini SYSSETUP.IN_ EXPLORER.EX_ What have I to fill in entries.ini so that "SYSSETUP.IN_ and EXPLORER.EX_" will copy and replace original files to I386 folder? Can I make sure of those files are updated before they are used in the setup process?
  7. Please see an answer to this question here
  8. So as I said above, I made a new slipstreaming test: SP0->SP2->SP3 The result is very positive, almost everything seem to work like a charm. The previous failures I noticed directly doing SP0->SP3 have disapeared. - Tasks Sequences I] Slipstream SP2 then SP3 NO BUG II] Addons: NO BUG DotNetFx_All_In_1_Addon_v2.1.cab Kels_Runtimes_addon_v4.1.CAB IE7 french (didn't try to add the hotfix update E7-WindowsXP-KB947864-x86 since I read it produces some issues with SP3) III] Unattended Setup (no added theme) NO BUG IV] Tweaks SOME FAILS V] Options NO BUG VI] Components NO BUG - Presets with detailed failures [Main] Env = 1.4.5 - 2.0.50727.1433.Microsoft Windows NT 5.1.2600 Service Pack 2 Target = Windows XP Professionnel SP3 - 5.1.2600.5512 - Français (France) [Tasks] Service Pack Integration Remove Components Unattended Setup Hotfixes and Update Packs Tweaks Create a Bootable ISO Options [Components] ;# Applications # Briefcase Internet Games Paint Pinball ;# Keyboards # Afghan keyboard Albanais keyboard Allemand (IBM) keyboard Allemand (Suisse) keyboard Allemand keyboard Anglais étendu (Royaume-Uni) keyboard Arabe (101) keyboard Arabe (102) AZERTY keyboard Arabe (102) keyboard Arménien (Est) keyboard Arménien (Ouest) keyboard Azéri cyrillique keyboard Azéri latin keyboard Belge (point) keyboard Belge (virgule) keyboard Bengali (Inscript) keyboard Bengali keyboard Biélorusse keyboard Bosniaque cyrillique keyboard Bosniaque keyboard Bulgare (latin) keyboard Bulgare keyboard Canadien multilingue standard keyboard Chinois (simplifié) - clavier américain keyboard Chinois (simplifié) - Microsoft Pinyin IME 3.0 keyboard Chinois (simplifié) - NeiMa keyboard Chinois (simplifié) - QuanPin keyboard Chinois (simplifié) - ShuangPin keyboard Chinois (simplifié) - ZhengMa keyboard Chinois (traditionnel) - alphanumérique keyboard Chinois (traditionnel) - ChangJie keyboard Chinois (traditionnel) - clavier américain keyboard Chinois (traditionnel) - code Big5 keyboard Chinois (traditionnel) - DaYi keyboard Chinois (traditionnel) - Matrice keyboard Chinois (traditionnel) - nouveau ChangJie keyboard Chinois (traditionnel) - nouvelle phonétique keyboard Chinois (traditionnel) - phonétique keyboard Chinois (traditionnel) - Rapide keyboard Chinois (traditionnel) - Unicode keyboard Coréen keyboard Croate keyboard Danois keyboard Devanagari - INSCRIPT keyboard Divehi Machine à écrire keyboard Divehi phonétique keyboard Espagnol (variante) keyboard Espagnol keyboard Estonien keyboard États-Unis - Dvorak pour droitier keyboard États-Unis - Dvorak pour gaucher keyboard États-Unis Dvorak keyboard États-Unis International keyboard Farsi keyboard Féroïen keyboard Finnois et same keyboard Finnois keyboard Français (Belgique) keyboard Français (Canada) keyboard Français (Suisse) keyboard Français traditionnel (Canada) keyboard Gaélique keyboard Géorgien keyboard Grec (220) keyboard Grec (220) latin keyboard Grec (319) keyboard Grec (319) latin keyboard Grec keyboard Grec latin keyboard Grec polytonique keyboard Gujarati keyboard Hébreu keyboard Hindi traditionnel keyboard Hongrois 101 touches keyboard Hongrois keyboard IBM Lituanien keyboard Inuktitut latin keyboard Irlandais keyboard Islandais keyboard Italien (142) keyboard Italien keyboard Japonais keyboard Kannada keyboard Kazakh keyboard Kirghyz cyrillique keyboard Latino-américain keyboard Letton (Qwerty) keyboard Letton keyboard Lituanien keyboard Luxembourgeois keyboard Macédonien (Ex Rép. yougoslave de) keyboard Malayalam keyboard Maltais 47 touches keyboard Maltais 48 touches keyboard Maori keyboard Marathi keyboard Mongol cyrillique keyboard Néerlandais keyboard Népalais keyboard Norvégien et same keyboard Norvégien keyboard Ourdou keyboard Ouzbek cyrillique keyboard Pendjabi keyboard Polonais (214) keyboard Polonais (programmeurs) keyboard Portugais (Brésil ABNT2) keyboard Portugais (Brésilien ABNT) keyboard Portugais keyboard Roumain keyboard Royaume-Uni keyboard Russe (machine à écrire) keyboard Russe keyboard Same étendu (Finlande/Suède) keyboard Same étendu (Norvège) keyboard Serbe (cyrillique) keyboard Serbe (latin) keyboard Slovaque (Qwerty) keyboard Slovaque keyboard Slovène keyboard Suédois et same keyboard Suédois keyboard Syrien keyboard Syrien phonétique keyboard Système de saisie coréen (IME 2000) keyboard Système de saisie japonais (MS-IME2002) keyboard Table d'anglais (États-Unis) pour IBM arabe 238_L keyboard Tamoul keyboard Tatar keyboard Tchèque (programmeurs) keyboard Tchèque (Qwerty) keyboard Tchèque keyboard Télougou keyboard Thaï Kedmanee (sans verrouillage majuscule) keyboard Thaï Kedmanee keyboard Thaï Pattachote (sans verrouillage majuscule) keyboard Thaï Pattachote keyboard Turc F keyboard Turc Q keyboard Ukrainien keyboard Vietnamien keyboard ;# Multimedia # Movie Maker Windows Sounds ;# Network # MSN Explorer Windows Messenger ;# Operating System Options # .NET Framework Blaster/Nachi removal tool Tour ;# Services # Messenger ;# Directories # docs support valueadd ;# Compatibility # Compat01 Compat02 Compat03 Compat04 Compat06 Compat07 Compat08 Compat09 Compat11 Compat14 Compat16 [KeepFiles] msconfig.exe [RemoveFiles] clock.avi yahoo.bmp swtchbrd.bmp [Options] CABMerge ClassicSetup DisableFreereq DisableMinMem OemBranding DupeFiles ProfilesDir = "%SystemDrive%\Documents and Settings" TargetPath = "WINDOWS" temp_dir = %SystemDrive%\Temp AdvTweaks [Patches] TcpIp = 100 DoUxTheme DoSFC [services2] SSDPSRV,4 upnphost,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 FAILS Desktop-Internet Explorer icon-Show Desktop-Wrap icon titles-Disable 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-Launch folder windows in a separate process Explorer-Show Drive Letters in front of Drive Names Explorer-Show extensions of known file-types Explorer-Show the full path in the Address Bar Explorer-Show the full path in the Title Bar My Computer-Add Device Manager to Context Menu My Computer-Add Event Viewer to Context Menu My Computer-Add Fonts Folder My Computer-Add Registry Editor to Context Menu Performance-Processor scheduling-Programs Performance-Run 16-bit Windows applications in a separate process Privacy-Remove Alexa Start Menu-Add Administrative Tools menu Start Menu-Control Panel-Display as a menu Start Menu-My Computer-Display as a menu Start Menu-My Documents-Display as a menu Start Menu-My Music-Display as a menu Start Menu-My Pictures-Display as a menu Start Menu-Network Connections-Link to Network Connections folder Start Menu-Number of programs on Start menu-10 Start Menu-Printers and Faxes-Display as a link Start Menu-Reduce popup delay Start Menu-Remove Windows Catalog shortcut Start Menu-Scroll Programs Taskbar-Disable Hide inactive icons Taskbar-Disable Language-Bar Taskbar-Lock the Taskbar-No Visual Effects-Keyboard shortcut underline-Enable [unattended] UnattendMode = 0 ComputerType = Automatic Resolution = 1024x768 BitsPerPel = 32 bit (True Color) MaximumDataStorePercentOfDisk = 10 RestorePointLife = 30 DesktopTheme = Default|| AutoUpdates = 4 AutoUDay = 5 AutoUHour = 15 ProgFilesPath = "\Program Files" [NetAdapter1] connname = "" macaddress = "" ipaddress = "192.168.0.1" subnetmask = "255.255.255.0" defaultgateway = "" dnsserver1 = "" dnsserver2 = "" winsserver = "" netbiossetting = "0" ipxnetworknumber = "00000000" ipxnetworkframetype = "0xFF" [NetAdapter2] connname = "" macaddress = "" ipaddress = "192.168.0.2" subnetmask = "255.255.255.0" defaultgateway = "" dnsserver1 = "" dnsserver2 = "" winsserver = "" netbiossetting = "0" ipxnetworknumber = "00000000" ipxnetworkframetype = "0xFF" [NetAdapter3] connname = "" macaddress = "" ipaddress = "192.168.0.3" subnetmask = "255.255.255.0" defaultgateway = "" dnsserver1 = "" dnsserver2 = "" winsserver = "" netbiossetting = "0" ipxnetworknumber = "00000000" ipxnetworkframetype = "0xFF" [GuiRunOnce] [Drivers] [Hotfixes] D:\Sauvegardes\CD_Xp_SP2\nLite\Add-ons\1 - RUNTIMES + FRAMEWORKS\DotNetFx_All_In_1_Addon_v2.1.cab D:\Sauvegardes\CD_Xp_SP2\nLite\Add-ons\1 - RUNTIMES + FRAMEWORKS\Kels_Runtimes_addon_v4.1.CAB D:\Sauvegardes\CD_Xp_SP2\nLite\Add-ons\2 - IE7\IE7-WindowsXP-x86-fra.exe - Conclusion I didn't recommend to slipstream directly SP3 upon SP0 because some failures (see here) If you follow my preset above everything will be fine. Everybody say : "NUHI !!!"
  9. What about IE icon on desktop or at least in the start menu? Is it here? mmmh... I wonder what would happen if I slipstreamed SP2 on SP0 before I add SP3. May sounds crazy or at least useless but... Did someone try that? I look forward to testing a next release that corrects some stuffs or at least other feedbacks about slipstreamed SP0 with SP3. Some claims SP0->SP3 (using slipstreaming) should not be a problem. However SP2->SP3 seems to product different effects, so... what about SP0->SP2->SP3 in the same breath using nlite slipstreaming? Will the result be the same as SP2->SP3? Calls for testing I'll do if nobody hasn't did it yet. PS: I've updated my previous post cause slipstream SP3 causes at least an issue: I noticed that my dependency tabs were missing in the service setting boxes. No other tweaks or components remove, just slipstream SP3 on SP0 XP PRO (nLite 1.45 final)
  10. nLite 1.4.5 (.3) Final - Honey Turbo BASIC TESTING - GOAL: XP PRO SP0 Sliptreamed with SP3 with or without tweaks (no addons testing yet) I proceeded by testing after each added task on Virtual Box 1.6. I merged them into a single preset ini file for summarizing. - Tasks Sequences I] Slipstream SP3 at least an issue: I noticed that my dependency tabs were missing in the service setting boxes II] Unattended Setup (no added theme) NO BUG III] Tweaks SOME FAILS IV] Options SOME FAILS V] Components NO BUG - Presets with detailed failures [Main] Env = 1.4.5 - 2.0.50727.1433.Microsoft Windows NT 5.1.2600 Service Pack 2 Target = Windows XP Professionnel SP0 - 5.1.2600.0 - Français (France) [Tasks] Service Pack Integration Remove Components Unattended Setup Tweaks Create a Bootable ISO Options [Components] ;# Applications # Jeux sur Internet Options d'accessibilité Paint Pinball Porte-documents ;# Claviers # Afghan clavier Albanais clavier Allemand (IBM) clavier Allemand (Suisse) clavier Allemand clavier Anglais étendu (Royaume-Uni) clavier Arabe (101) clavier Arabe (102) AZERTY clavier Arabe (102) clavier Arménien (Est) clavier Arménien (Ouest) clavier Azéri cyrillique clavier Azéri latin clavier Belge (point) clavier Belge (virgule) clavier Bengali (Inscript) clavier Bengali clavier Biélorusse clavier Bosniaque clavier Bosniaque cyrillique clavier Bulgare (latin) clavier Bulgare clavier Canadien multilingue standard clavier Chinois (simplifié) - clavier américain clavier Chinois (simplifié) - Microsoft Pinyin IME 3.0 clavier Chinois (simplifié) - NeiMa clavier Chinois (simplifié) - QuanPin clavier Chinois (simplifié) - ShuangPin clavier Chinois (simplifié) - ZhengMa clavier Chinois (traditionnel) - alphanumérique clavier Chinois (traditionnel) - ChangJie clavier Chinois (traditionnel) - clavier américain clavier Chinois (traditionnel) - code Big5 clavier Chinois (traditionnel) - DaYi clavier Chinois (traditionnel) - Matrice clavier Chinois (traditionnel) - nouveau ChangJie clavier Chinois (traditionnel) - nouvelle phonétique clavier Chinois (traditionnel) - phonétique clavier Chinois (traditionnel) - Rapide clavier Chinois (traditionnel) - Unicode clavier Coréen clavier Croate clavier Danois clavier Devanagari - INSCRIPT clavier Divehi Machine à écrire clavier Divehi phonétique clavier Espagnol (variante) clavier Espagnol clavier Estonien clavier États-Unis - Dvorak pour droitier clavier États-Unis - Dvorak pour gaucher clavier États-Unis Dvorak clavier États-Unis International clavier Farsi clavier Féroïen clavier Finnois clavier Finnois et same clavier Français (Belgique) clavier Français (Canada) clavier Français (Suisse) clavier Français traditionnel (Canada) clavier Gaélique clavier Géorgien clavier Grec (220) clavier Grec (220) latin clavier Grec (319) clavier Grec (319) latin clavier Grec clavier Grec latin clavier Grec polytonique clavier Gujarati clavier Hébreu clavier Hindi traditionnel clavier Hongrois 101 touches clavier Hongrois clavier IBM Lituanien clavier Inuktitut latin clavier Irlandais clavier Islandais clavier Italien (142) clavier Italien clavier Japonais clavier Kannada clavier Kazakh clavier Kirghyz cyrillique clavier Latino-américain clavier Letton (Qwerty) clavier Letton clavier Lituanien clavier Luxembourgeois clavier Macédonien (Ex Rép. yougoslave de) clavier Malayalam clavier Maltais 47 touches clavier Maltais 48 touches clavier Maori clavier Marathi clavier Mongol cyrillique clavier Néerlandais clavier Népalais clavier Norvégien clavier Norvégien et same clavier Ourdou clavier Ouzbek cyrillique clavier Pendjabi clavier Polonais (214) clavier Polonais (programmeurs) clavier Portugais (Brésil ABNT2) clavier Portugais (Brésilien ABNT) clavier Portugais clavier Roumain clavier Royaume-Uni clavier Russe (machine à écrire) clavier Russe clavier Same étendu (Finlande/Suède) clavier Same étendu (Norvège) clavier Serbe (cyrillique) clavier Serbe (latin) clavier Slovaque (Qwerty) clavier Slovaque clavier Slovène clavier Suédois clavier Suédois et same clavier Syrien clavier Syrien phonétique clavier Système de saisie coréen (IME 2000) clavier Système de saisie japonais (MS-IME2002) clavier Table d'anglais (États-Unis) pour IBM arabe 238_L clavier Tamoul clavier Tatar clavier Tchèque (programmeurs) clavier Tchèque (Qwerty) clavier Tchèque clavier Télougou clavier Thaï Kedmanee (sans verrouillage majuscule) clavier Thaï Kedmanee clavier Thaï Pattachote (sans verrouillage majuscule) clavier Thaï Pattachote clavier Turc F clavier Turc Q clavier Ukrainien clavier Vietnamien clavier ;# Multimédia # Échantillons musicaux Magnétophone et ancien lecteur CD Sons Windows Windows Movie Maker ;# Options du système d'exploitation # Assistant de recherche Visite guidée Windows ;# Réseau # MSN Explorer Windows Messenger ;# Services # Messenger Onduleurs Pilote du Bip Registre à distance Stockage amovible ;# Compatibilité # Compat01 Compat02 Compat03 Compat04 Compat06 Compat07 Compat08 Compat09 Compat11 Compat13 Compat14 Compat15 Compat16 [KeepFiles] msconfig.exe [RemoveFiles] clock.avi yahoo.bmp swtchbrd.bmp [Options] ClassicSetup DisableFreereq DisableMinMem OemBranding DupeFiles ProfilesDir = "%SystemDrive%\Documents and Settings" TargetPath = "WINDOWS" temp_dir = %SystemDrive%\Temp keep being %USERPROFILE%\Local Settings\Temp RemoveMUI AdvTweaks [Patches] TcpIp = 100 DoUxTheme DoSFC [services2] No way to customise them, default is always considered SSDPSRV,4 upnphost,4 [Tweaks] didn't check all of them 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 Desktop-Internet Explorer icon-Show Fails even in start menu. After install IE6 is not automatically considered as the default web browser. Don't know if it is normal after a XP SP0 clean install, didn't try. Desktop-Wrap icon titles-Disable 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-Launch folder windows in a separate process Explorer-Show Drive Letters in front of Drive Names Explorer-Show extensions of known file-types Explorer-Show Statusbar in all windows Explorer-Show the full path in the Address Bar Explorer-Show the full path in the Title Bar My Computer-Add Device Manager to Context Menu My Computer-Add Event Viewer to Context Menu My Computer-Add Fonts Folder My Computer-Add Registry Editor to Context Menu Performance-Processor scheduling-Programs Performance-Run 16-bit Windows applications in a separate process Privacy-Remove Alexa Start Menu-Add Administrative Tools menu Start Menu-Control Panel-Display as a menu Start Menu-My Computer-Display as a link Start Menu-My Documents-Display as a menu Start Menu-My Music-Display as a menu Start Menu-My Pictures-Display as a menu Start Menu-Network Connections-Link to Network Connections folder Start Menu-Number of programs on Start menu-10 Start Menu-Printers and Faxes-Display as a link Start Menu-Reduce popup delay Start Menu-Remove Windows Catalog shortcut Start Menu-Scroll Programs Taskbar-Disable Hide inactive icons Taskbar-Disable Language-Bar Taskbar-Lock the Taskbar-No Visual Effects-Keyboard shortcut underline-Enable [unattended] ComputerType = Automatic Resolution = 1280x1024 MaximumDataStorePercentOfDisk = 10 RestorePointLife = 30 DesktopTheme = Default|| AutoUpdates = 4 AutoUDay = 5 AutoUHour = 15 ProgFilesPath = "\Program Files" [NetAdapter1] connname = "" macaddress = "" ipaddress = "192.168.0.1" subnetmask = "255.255.255.0" defaultgateway = "" dnsserver1 = "" dnsserver2 = "" winsserver = "" netbiossetting = "0" ipxnetworknumber = "00000000" ipxnetworkframetype = "0xFF" [GuiRunOnce] [Drivers] [Hotfixes] I will do other testing later. Hope it helps NUHI Edit: See new tests here Debug_preset.ini
  11. Thanx for the v1.6 beta, seems to work fine. I translated it into french Please see the .ini file in attachement French.ini
×
×
  • Create New...