(Résolu) Comment crées des clés de registres.

Optimisation de Windows, modification du bureau.
Avatar du membre
betageek
Messages : 358
Enregistré le : mer. 25 mars 2009 02:49
Etes vous un robot ? : Non
Localisation : france

(Résolu) Comment crées des clés de registres.

Message par betageek »

bonjour à tous les amis,
ma question du jour et la suivante :
j'aimerais savoir comment crées des clés de registres.
car à chaque formatage je doit aller dans le registre et crées des clés de ceci ou cela et j'aimerais donc me les crées une bonnes fois pour toutes et n'avoir juste en fait qu'as cliquer dessus et hop elle sont automatiquement installer voilà.
si vous avez des tutoriels ou des façons de faire facile et simple vous seriez des sauveurs.
d'avance un merci s'imposent.
amitié à vous
Modifié en dernier par betageek le dim. 28 mars 2010 14:22, modifié 2 fois.
Je suis un amateur de "W7" et souhaiterais mis perfectionner, alors merci de vos aides...
Image
http://discussions-libertad.forumactif.com/
Alain Quarré
Messages : 965
Enregistré le : mer. 20 janv. 2010 23:41
Etes vous un robot ? : Non

Re: Comment crées des clés de registres.

Message par Alain Quarré »

c'est la commande REG

C'est ce que j'utilise dans mes script de déplacement des dossiers utilisateur.

par exemple, dans le script non modulaire, ça ressemble à ça:

Code : Tout sélectionner

REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Desktop" /t REG_EXPAND_SZ /d %position%%%username%%\Desktop /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "History" /t REG_EXPAND_SZ /d %position%%%username%%\History /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "My Pictures" /t REG_EXPAND_SZ /d "%position%%%username%%\Pictures" /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "My Music" /t REG_EXPAND_SZ /d "%position%%%username%%\Music" /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "My Video" /t REG_EXPAND_SZ /d "%position%%%username%%\Videos" /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Personal" /t REG_EXPAND_SZ /d %position%%%username%%\Documents /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Favorites" /t REG_EXPAND_SZ /d %position%%%username%%\Favorites /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "{374DE290-123F-4565-9164-39C4925E467B}" /t REG_EXPAND_SZ /d "%position%%%username%%\Downloads" /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "{4C5C32FF-BB9D-43B0-B5B4-2D72E54EAAA4}" /t REG_EXPAND_SZ /d "%position%%%username%%\Saved Games" /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "{56784854-C6CB-462B-8169-88E350ACB882}" /t REG_EXPAND_SZ /d "%position%%%username%%\Contacts" /f
REG ADD "HKEY_LOCAL_MACHINE\.LoadDefUser\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "{7D1D3A04-DEBB-4115-95CF-2F29DA2920DA}" /t REG_EXPAND_SZ /d "%position%%%username%%\Searches" /f
Maintenant, tu te fais un petit script basé sur le script modulaire que je fourni pour faire tes modif par un simple double clic.

++
Alain
Déplacer les dossiers utilisateur topic4073.html topic5883.html
Déplacer le dossier Public topic4396.html
PAS DE RÉPONSE TECHNIQUE PAR MP
txuku
Messages : 1411
Enregistré le : lun. 1 févr. 2010 13:41
Etes vous un robot ? : Non
Localisation : Bayonne 64
Contact :

Re: Comment crées des clés de registres.

Message par txuku »

Bonjour betageek

Tu crees un fichier .reg en prenant exemple sur celui ci - propose sur le net.

Ces interventions sur le registre valent pour XP et non Seven

Le ; permet les commentaires.

A toi d y mettre dont tu as besoin - tu peux exporter des fichiers du registre et les ajouter dans un seul fichier.

Code : Tout sélectionner

Windows Registry Editor Version 5.00

;Ceci est prevu pour une installation de XP

; ----------------
; Les services
; ----------------
; 2 = automatique
; 3 = manuel
; 4 = désactivé

;0-Accès à distance au Registre
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry]
;"Start"=dword:00000004

;1-Acquisition d'image Windows (WIA)
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\stisvc]
;"Start"=dword:00000003

;2-Affichage des messages
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Messenger]
;"Start"=dword:00000004

;3-Aide et support
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\helpsvc]
;"Start"=dword:00000004

;4-Appel de procédure distante (RPC)
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RpcSs]
;"Start"=dword:00000002

;5-Application système COM+
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\COMSysApp]
;"Start"=dword:00000003

;6-Assistance TCP/IP NetBIOS
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LmHosts]
;"Start"=dword:00000004

;7-Audio Windows
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AudioSrv]
;"Start"=dword:00000002

;8-Avertissement
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Alerter]
;"Start"=dword:00000004

;9-Carte à puce
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SCardSvr]
;"Start"=dword:00000004

;10-Carte de performance WMI
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WmiApSrv]
;"Start"=dword:00000004

;11-Cliché instantané de volume
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS]
;"Start"=dword:00000003

;12-Client de suivi de lien distribué
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TrkWks]
;"Start"=dword:00000003

;13-Client DHCP
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dhcp]
;"Start"=dword:00000002

;14-Client DNS
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache]
;"Start"=dword:00000002

;15-Compatibilité avec le Changement rapide d'utilisateur
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FastUserSwitchingCompatibility]
;"Start"=dword:00000003

;16-Configuration automatique sans fil
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WZCSVC]
;"Start"=dword:00000004

;17-Connexion secondaire
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\seclogon]
;"Start"=dword:00000004

;18-DDE réseau
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetDDE]
;"Start"=dword:00000004

;19-Détection matériel noyau
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ShellHWDetection]
;"Start"=dword:00000002

;20-Distributed Transaction Coordinator
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSDTC]
;"Start"=dword:00000003

;21-DSDM DDE réseau
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetDDEdsdm]
;"Start"=dword:00000004

;22-Emplacement protégé
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ProtectedStorage]
;"Start"=dword:00000002

;23-Explorateur d'ordinateur
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser]
;"Start"=dword:00000004

;24-Extensions du pilote WMI
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Wmi]
;"Start"=dword:00000003

;25-Fournisseur de la prise en charge de sécurité LM NT
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NtLmSsp]
;"Start"=dword:00000003

;26-Gestion d'applications
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AppMgmt]
;"Start"=dword:00000003

;27-Gestionnaire de comptes de sécurité
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SamSs]
;"Start"=dword:00000002

;28-Gestionnaire de connexion automatique d'accès distant
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasAuto]
;"Start"=dword:00000003

;29-Gestionnaire de connexions d'accès distant
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan]
;"Start"=dword:00000003

;30-Gestionnaire de disque logique
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmserver]
;"Start"=dword:00000003

;31-Gestionnaire de l'Album
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ClipSrv]
;"Start"=dword:00000004

;32-Gestionnaire de session d'aide sur le Bureau à distance
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RDSessMgr]
;"Start"=dword:00000004

;33-uploadmgr
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\uploadmgr]
;"Start"=dword:00000004

;34-Horloge Windows
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time]
;"Start"=dword:00000004

;35-Hôte de périphérique universel Plug-and-Play
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\upnphost]
;"Start"=dword:00000004

;36-Infrastructure de gestion Windows
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\winmgmt]
;"Start"=dword:00000002

;37-Journal des événements
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog]
;"Start"=dword:00000002

;38-Journaux et alertes de performance
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysmonLog]
;"Start"=dword:00000004

;39-Localisateur d'appels de procédure distante (RPC)
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RpcLocator]
;"Start"=dword:00000003

;40-MDM
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MDM]
;"Start"=dword:00000002

;41-Mises à jour automatiques
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv]
;"Start"=dword:00000002

;42-MS Software Shadow Copy Provider
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SwPrv]
;"Start"=dword:00000003

;43-NLA (Network Location Awareness)
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Nla]
;"Start"=dword:00000003

;44-Notification d'événement système
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SENS]
;"Start"=dword:00000002

;45-Portable Media Serial Number Service
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WmdmPmSN]
;"Start"=dword:00000004

;46-Onduleur
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UPS]
;"Start"=dword:00000004

;47-Ouverture de session réseau
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon]
;"Start"=dword:00000004

;48-Pare-feu Windows / Partage de connexion Internet
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess]
;"Start"=dword:00000002

;49-Partage de Bureau à distance NetMeeting
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\mnmsrvc]
;"Start"=dword:00000004

;50-Planificateur de tâches
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Schedule]
;"Start"=dword:00000002

;51-Plug-and-Play
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PlugPlay]
;"Start"=dword:00000002

;52-SCardDrv
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SCardDrv]
;"Start"=dword:00000004

;53-QoS RSVP
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RSVP]
;"Start"=dword:00000004

;54-Routage et accès distant
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess]
;"Start"=dword:00000004

;55-Serveur
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver]
;"Start"=dword:00000004

;56-Service COM de gravage de CD IMAPI
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ImapiService]
;"Start"=dword:00000002

;57-Service d'administration du Gestionnaire de disque logique
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmadmin]
;"Start"=dword:00000003

;58-Service de découvertes SSDP
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SSDPSRV]
;"Start"=dword:00000004

;59-Service de la passerelle de la couche Application
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ALG]
;"Start"=dword:00000003

;60-Service de rapport d'erreurs
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ERSvc]
;"Start"=dword:00000004

;61-Service de restauration système
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\srservice]
;"Start"=dword:00000004

;62-Service de transfert intelligent en arrière-plan
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BITS]
;"Start"=dword:00000004

;63-Service d'indexation
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CiSvc]
;"Start"=dword:00000004

;64-Services de cryptographie
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CryptSvc]
;"Start"=dword:00000002

;65-Services IPSEC
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PolicyAgent]
;"Start"=dword:00000004

;66-Services Terminal Server
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TermService]
;"Start"=dword:00000003

;67-Spouleur d'impression
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Spooler]
;"Start"=dword:00000002

;68-Station de travail
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanworkstation]
;"Start"=dword:00000002

;69-Stockage amovible
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NtmsSvc]
;"Start"=dword:00000003

;70-Système d'événements de COM+
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventSystem]
;"Start"=dword:00000003

;71-Téléphonie
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TapiSrv]
;"Start"=dword:00000003

;72-Telnet
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TlntSvr]
;"Start"=dword:00000004

;74-WebClient
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient]
;"Start"=dword:00000004

;75-Windows Installer
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer]
;"Start"=dword:00000003

;76-Centre de sécurité
;[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wscsvc]
;"Start"=dword:00000002

-----------------------------------------
;----- Démarrage/arret de Windows --------
;-----------------------------------------

; Désactive l'affichage de l'écran de bienvennue à chaque entrée d'utilisateurs
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\tips]
"Show"=dword:00000000

; Optimisation de l'emplacement des fichiers de boot, permet un boot plus rapide
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]
"Enable"="Y"

; Arrêt de l'ordinateur plus rapide
[HKEY_CURRENT_USER\Control Panel\Desktop]
"AutoEndTasks"="1"
"HungAppTimeout"="100"
"WaitToKillAppTimeout"="1000"
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
"WaitToKillServiceTimeout"="1000"

; Désactivation du redémarrage en cas d'écran bleu
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl]
"AutoReboot"=dword:00000000

; Optimisation du prefetch (boot plus rapide) : boot et programmes
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters]
"EnablePrefetcher"=dword:00000002

; Autocheck (CHKDSK) plus rapide en cas de mauvais arrêt de Windows
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager]
"AutoChkTimeOut"=dword:00000002

; Efface le fichier pagefile.sys à l'arrêt de Windows (plus lent, mais plus sure)
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"ClearPageFileAtShutdown"=dword:00000001

; Neutralise le traqueur d'événement d'arrêt
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Reliability]
"ShutdownReasonOn"=dword:00000000
"ShutdownReasonUI"=dword:00000000

;-------------------------------
;---- Performances Systèmes ----
;-------------------------------

; optimise le core
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"DisablePagingExecutive"=dword:00000001

; augmentation des performances NTFS
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]
"NtfsDisable8dot3NameCreation"=dword:00000001
"NtfsDisableLastAccessUpdate"=dword:00000001
"Win95TruncatedExtensions"=dword:00000001
"Win31FileSystem"=dword:00000000

; Augmentation de la vitesse de transfert des fichiers zip
[-HKEY_CLASSES_ROOT\.zip\CompressedFolder]
[-HKEY_CLASSES_ROOT\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CompressedFolder]

; ouverture plus rapide de l'explorateur
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\stisvc]
"Start"=dword:00000004
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSaveSettings"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"NoNetCrawling"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoRemoteRecursiveEvents"=dword:00000001

;Supprime les DLL de la RAM aprés fermeture de l'explorateur
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer]
"AlwaysUnloadDll"=dword:00000001

;Autoriser le support LBA 48 bits pour les HD de grande capacité
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Atapi\Parameters]
"EnableBigLba"=dword:00000001


;---------------------------
;---- Options générales ----
;---------------------------

;Montrer les fichiers cachés (mais pas ceux de l'OS)
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Hidden"=dword:00000001
"ShowSuperHidden"=dword:00000000

;Désactiver les info-bulles
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"EnableBalloonTips"=dword:00000000

;Désactiver les infos bulles du centre de sécurité (SP2)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security Center]
"AntiVirusDisableNotify"=dword:00000001
"FirewallDisableNotify"=dword:00000001
"UpdatesDisableNotify"=dword:00000001

;Ajoute l'onglet "sécurité" des dossiers pour le partage réseau avancé
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]
"ForceGuest"=dword:00000000

;Ne pas afficher le contenu au déplacement de la fenêtre
[HKEY_CURRENT_USER\Control Panel\Desktop]
"DragFullWindows"=dword:00000000

;Retirer le dossier "Mes documents" du bureau (0xf0500174 = Hidden, 0xf0400174 = Default)
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\
{450D8FBA-AD25-11D0-98A8-0800361B1103}\ShellFolder]
"Attributes"=dword:F0500174

;Vire l'autorun à l'introduction d'un CD dans le lecteur
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CDRom]
"Autorun"=dword:00000000

;Vire le cleanup wizard
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz]
"NoRun"=dword:00000001

;Retire le dossier fichiers partagés du disque dur
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSharedDocuments"=dword:00000001
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoSharedDocuments"=dword:00000001

; Désactivation du service de gravure intégré à Windows
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoCDBurning"=dword:00000001

; lancer IE dans un processus différents
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\BrowseNewProcess]
"BrowseNewProcess"="Yes"

; ouvrir les applications 16 bits dans un processus différents
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\WOW]
"DefaultSeparateVDM"="Yes"

; Supprime le spyware Alexa
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Extensions\{c95fe080-8f5d-11d2-a20b-00aa003c157a}]

;Les fichiers supprimés ne passent pas par la corbeille
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\BitBucket]
"NukeOnDelete"=dword:00000001

;Active le pavé numérique au démarage
[HKEY_USERS\.DEFAULT\Control Panel\Keyboard]
"InitialKeyboardIndicators"="2"
[HKEY_CURRENT_USER\Control Panel\Keyboard]
"InitialKeyboardIndicators"="2"

; supprime les flèches des raccourcis
[HKEY_CLASSES_ROOT\lnkfile]
"IsShortCut"=-
[HKEY_CLASSES_ROOT\piffile]
"IsShortCut"=-
[HKEY_CLASSES_ROOT\InternetShortcut]
"IsShortCut"=-

; Désactive le nettoyeur du bureau
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz]
"NoRun"=dword:00000001

; augmente les performances de l'USB
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Class\Usb\0000]
"IdleEnable"=dword:00000001

; ouvrir les fichiers nfo avec notepad
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo]
"Application"="NOTEPAD.EXE"
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\OpenWithList]
"a"="Explorer.exe"
"MRUList"="ba"
"b"="NOTEPAD.EXE"
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\OpenWithProgids]
"MSInfo.Document"=hex(0):

; Désactive le rapport d'erreur
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting]
"AllOrNone"=dword:00000001
"DoReport"=dword:00000000
"IncludeKernelFaults"=dword:00000000
"IncludeMicrosoftApps"=dword:00000000
"IncludeWindowsApps"=dword:00000000
"ShowUI"=dword:00000000

; la recherche inclus fichier et dossiers caché
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"SearchSystemDirs"=dword:00000001
"SearchHidden"=dword:00000001
"IncludeSubFolders"=dword:00000001
"CaseSensitive"=dword:00000000
"SearchSlowFiles"=dword:00000000

; Supprime "raccourci de..."
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"link"=hex:00,00,00,00

; améliorations du mode console (DOS)
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
"CompletionChar"=dword:00000008
"PathCompletionChar"=dword:00000008
"DisableUNCCheck"=dword:00000001

; Désactive le tour Windows
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]
"RunCount"=dword:00000000
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]
"RunCount"=dword:00000000

; Désactive la protection des fichier Windows
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"SFCSetting"=dword:ffffff9d
"SFCDisable"=dword:ffffff9d

; Désactivation de l'enregistrement auprès de Microsoft
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion]
"RegDone"="1"

;Afficher l'extension des fichiers dans l'explorateur
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"HideFileExt"=dword:00000000

;Afficher l'adresse complète dans l'explorateur
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
"FullPath"=dword:00000000
"FullPathAddress"=dword:00000001

;Panneau de configuration en mode classique
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"ForceClassicControlPanel"=dword:00000001

;Désactiver l'assistant de la fonction rechercher (le chien animé)
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
"Use Search Asst"="no"

;-----------------------------------------
;---- Barre des taches et répertoires ----
;-----------------------------------------

; Empeche les applications de voler le focus
[HKEY_CURRENT_USER\Control Panel\Desktop]
"ForegroundLockTimeout"=dword:00030d40

;Retirer la barre de language
[-HKEY_CLASSES_ROOT\CLSID\{540D8A8B-1C3F-4E32-8132-530F6A502090}]
@="Language bar"
"MenuTextPUI"="@%SystemRoot%\System32\msutb.dll,-325"

;Retirer l'icône du son dans la barre des tâches
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray]
"Services"=dword:0000001b

;Supprimer les documents récents quand on quitte Windows
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"ClearRecentDocsOnExit"=dword:00000001
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"ClearRecentDocsOnExit"=dword:00000001

;Désactive les menus personnalisés
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"IntelliMenus"=dword:00000000

; augmente la vitesse d'apparition du menu démarrer
[HKEY_CURRENT_USER\Control Panel\Desktop]
"MenuShowDelay"="0"

; verrouillage de la barre de lancement rapide
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"TaskbarSizeMove"=dword:00000000

; Afficher en mode "détails"
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams]
"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,0
0,2b,2e,12,62,04,00,00,00,01,00,00,00,43,00,00,00

; options spéciales dans "executer"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"MemCheckBoxInRunDlg"=dword:00000001

;Ouvrir un nouveau process pour l'explorateur, afin de le rendre plus stable
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"DesktopProcess"=dword:00000001

;Vire les documents récents du menu de démarrage
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoRecentDocsMenu"=dword:00000001

; on peut changer le nom de la corbeille
[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:50,01,00,20
"CallForAttributes"=dword:00000000

; mise en cache de plus d'icones
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"Max Cached Icons"="8192"

; active la barre de lancement rapide
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop]
"TaskbarWinXP"=hex:0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,\
d8,64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,01,00,00,1a,00,00,00,\
01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,\
00,00,00,c0,00,00,00,00,00,00,46,83,00,00,00,10,00,00,00,a0,b0,48,5e,89,8d,\
bd,01,00,d8,9e,e4,2a,8d,bd,01,00,45,fe,5e,89,8d,bd,01,00,00,00,00,00,00,00,\
00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,13,01,14,00,1f,0f,e0,4f,\
d0,20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,23,44,3a,5c,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,cd,97,15,00,31,00,00,00,00,00,af,24,5c,\
b9,10,80,57,69,6e,6e,74,00,00,20,00,31,00,00,00,00,00,af,24,a3,b9,10,00,50,\
72,6f,66,69,6c,65,73,00,50,52,4f,46,49,4c,45,53,00,19,00,31,00,00,00,00,00,\
c1,24,08,92,10,00,69,65,35,30,30,2e,30,30,30,00,00,28,00,31,00,00,00,00,00,\
c1,24,08,92,10,00,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,00,41,50,\
50,4c,49,43,7e,31,00,21,00,31,00,00,00,00,00,c5,22,9d,91,10,00,4d,69,63,72,\
6f,73,6f,66,74,00,4d,49,43,52,4f,53,7e,31,00,29,00,31,00,00,00,00,00,d3,22,\
32,a6,10,00,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,00,49,4e,54,\
45,52,4e,7e,31,00,24,00,31,00,00,00,00,00,db,22,76,ba,10,00,51,75,69,63,6b,\
20,4c,61,75,6e,63,68,00,51,55,49,43,4b,4c,7e,31,00,00,00,8d,00,00,00,1c,00,\
00,00,01,00,00,00,1c,00,00,00,36,00,00,00,0d,f0,ad,ba,8c,00,00,00,1a,00,00,\
00,03,00,00,00,e7,18,2d,23,10,00,00,00,49,45,35,30,30,5f,58,31,43,00,43,3a,\
5c,57,49,4e,4e,54,5c,50,72,6f,66,69,6c,65,73,5c,49,45,35,30,30,2e,30,30,30,\
5c,41,70,70,6c,69,63,61,74,69,6f,6e,20,44,61,74,61,5c,4d,69,63,72,6f,73,6f,\
66,74,5c,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,5c,51,75,69,63,\
6b,20,4c,61,75,6e,63,68,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,a3,00,00,\
00,00,00,00,00,08,00,00,00,02,00,00,00,cc,00,00,00,01,00,00,00,03,00,00,00,\
4a,00,00,00,01,00,00,00,40,00,32,00,e6,01,00,00,c4,24,15,9f,20,00,4c,61,75,\
6e,63,68,20,49,6e,74,65,72,6e,65,74,20,45,78,70,6c,6f,72,65,72,20,42,72,6f,\
77,73,65,72,2e,6c,6e,6b,00,4c,41,55,4e,43,48,7e,32,2e,4c,4e,4b,00,00,00,40,\
00,00,00,02,00,00,00,36,00,32,00,48,02,00,00,c4,24,15,9f,20,00,4c,61,75,6e,\
63,68,20,4f,75,74,6c,6f,6f,6b,20,45,78,70,72,65,73,73,2e,6c,6e,6b,00,4c,41,\
55,4e,43,48,7e,31,2e,4c,4e,4b,00,00,00,36,00,00,00,00,00,00,00,2c,00,32,00,\
51,00,00,00,ec,22,46,39,20,00,53,68,6f,77,20,44,65,73,6b,74,6f,70,2e,73,63,\
66,00,53,48,4f,57,44,45,7e,31,2e,53,43,46,00,00,00,52,00,00,00,e0,00,00,00,\
00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,01,\
00,00,00,01,00,00,00,aa,4f,28,68,48,6a,d0,11,8c,78,00,c0,4f,d9,18,b4,37,02,\
00,00,e0,00,00,00,00,00,00,00,16,00,00,00,00,00,00,00,00,00,00,00,16,00,00,\
00,00,00,00,00,01,00,00,00

;-------------------------------
;----- Ouverture de session ----
;-------------------------------
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"EnableQuickReboot"="1"

;---------------------------
;----- Menu Contextuel -----
;---------------------------

; ajoute ouvrir avec notepad pour les fichiers inconnus
[HKEY_CLASSES_ROOT\*\shell]
@="\"notepad.exe %1\""
[HKEY_CLASSES_ROOT\*\shell\open]
@="Editer.."
[HKEY_CLASSES_ROOT\*\shell\open\command]
@="notepad.exe %1"

; ajoute ouvrir dans une nouvelle fenêtre
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\openNew]
@="Ouvrir dans une nouvelle &fenetre"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\openNew\Command]
@="explorer %1"

;------------------------
;----- IE et Outlook ----
;------------------------

; supprime les en-têtes et pieds de pages lors de l'impression
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\PageSetup]
"header"=""
"footer"=""

; minimise Outlook dans la barre des taches
[HKEY_Current_User\Software\Microsoft\Office\10.0\Outlook\Preferences]
"MinToTray"=dword:00000001

; google comme moteur de recherche
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Use Search Asst"="no"
"Search Page"="http://www.google.com"
"Search Bar"="http://www.google.com/ie_rsearch.html"

; active le remplissage auto
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoComplete]
"AutoSuggest"="yes"
"Append Completion"="yes"
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Use FormSuggest"="yes"
"FormSuggest Passwords"="yes"
"FormSuggest PW Ask"="yes"
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\New Windows]
"PopupMgr"="yes"

; ferme les répertoires non utilisé dans l'historique et les favoris
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"NscSingleExpand"=dword:00000001

; Désactive le déboggage de script (IE et autres)
"DisableScriptDebuggerIE"="yes"
"Disable Script Debugger"="yes"

; Désactive le rapport d'erreur
"Error Dlg Displayed On Every Error"="no"

; active les extensions tierce partie
"Enable Browser Extensions"="yes"

; active la barre d'outil des images
"Enable_MyPics_Hoverbar"="yes"

; désactive l'impression de l'arrière plan
"Print_Background"="no"

; accèlere la navigation
"Show_ChannelBand"="no"
"Cache_Update_Frequency"="Once_Per_Session"
"Show_StatusBar"="yes"
"Show_ToolBar"="yes"
"Show_URLinStatusBar"="yes"
"Show_URLToolBar"="yes"
"Use_DlgBox_Colors"="yes"
"Check_Associations"="no"
"FullScreen"="no"
"Show_FullURL"="no"
"ShowedCheckBrowser"="yes"
"Check_Associations"="No"

; affiche la barre de recherche comme Mozilla avec google
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchURL]
@="http://www.google.com/keyword/%s"
"provider"="gogl"
" "="+"
"&"="%26"
"+"="%2B"
"#"="%23"
"?"="%3F"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Search]
"SearchAssistant"="http://www.google.com/ie_rsearch.html"

; ajoute .gov et .mil à la recherche automatique
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\UrlTemplate]
"5"="www.%s.gov"
"6"="www.%s.mil"

; cache à 2Mo
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\Cache\Content]
"CacheLimit"=dword:00000800

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Content]
"CacheLimit"=dword:00000800
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\Cache\Content]
"CacheLimit"=dword:00000800
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache\Content]
"CacheLimit"=dword:00000800
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Cache]
"Persistent"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
; nom anonyme pour les cookies
"EmailName"="any@none.com"

; active SSL 2.0...
"SecureProtocols"=dword:00000028

; avertir des sites qui ont des certificats non valide
"WarnonBadCertRecving"=dword:00000001

; averti en cas de changement entre mode securisé et non
"WarnonZoneCrossing"=dword:00000000

; envoyer les URl en mode UTF-8
"URLEncoding"=dword:00000000

; désactive connexion wizard
[HKEY_CURRENT_USER\Software\Microsoft\Internet Connection Wizard]
"Completed"=hex:01,00,00,00
"DesktopChanged"=dword:00000001

; tramage intelligent de l'image
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer]
"SmartDithering"=dword:00000001

; désactive l'espionnage des sites web
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\ProtocolDefaults]
"about"=dword:00000004

; nombre de jours dans l'historique : 2
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Url History]
"DaysToKeep"=dword:00000002

;Désactiver le débugueur de script et fermer la fenêtre une fois le download terminé
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Disable Script Debugger"="yes"
"NotifyDownloadComplete"="no"
"ShowGoButton"="no"

;-----------------
;------ WMP ------
;-----------------

; active la lecture DVD
[HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\Settings]
"EnableDVDUI"="yes"

; desactivation de la prévisualisation des videos
[-HKEY_CLASSES_ROOT\.avi\ShellEx]
[-HKEY_CLASSES_ROOT\.mpg\ShellEx]
[-HKEY_CLASSES_ROOT\.mpe\ShellEx]
[-HKEY_CLASSES_ROOT\.mpeg\ShellEx]

; accèlère l'acces au video de type avi
[-HKEY_CLASSES_ROOT\CLSID\{87D62D94-71B3-4b9a-9489-5FE6850DC73E}]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\.avi\shellex\PropertyHandler]

; Montre le volume dans la barre des taches
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray]
"Services"=dword:0000001f

;-----------------
;----- réseau ----
;-----------------

; augmente le nombre de connexions simultanées
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"MaxConnectionsPerServer"=dword:00000040
"MaxConnectionsPer1_0Server"=dword:00000040

; augmente le nombre de DNS stockés
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
"NegativeCacheTime"=dword:00000000
"NetFailureCacheTime"=dword:00000000
"NegativeSOACacheTime"=dword:00000000
"CacheHashTableBucketSize"=dword:00000001
"CacheHashTableSize"=dword:00000180
"MaxCacheEntryTtlLimit"=dword:0000fa00
"MaxSOACacheEntryTtlLimit"=dword:0000012d

; augmente la vitesse de navigation sur le réseau
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider]
"DnsPriority"=dword:00000001
"HostsPriority"=dword:00000001
"LocalPriority"=dword:00000001
"NetbtPriority"=dword:00000001
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{2227A280-3AEA-1069-A2DE-08002B30309D}]

; augmente les sorties réseau
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanworkstation\parameters]
"MaxCmds"=dword:00000064
"MaxThreads"=dword:00000064
"MaxCollectionCount"=dword:00000064

; arret de windows lors d'une réponse de cache négative
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched]
"NonBestEffortLimit"=dword:00000000

;----------------
;------ SP2 -----
;----------------

; supprime la recherche de pilote par windows update
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DriverSearching]
"DontSearchWindowsUpdate"=dword:00000001
"DontPromptForWindowsUpdate"=dword:00000001

;---------------------
;------ Notepad2 -----
;---------------------

; support internationnal
[HKEY_CURRENT_USER\Software\Notepad2\International]
"CodePage"=dword:00000000
"CharSet"=dword:00000001

[HKEY_CURRENT_USER\Software\Notepad2\Settings]
; extension TXT
"DefaultExtension"="TXT"
; alarme de la taille des fichiers (txt) à 1Mo
"FileLoadWarningMB"=dword:00000006
; niveau d'opacité à 75%
"OpacityLevel"=dword:0000004b
; apparence "fané" des fichiers cachés
"NoFadeHidden"=dword:00000001

;------------------------------
;------ Windows Messenger -----
;------------------------------

; désactive le démarrage auto
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Messenger\Client]
"PreventAutoRun"=dword:00000001
"PreventAutoUpdate"=dword:00000001
"PreventBackgroundDownload"=dword:00000001
"PreventRun"=dword:00000001

; désactive le Téléchargements des pubs
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MessengerService\Policies]
"DisableCrossPromo"=hex:80

; supprime d'outlook express
[HKEY_LOCAL_MACHINE\Software\Microsoft\Outlook Express]
"Hide Messenger"=dword:00000002
Alain Quarré je viens de voir ta reponse ( bonne aussi ) - j etais en train d ecrire la mienne ...... :?
Avatar du membre
betageek
Messages : 358
Enregistré le : mer. 25 mars 2009 02:49
Etes vous un robot ? : Non
Localisation : france

Re: Comment crées des clés de registres.

Message par betageek »

bonsoir merci à vous deux les amis.
houla, c'est quelques part du charabia pour moi :)
je suis sous "W7U".
merci, je vais essayer de mis atteler mais je ses que je vais me planter d'avance :D
amitié...
Je suis un amateur de "W7" et souhaiterais mis perfectionner, alors merci de vos aides...
Image
http://discussions-libertad.forumactif.com/
Avatar du membre
nardino
Messages : 6344
Enregistré le : dim. 11 janv. 2009 16:03
Localisation : Reims
Contact :

Re: Comment crées des clés de registres.

Message par nardino »

Bonsoir,
J'ai du mal à comprendre quelles clés tu as à créer manuellement !
Quant à formater, il y a surement des moyens plus pratiques telle qu'une image disque si tu es un formateur compulsif.
@
Image
En cas de problème constaté sur un sujet, contactez un modérateur par MP. N'intervenez pas vous-même. Merci
Alain Quarré
Messages : 965
Enregistré le : mer. 20 janv. 2010 23:41
Etes vous un robot ? : Non

Re: Comment crées des clés de registres.

Message par Alain Quarré »

Donne moi la liste des clés à modifier...

ce sera très simpe

++
Alain
Déplacer les dossiers utilisateur topic4073.html topic5883.html
Déplacer le dossier Public topic4396.html
PAS DE RÉPONSE TECHNIQUE PAR MP
Avatar du membre
betageek
Messages : 358
Enregistré le : mer. 25 mars 2009 02:49
Etes vous un robot ? : Non
Localisation : france

Re: Comment crées des clés de registres.

Message par betageek »

bonsoir,
il n'y à pas a chercher à me comprendre ;)
j'ai envie d'automatiser le plus possible mes interventions dans la "BDR".
les images disks je n'y pense même pas elle ne me contente pas car si je veut une image disk parfaite il faut qu'elle et tout mes logiciels d'installer tel que je les utilises aujourd'hui.
une image de ce type fait pour ma part pas loin de 10 dvd soit 40 gigas maximum donc je ne veut pas ses tout.
je souhaite donc avoir des clés ".REG" sur lequel je cliquerais et hop , hop, hop, mes programmations serais faite s'en encombres.
est-je était plus explicite sur le pourquoi de la chose ?
amitié...


Pour Alain :

les clés sont celles pour purger les options du menue "Arrêter" je ne me sert jamais de :

"Fermer la session / Changer d'utilisateur / Verrouillé / Mettre en veille".
je ne veut que l'option "Redémarrer".

ensuite, dans l'explorateur :

je ne me sert jamais de "Réseaux" / "Home groupes" et "récents places".

enfin dans le clic droit de la corbeille je souhaite enlevé tous ce qui n'est pas du logiciel "Safeerase" :

"Vider la corbeille" ou autres liens ajouter par des logiciels tiers qui se loge ici voilà.

pour le moment les quelques purges que je souhaite faire, je sais, elles sont nuls mais bon, après chacuns usent de son pc comme ils l'entends.
merci à toi et amitié...
Je suis un amateur de "W7" et souhaiterais mis perfectionner, alors merci de vos aides...
Image
http://discussions-libertad.forumactif.com/
Avatar du membre
chantal11
Messages : 13610
Enregistré le : dim. 11 janv. 2009 15:14
Localisation : Aude
Contact :

Re: Comment crées des clés de registres.

Message par chantal11 »

Bonjour,

Excusez l'incruste, mais 2 petites précisions.
betageek a écrit :une image de ce type fait pour ma part pas loin de 10 dvd soit 40 gigas maximum donc je ne veut pas ses tout.
Une image disque sur un DD externe est encore plus pratique ;)

Alain t'a demandé la liste des clés, il faut donc lui indiquer les clés précises qui doivent êtres modifiées.
Tu as certainement noté quelque part toutes ces clés à modifier ?

@+
Image Image
Image
En cas de problème constaté sur un sujet, alertez un modérateur. N'intervenez pas vous-même. Merci
Avatar du membre
betageek
Messages : 358
Enregistré le : mer. 25 mars 2009 02:49
Etes vous un robot ? : Non
Localisation : france

Re: Comment crées des clés de registres.

Message par betageek »

bonsoir,
voilà les clés de registre que j'ai à priorie eus pour modifier certaines des choses que j'ai envie d'enlever.

Pour la corbeille dans le registre :

HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\shell\empty

pour enlever tout ce que les logiciels tiers ajoute au clic droit de la corbeillme et qui ne me servent à rien.
je ne souhaite garder que l'option du logiciel "Saferase" nommée ---} "Sécurely empty"...(de O&O) et l'entrée "Ouvrir" (que l'ont ne peut pas retirer paraît-il).

Pour enlever l'option du "Réseaux" (dans le menue gauche de l'explorateur) :

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\NonEnum

voilà pour le moment les clés que j'ai eus grâce à vous et si j'en voit d'autre je les ajouterais ci besoins est.

je ne sais pas si ça va aider quelques uns d'entre vous (Alain ?).
amitié...
Je suis un amateur de "W7" et souhaiterais mis perfectionner, alors merci de vos aides...
Image
http://discussions-libertad.forumactif.com/
Alex75011
Messages : 1646
Enregistré le : ven. 15 mai 2009 12:12
Etes vous un robot ? : Non
Localisation : PARIS

Re: Comment crées des clés de registres.

Message par Alex75011 »

Slt,
J'espère que tu n'est pas médecin ou chirurgien sinon tes patients devraient mourir de trouille, genre à faire une lobotomie pour guérir d'une angine :lol:
betageek a écrit : Pour enlever l'option du "Réseaux" (dans le menue gauche de l'explorateur) :
On fait clic droit supprimer et basta !!!!
Répondre