yourtech Posted April 18, 2004 Posted April 18, 2004 ok woops...seems that the compiled.txt i posted before wasn't even close to being the complete file. The one im working on was around 300+K and i've gotten it down to about 250k if anyone can lift the 150k restriction on this puppy n/m doh - now RAR'd revision 2.0All.RegTweaks.of.this.list.Compiled.upto.today__needs_cleanup_.rar
medhunter Posted April 18, 2004 Posted April 18, 2004 Medhunger,Please do which one ?1 or 2? here is my humble little poor fileregtweaks.reg
medhunter Posted April 18, 2004 Posted April 18, 2004 ah ; sorry a little mistake here after downloading the file DONOT run it or it will try to merge into ur regestry.just rt click -- open with notepad
medhunter Posted April 18, 2004 Posted April 18, 2004 Medhunger,Please do tragic? That doesnt sound too good. ugh I've had it for over 5 years now and it's not getting any better I really should get the operation but my doctor doesnt seem to interested in passing through the referral to the neuro.Don't panic ,man 1-I 'am talking just theoritically ; have seen some cases progressed to complete distal anasthesia , complete LMNL ;weakness of the most important muscles of the hand but after over 20 years of complete ignorance about it & neglection.2-I wanna make u seek proper medical advice ; not more & since u did never mind ;just do as ur doctor said (medical ethics state so).btw; u mentioned 5 years ; this is not so longbut how old r u now?@ last I must state a consultation of a nerologist & a surgeon may be needed for full coverage & feel satisfied & follow up ; unfortounately I am not neither nerologist nor a surgeonah ; I PMed u my mail waiting 4 ur mail now I hope
yourtech Posted April 18, 2004 Posted April 18, 2004 muchos gracias senior and just sent you an email
FrankE9999 Posted April 18, 2004 Posted April 18, 2004 [HKEY_USERS\.DEFAULT\Console] ;Quick Edit the Command Prompt (Windows NT/2000/XP) (0 = disabled, 1 = enabled) "QuickEdit"=dword:1[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders] ;Redirect My Documents folder to H:\My Documents "Personal"=hex(2):48,3a,5c,4d,79,20,44,6f,63,75,6d,65,6e,74,73,00;Disable simple file sharing XP Pro in a Workgroup[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]"forceguest"=dword:00000000Since this affects the security of your system you should read the following articles before making this change.http://www.microsoft.com/resources/documen...de_ffs_ypuh.asphttp://www.wown.com/articles_tutorials/wxpsimsh.html
jonedeuf Posted April 18, 2004 Posted April 18, 2004 Adding Defrag in right click menu on drive icon:Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\Drive\shell\Defrag][HKEY_CLASSES_ROOT\Drive\shell\Defrag\command]@="DEFRAG.EXE %1"For O&O Defrag Users:copy oodcmd.exe to windir (i.e. c:\windows) and use following lines:Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\Drive\shell\Defrag][HKEY_CLASSES_ROOT\Drive\shell\Defrag\command]@="OODCMD.EXE /NOWAIT /NOHEADER /OUTPUTFILE:oo_log.txt /STEALTH:%1"A oo_log.txt file will be created on root drive when finishing job
nOBeLium Posted April 19, 2004 Posted April 19, 2004 Anyone can help me making my default FOLDER VIEW to "LIST VIEW" by a reg tweak?Thank you,
FrankE9999 Posted April 21, 2004 Posted April 21, 2004 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams];Folders View (details) "Settings"=hex:08,00,00,00,04,00,00,00,01,00,00,00,00,77,7e,13,73,35,cf,11,ae,\ 69,08,00,2b,2e,12,62,04,00,00,00,01,00,00,00,43,00,00,00The above key will set all folders to detail view. However this only works if the user isn't logged on. I import this into the default user profile during the unattended install. Under Windows 2000 the following key seems to control the Arrange Icons.REGEDIT4[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\DeskView]"Settings"=hex:01,00,00,00,21,02,00,00,However the only way I could get it to work was kill the explorer shell, import the register file and restart the shell. This information may be useful is you are trying to import into the default user profile during an unattended install.
Deathmasher Posted April 21, 2004 Posted April 21, 2004 here are a couple reg tweeks that I needI need to add the IE and My Documents icons to my desktop, I found on to do mycomputer and my network just can't seam to find one for IE.Then I need to not group like items in the taskbar and not hid inactive items in the taskbar. Thanks for the help
nOBeLium Posted April 21, 2004 Posted April 21, 2004 Thanks FrankE9999 for the help.I didn't use your tweak because I just found a file here, in MSFN forum, compiled02.txt, that has instructions to do it so. Thanks anyway!!
Deathmasher Posted April 21, 2004 Posted April 21, 2004 nOBeLium what was the line that let you do that? If you could post it that would be awesome
tim Posted April 21, 2004 Posted April 21, 2004 Out of interest I have been checking out this tweak[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{36FC9E60-C465-11CF-8056-444553540000}\0000]"IdleEnable"=dword:00000001This will only have an effect on the first USB controller.There may be more controller keys.The 4 digit number at the right end increases with each extra controller or USB device.So here it is. My very first ever VBscript.I only started reading the book this morning This will go thru the numbered keys and update only the ones related to controllers.It is designed to be run with CScript (command prompt, text output).'Initialization SectionConst UsbClass = "HKLM\SYSTEM\CurrentControlSet\Control\Class\{36FC9E60-C465-11CF-8056-444553540000}\"'Set up an instance of the WSS objectSet WSS = WScript.CreateObject("WScript.Shell")'Try deal with any errorsOn Error Resume Next 'Check if main key exists firstRegOut = WSS.RegRead(UsbClass & "Class")'Not found, DOH! Never mindIf Err <> 0 then WScript.Echo "Main registry key not found, nothing to do!" Err.Clear Set WSS = Nothing Wscript.QuitEnd ifWScript.Echo "Main key found, now scanning..."'It won't actually do this manyFor i = 10000 to 10999 UsbSub = Right(Cstr(i),4)'Check if the InfPath value exists RegOut = WSS.RegRead(UsbClass & UsbSub & "\InfPath")'If no InfPath then we are done! If Err <> 0 then Exit For'We are only interested in Controller keys RegOut = WSS.RegRead(UsbClass & UsbSub & "\Controller") If Err = 0 then 'IdleEnable already there? RegOut = WSS.RegRead(UsbClass & UsbSub & "\IdleEnable")'If not treat it as being zero If Err <> 0 then RegOut = 0 Err.Clear Else'Protect against silliness If IsNumeric(RegOut) = False then RegOut = 0 End if'Update if required If Regout = 0 then WSS.RegWrite UsbClass & UsbSub & "\IdleEnable", "1", "REG_DWORD" WScript.Echo "Controller " & UsbSub & " IdleEnable updated" Else WScript.Echo "Controller " & UsbSub & " IdleEnable already set" End if Else WScript.Echo "Key " & UsbSub & " is not a controller" Err.Clear End if NextSet WSS = NothingWscript.QuitIt bloody well works I tell ya!!!!
FrankE9999 Posted April 22, 2004 Posted April 22, 2004 This adds a Command Prompt Here option to files, folders (including system folders such as favorites) and drives. I call it Command Prompt Everywhere.reg.REGEDIT4[HKEY_CLASSES_ROOT\Drive\shell\Command Prompt Here]@="Command &Prompt Here"[HKEY_CLASSES_ROOT\Drive\shell\Command Prompt Here\command]@="cmd.exe /k cd \"%l\""[HKEY_CLASSES_ROOT\Directory\shell\Command Prompt Here]@="Command &Prompt Here"[HKEY_CLASSES_ROOT\Directory\shell\Command Prompt Here\command]@="cmd.exe /k cd \"%l\""[HKEY_CLASSES_ROOT\Folder\shell\Command Prompt Here]@="Command &Prompt Here"[HKEY_CLASSES_ROOT\Folder\shell\Command Prompt Here\command]@="cmd.exe /k cd \"%l\""[HKEY_CLASSES_ROOT\*\shell\Command Prompt Here]@="Command &Prompt Here"[HKEY_CLASSES_ROOT\*\shell\Command Prompt Here\command]@="cmd.exe /k cd \"%l\\..\""
aknott Posted April 23, 2004 Posted April 23, 2004 here are my registry tweaksfirst thx to all of you cause i got some tweaks from here and hereI also used regmon to find some tweaks by modifiyng them and view where the modifs where madesorry for the comments in french...and then be careful with the services tweaksthey are for my use and configuration and may cause some pbs with other here they are :REGEDIT4;----------------------HKCR;Disable Windows Picture and Fax Viewer[-HKEY_CLASSES_ROOT\SystemFileAssociations\image\ShellEx\ContextMenuHandlers\ShellImagePreview];Remove the Queue-it-up, Burn to CD right click options on Windows Media Player files.[-HKEY_CLASSES_ROOT\CLSID\{F1B9284F-E9DC-4e68-9D7E-42362A59F0FD}][-HKEY_CLASSES_ROOT\CLSID\{8DD448E6-C188-4aed-AF92-44956194EB1F}];Disables Preview of Movie file formats (allowing you to move/rename/delete without errors)[-HKEY_CLASSES_ROOT\.avi\ShellEx][-HKEY_CLASSES_ROOT\.mpg\ShellEx][-HKEY_CLASSES_ROOT\.mpe\ShellEx][-HKEY_CLASSES_ROOT\.mpeg\ShellEx];ajoute services et ajouter/supprimer programmes dans le menu contextuel poste de travail[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services]@="Services"[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services\command]@="c:\\windows\\system32\\mmc.exe \"c:\\windows\\system32\\services.msc\""[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\AddPrgr]@="Ajout/Suppression de programmes"[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\AddPrgr\command]@="rundll32.exe shell32.dll,Control_RunDLL \"appwiz.cpl\"";Accelere acces aux fichiers VIDEOS[-HKEY_CLASSES_ROOT\CLSID\{87D62D94-71B3-4b9a-9489-5FE6850DC73E}][-HKEY_CLASSES_ROOT\SystemFileAssociations\.avi\shellex\PropertyHandler][-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{87D62D94-71B3-4b9a-9489-5FE6850DC73E}\InProcServer32];ajout du controle utilisateurs mode 2000 dans le panneau de config[HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}]@="Comptes d'utilisateurs 2""InfoTip"="Lance l'outils de gestion des comptes d'utilisateurs style Windows 2000"[HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}\DefaultIcon]@="%SystemRoot%\\\\System32\\\\SHELL32.dll,160"[HKEY_CLASSES_ROOT\CLSID\{98641F47-8C25-4936-BEE4-C2CE1298969D}\Shell\Open\command]@="Control Userpasswords2";This adds the "Open Command Window Here" on the right-click menu for folders[HKEY_CLASSES_ROOT\Directory\shell\cmd]@="Fenetre DOS Ici"[HKEY_CLASSES_ROOT\Directory\shell\cmd\command]@="cmd.exe /k \"cd %L\"";et ceci le explorer ici par defaut[HKEY_CLASSES_ROOT\Folder\shell]@="rootexplore"[HKEY_CLASSES_ROOT\Folder\shell\rootexplore]@="Explore From Here"[HKEY_CLASSES_ROOT\Folder\shell\rootexplore\command]@="Explorer.exe /e,/root,/idlist,%I"[HKEY_CLASSES_ROOT\CLSID\{450D8FBA-AD25-11D0-98A8-0800361B1103}]"SortOrderIndex"=dword:00000054[-HKEY_CLASSES_ROOT\.zip\CompressedFolder][-HKEY_CLASSES_ROOT\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}};---------------------------------------------------------------------------;----------------------HKCU SOFTWARE;TMP=TEMP=C:\TEMP[HKEY_CURRENT_USER\Environment]"TEMP"=hex(2):25,53,59,53,54,45,4d,44,52,49,56,45,25,5c,54,45,4d,50,00"TMP"=hex(2):25,53,59,53,54,45,4d,44,52,49,56,45,25,5c,54,45,4d,50,00;options diverses[HKEY_CURRENT_USER\Control Panel\Desktop]"WaitToKillAppTimeout"="2000""AutoEndTasks"="1""ForegroundFlashCount"=dword:00000001"HungAppTimeout"="2000" "FontSmoothingType"=dword:00000002"FontSmoothing"="2""CoolSwitchColumns"="8""CoolSwitchRows"="5";Desactive barre des langues[HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar]"ShowStatus"=dword:00000003;pas de liste des messages non lus[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\UnreadMail\]"MessageExpiryDays"=dword:00000000;welcome[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]"RunCount"=dword:00000000;options menu demarrer[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]"NoDriveTypeAutoRun"=hex:b5,00,00,00"NoStartMenuEjectPC"=dword:00000001"NoStartMenuMFUprogramsList"=dword:00000001"ForceClassicControlPanel"=dword:00000001"StartMenuLogoff"=dword:00000000"NoSMBalloonTip"=dword:00000000"NoLowDiskSpaceChecks"=dword:00000001"HideClock"=dword:00000001;10 downloads in IE[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]"MaxConnectionsPerServer"=dword:0000000a"MaxConnectionsPer1_0Server"=dword:0000000a;page de recherche IE[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]"Search Page"="http://www.google.fr""Search Bar"="http://www.google.fr/ie"[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchURL]""="http://www.google.fr/keyword/%s";Vide cache IE sur sortie[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache]"Persistent"=dword:00000000;options de recherche[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]"SearchSystemDirs"=dword:00000001"SearchHidden"=dword:00000001"SeparateProcess"=dword:00000001"IncludeSubFolders"=dword:00000001"DesktopProcess"=dword:00000001"BrowseNewProcess"="Yes""Link"=hex:00,00,00,00;affichage des tips[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\tips]"Show"=dword:00000000;plusieurs process explorateur[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BrowseNewProcess]"BrowseNewProcess"="yes";assistant de recherche[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]"Use Search Asst"="no";nettoyage du bureau[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz]"NoRun"=dword:00000001;icones du bureau[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]"{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000001"{208D2C60-3AEA-1069-A2D7-08002B30309D}"=dword:00000001"{450D8FBA-AD25-11D0-98A8-0800361B1103}"=dword:00000000"{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000;options Explorateur Menu, recherche[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"Hidden"=dword:00000001"ShowCompColor"=dword:00000001"HideFileExt"=dword:00000000"DontPrettyPath"=dword:00000000"ShowInfoTip"=dword:00000000"HideIcons"=dword:00000000"MapNetDrvBtn"=dword:00000000"WebView"=dword:00000000"Filter"=dword:00000000"SuperHidden"=dword:00000001"SeparateProcess"=dword:00000001"ListviewAlphaSelect"=dword:00000001"ListviewShadow"=dword:00000001"ListviewWatermark"=dword:00000001"TaskbarAnimations"=dword:00000001"StartMenuInit"=dword:00000002"StartButtonBalloonTip"=dword:00000000"TaskbarSizeMove"=dword:00000000"TaskbarGlomming"=dword:00000000"StartMenuChange"=dword:00000001"StartMenuRun"=dword:00000001"StartMenuFavorites"=dword:00000000"StartMenuAdminTools"=dword:00000001"StartMenuScrollPrograms"="YES""CascadePrinters"="YES""CascadeControlPanel"="YES""CascadeNetworkConnections"="YES""CascadeMyDocuments"="NO""CascadeMyPictures"="NO""IntelliMenus"="No""ShowSuperHidden"=dword:00000001"WebViewBarricade"=dword:00000001"FolderContentsInfoTip"=dword:00000000"FriendlyTree"=dword:00000000"ClassicViewState"=dword:00000001"DisableThumbnailCache"=dword:00000001"NoNetCrawling"=dword:00000000"PersistBrowsers"=dword:00000000"EnableBalloonTips"=dword:00000000"Start_LargeMFUIcons"=dword:00000000"Start_MinMFU"=dword:00000000"Start_ShowMyDocs"=dword:00000000"Start_ShowRecentDocs"=dword:00000000"Start_ShowRun"=dword:00000001"Start_ShowMyPics"=dword:00000000"Start_ShowMyMusic"=dword:00000000"Start_ShowMyComputer"=dword:00000002"Start_ShowControlPanel"=dword:00000002"Start_ShowHelp"=dword:00000000"Start_ShowSearch"=dword:00000001"Start_ShowNetConn"=dword:00000000"Start_ShowPrinters"=dword:00000000"Start_AdminToolsRoot"=dword:00000002"Start_EnableDragDrop"=dword:00000001"Start_ScrollPrograms"=dword:00000000"Start_AutoCascade"=dword:00000001"Start_NotifyNewApps"=dword:00000000"Start_ShowNetPlaces_ShouldShow"=dword:00000041"Start_ShowNetPlaces"=dword:00000000;---------------------------------------------------------------------------;-----------------------HKLM Software;Accepter Acrobat EULA[HKEY_LOCAL_MACHINE\SOFTWARE\Adobe\Acrobat Reader\6.0\AdobeViewer]"EULA"=dword:00000001;supprimer visu attribut dossier compresse[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CompressedFolder];Désactive Defrag au boot[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]"Enable"="N";Descative Error Reporting[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting]"AllOrNone"=dword:00000001"DoReport"=dword:00000001"IncludeKernelFaults"=dword:00000000"IncludeMicrosoftApps"=dword:00000000"IncludeWindowsApps"=dword:00000000"ShowUI"=dword:00000000;assistant de recherche IE[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Search]"SearchAssistant"="http://www.google.fr/ie";Desactive Win Update AUTO[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]"NoAutoUpdate"=dword:00000001;Desactive Win Update AUTO[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update]"AUOptions"=dword:00000001"AUState"=dword:00000007;desactive Windows Tour bubble popup[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]"RunCount"=dword:00000000;image perso pour compte eric[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Hints\eric]"PictureSource"="C:\\Documents and Settings\\All Users\\Application Data\\Microsoft\\User Account Pictures\\eric.bmp";image administrateur[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Hints\Administrateur]"PictureSource"="C:\\Documents and Settings\\All Users\\Application Data\\Microsoft\\User Account Pictures\\Administrateur.bmp"[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer];decharge dll "AlwaysUnloadDLL"="1";Cache more Icons"Max Cached Icons"="8192";delete "shared documents"[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\DelegateFolders\{59031a47-3f72-44a7-89c5-5595fe6b30ee}];Supprimer taches dans voisinage reseau[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}];ajouter gestion utilisateurs mode 2K[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{98641F47-8C25-4936-BEE4-C2CE1298969D}]@="Ajout de Userpasswords2 au Panneau de configuration";desactive Rechercher sur internet pour ouvrir avec[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]"NoInternetOpenWith"=dword:00000001;pas de ballon cliquez ici[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]"NoStartBanner"=hex:01;Pas de dossiers partages[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]"NoSharedDocuments"=dword:00000001;Descative Windows File Protection[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]"SFCDisable"=dword:ffffff9d"SFCscan"=dword:00000000;Descative System Restore[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore]"DisableSR"=dword:00000001;Desactive demande de PASSWORD ds console de recuperation et autorise commande SET[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole]"SetCommand"=dword:00000001"SecurityLevel"=dword:00000001; PAGE D'ACCUEIL;voir administrateur dans page d'accueil[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]"Administrateur"=dword:00000001;supprime l'autologon apres install[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]"DefaultUserName"=-"DefaultPassword"=-"AutoAdminLogon"=-;----------------------HKLM SYSTEM;accelere fermeture application[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]"WaitToKillServiceTimeout"="1000";accelere ntfs[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]"Win31FileSystem"=dword:00000000"Win95TruncatedExtensions"=dword:00000001"NtfsDisableLastAccessUpdate"=dword:00000001;No Reboot when crash[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]"AutoReboot"=dword:00000000;partage et securite avance[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]"ForceGuest"=dword:00000000;parametres tcp/ip adsl et cable[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]"SackOpts"=dword:00000001"TcpWindowSize"=dword:0003ebc0"Tcp1323Opts"=dword:00000001"DefaultTTL"=dword:00000040"EnablePMTUBHDetect"=dword:00000000"EnablePMTUDiscovery"=dword:00000001"GlobalMaxTcpWindowSize"=dword:0003ebc0"TcpMaxDupAcks"=dword:00000002"MTU"=dword:000005dc;augmente le nombre de dns en cache[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]"CacheHashTableBucketSize"=dword:00000001"CacheHashTableSize"=dword:00000180"MaxCacheEntryTtlLimit"=dword:0000fa00"MaxSOACacheEntryTtlLimit"=dword:0000012d[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]"SecondLevelDataCache"=dword:00000200"DisablePagingExecutive"=dword:00000001"LargeSystemCache"=dword:00000001[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]"TEMP"=hex(2):25,53,59,53,54,45,4d,44,52,49,56,45,25,5c,54,45,4d,50,00"TMP"=hex(2):25,53,59,53,54,45,4d,44,52,49,56,45,25,5c,54,45,4d,50,00;--------------------------------------SERVICES-------------------------------; 4 = Desactive: 3 = Manuel;Desactive Messenger Service (to block spam. Does not affect MSN or Windows Messenger)[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Messenger]"Start"=dword:00000004;Desactive Remote Registry Service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry]"Start"=dword:00000004;Desactive Windows Time Service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time]"Start"=dword:00000004;Desactive Automatic Updates[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv]"Start"=dword:00000004;Desactive UPS[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UPS]"Start"=dword:00000004;Desactive System Restore Service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\srservice]"Start"=dword:00000004;Desactive Indexing Service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CiSvc]"Start"=dword:00000004;Desactive Help and Support[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\helpsvc]"Start"=dword:00000004;Desactive Task Scheduler[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Schedule]"Start"=dword:00000004;Desactive Imapi CD-Burning Service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ImapiService]"Start"=dword:00000004;Desactive SSDP Discovery Service (Universal Plug'n'Play)[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SSDPSRV]"Start"=dword:00000004;Desactive Universal Plug'n'Play Service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\upnphost]"Start"=dword:00000004;Desactive gestion cartes a puces[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SCardSvr]"Start"=dword:00000004[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SCardDrv]"Start"=dword:00000004;aide et support[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\helpsvc]"Start"=dword:00000003;Client de suivi de lien distribué[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TrkWks]"Start"=dword:00000003;Configuration automatique sans fil[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WZCSVC]"Start"=dword:00000004;connexions secondaires[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\seclogon]"Start"=dword:00000004;Emplacement protégé[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ProtectedStorage]"Start"=dword:00000003;explorateur d'ordinateur[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser]"Start"=dword:00000004;gestionnaire de telechargements[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\uploadmgr]"Start"=dword:00000003;Service de numéro de série du lecteur multimédia portable[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WmdmPmSN]"Start"=dword:00000004;nvidia helper[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NVSvc]"Start"=dword:00000004;Pare-feu de connexion Internet (ICF) / Partage de connexion Internet (ICS)[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess]"Start"=dword:00000004;Service de rapport d'erreurs[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ERSvc]"Start"=dword:00000004;Service de transfert intelligent en arrière-plan[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BITS]"Start"=dword:00000004;Services de cryptographie[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CryptSvc]"Start"=dword:00000003;Services IPSEC[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent]"Start"=dword:00000004;Assistance TCP/IP NetBIOS[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LmHosts]"Start"=dword:00000004;desactive de compteur de performance (accelere transferts de fichiers)[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PartMgr]"EnableCounterForIoctl"=-take care of the [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Setup\RecoveryConsole] settings because with those parameters, anyone can use your recovery console without the admin's passwordand again many thx to everyone who put their registry tweaks
Recommended Posts