Kindly be advised we cannot cancel subscriptions or issue refunds on the forum.
You may cancel your Bitdefender subscription from Bitdefender Central or by contacting Customer Support at: https://www.bitdefender.com/consumer/support/help/

Thank you for your understanding.

From: Démarrage Win 7 Long

Options
dexter74
dexter74 ✭✭
edited October 2014 in Trash

Bonjour fedor,


Dans un premier temps , je vous suggère ceci:


- Défragmenter le pc avec Iobit Smart Defrag


- Nettoyer le pc avec Iobit SystemCare


- Mettre à jour les pilotes avec Iobit Driver Booster


- Passer un coups antimalware avec ADWCleaner , ComBoFix


- Optimiser les services inutiles W7. (valable pour windows 8)


Systemcare:


- Cocher toute les case sauf "Défragmenter disque"


- Bouton Balayage


- Cocher la case "Réparer"


- Patienter et attendre


- Prochain démarrage il défragmentera les fichiers dont il à pas pu et il rebootera encore et voilà pc propre


Smart Defrag:


- Permet de défragmenter et d'optimiser les fichier pour les mettre au début du disque (le centre, fichier plus rapide d'accès pour la tête de lecture dû à moins de déplacement comme les donnée son au centre du disque , court)


- Améliore les performances


Driver Booster


- Cliquer sur Scan


- cliquer sur install


- Cocher "ne plus me rapeller"


- Patienter , redémarrer et c'est bon


PS: mettre à jour la Carte-graphique à la main. (La mienne est pas détecter avec Driver booster)


Msconfig : (Windows 7 / vista)


- Démarrer


- taper msconfig


- Onglet Démarrage


- Décocher les logiciels inutiles au démarrage


- Onglet Service


- Cocher la case "Masquer les Sevices Microsoft"


- Désactiver les services. (Si le service es désactiver il ne pourra plus être lancer par windows pour le logiciel en question)


Services_optimisation.bat (http://www.pcastuces.com/pratique/windows/services_windows7/page1.htm)


- Ouvrir bloc note, copier le code


- Enregistrer sous


- Nom du fichier Services_opt.bat


- Type: Tous les fichiers (*.*)


- Ok


- Clique droit sur le fichier , lancer en mode administrateur


Syntax:


:: Nom du Service


:: Etat par défaut sur un windows 7 - msdn Ultimate


:: sc config "Nomduservice" start= Désactiver (Au démarrage du pc il sera pas lancer et impossible de le lancer , de toute façon certain service son inutile pour les utilisateur classique)


:: sc stop "Nomduservices" , coupe le service en cours


Note:


Accès du périphérique d'interface utilisateur: Utilise pour les clavier , ordinateur portable , souris qui on des macro (pause , play etc), je l'est mis en commentaire.


La partie "Groupe Résidentiel:": Service pour le partage dont il faut laisser active.


Services_opt.bat


:: ############
:: # Services #
:: ############

:: Services:
:: start= Auto            Démarre le service avec Windows.
:: start= Demand        Démarre le Service si Windows en à besoin, donc il démarre pas automatiquement avec Windows.
:: start= Disabled        Désactive le Service au démarrage de Windows et aucune possibilité de le lancer par la suite.
:: start= delayed-auto     Démarre le Service après le Démarrage complet de Windows.

:: Groupe Résidentiel:
::                         - Gestionnaire d’identité réseau homologue
::                         - Protocole PNRP
::                         - Hôte système de diagnostics (En cas de problème il pourra diagnostiquer)
::                         - C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\PeerNetworking <= En cas de soucis


title "Services"


echo "Page 1"
:: Accès du périphérique d'interface utilisateur
:: Demand
:: sc config "hidserv" start= Disabled

:: Agent de protection d’accès réseau
:: Demand
sc config "napagent" start= Disabled
sc stop "napagent"

:: Assistance IP
:: Auto
sc config "iphlpsvc" start= Disabled
sc stop "iphlpsvc"

:: Assistance NetBIOS sur TCP/IP
:: Auto
sc config "lmhosts" start= Disabled
sc stop "lmhosts"

:: BranchCache
:: Demand
sc config "PeerDistSvc" start= Disabled
sc stop "PeerDistSvc"

:: Carte à puce
:: Demand
sc config "SCardSvr" start= Disabled
sc stop "SCardSvr"

:: Client de suivi de lien distribué
:: Auto
sc config "TrkWks" start= Disabled
sc stop "TrkWks"


echo "Page 2"
:: Configuration des services Bureau à distance
:: Demand
sc config "SessionEnv" start= Disabled
sc stop "SessionEnv"

:: Détection de services interactifs
:: Demand
sc config "UI0Detect" start= Disabled
sc stop "UI0Detect"

:: Énumérateur de bus IP PnP-X
:: Demand
sc config "IPBusEnum" start= Disabled
sc stop "IPBusEnum"

:: Expérience audio-vidéo haute qualité Windows
:: Demand
sc config "QWAVE" start= Disabled
sc stop "QWAVE"

:: Fichiers hors connexion
:: Auto
sc config "CscService" start= Disabled
sc stop "CscService"

:: Gestion à distance de Windows (Gestion WSM)
:: Demand
sc config "WinRM" start= Disabled
sc stop "WinRM"

:: Gestion d’applications
:: Demand
sc config "AppMgmt" start= Disabled
sc stop "AppMgmt"

:: Gestion des clés et des certificats d’intégrité
:: Demand
sc config "hkmsvc" start= Disabled
sc stop "hkmsvc"


echo "Page 3"
:: Gestionnaire d’identité réseau homologue
:: Demand
sc config "p2pimsvc" start= Disabled
sc stop "p2pimsvc"

:: Gestionnaire d’informations d’identification
:: Demand
sc config "VaultSvc" start= Disabled
sc stop "VaultSvc"

:: Groupement de mise en réseau de pairs
:: Demand
sc config "p2psvc" start= Disabled
sc stop "p2psvc"

:: Hôte du fournisseur de découverte de fonctions
:: Demand
sc config "fdPHost" start= Disabled
sc stop "fdPHost"

:: Hôte système de diagnostics
:: Demand
sc config "WdiSystemHost" start= Demand
sc stop "WdiSystemHost"

:: Interruption SNMP
:: Demand
sc config "SNMPTRAP" start= Disabled
sc stop "SNMPTRAP"

:: Localisateur d’appels de procédure distante (RPC)
:: Demand
sc config "RpcLocator" start= Disabled
sc stop "RpcLocator"

:: Mappage de découverte de topologie de la couche de liaison
:: Demand
sc config "lltdsvc" start= Disabled
sc stop "lltdsvc"


echo "Page 4"
:: Netlogon
:: Demand
sc config "Netlogon" start= Disabled
sc stop "Netlogon"

:: Parental Controls
:: Demand
sc config "WPCSvc" start= Disabled
sc stop "WPCSvc"

:: Partage de connexion Internet (ICS)
:: Disabled
sc config "SharedAccess" start= Disabled
sc stop "SharedAccess"

:: Prise en charge de l’application Rapports et solutions aux problèmes du Panneau de configuration
:: Demand
sc config "wercplsupport" start= Disabled
sc stop "wercplsupport"

:: Programme d’installation ActiveX (AxInstSV)
:: Demand
sc config "AxInstSV" start= Disabled
sc stop "AxInstSV"

:: Propagation du certificat
:: Demand
sc config "CertPropSvc" start= Disabled
sc stop "CertPropSvc"

:: Protocole PNRP
:: Demand
sc config "PNRPsvc" start= Disabled
sc stop "PNRPsvc"

:: Publication des ressources de découverte de fonctions
:: Demand
sc config "FDResPub" start= Disabled
sc stop "FDResPub"

:: Redirecteur de port du mode utilisateur des services Bureau à distance
:: Demand
sc config "UmRdpService" start= Disabled
sc stop "UmRdpService"

:: Registre à distance
:: Demand
sc config "RemoteRegistry" start= Disabled
sc stop "RemoteRegistry"

:: Service de biométrie Windows
:: Demand
sc config "WbioSrvc" start= Disabled
sc stop "WbioSrvc"

:: Service de chiffrement de lecteur BitLocker
:: Demand
sc config "BDESVC" start= Disabled
sc stop "BDESVC"

:: Service de configuration automatique WWAN
:: Demand
sc config "WwanSvc" start= Disabled
sc stop "WwanSvc"


echo "Page 5"
:: Service de l’Assistant Compatibilité des programmes
:: Auto
sc config "PcaSvc" start= Disabled
sc stop ""

:: Service de la passerelle de la couche Application
:: Demand
sc config "ALG" start= Disabled
sc stop "ALG"

:: Service de planification Windows Media Center
:: Demand
sc config "ehSched" start= Disabled
sc stop "ehSched"

:: Service de prise en charge Bluetooth
:: Demand
sc config "bthserv" start= Disabled
sc stop "bthserv"

:: Service de publication des noms d’ordinateurs PNRP
:: Demand
sc config "PNRPAutoReg" start= Disabled
sc stop "PNRPAutoReg"

:: Service de rapport d’erreurs Windows
:: Demand
sc config "WerSvc" start= Disabled
sc stop "WerSvc"

:: Service de réception Windows Media Center
:: Demand
sc config "ehRecvr" start= Disabled
sc stop "ehRecvr"


:: Service de stratégie de diagnostic
:: Demand
sc config "DPS" start= Disabled
sc stop "DPS"


:: Service Énumérateur d’appareil mobile
:: Demand
sc config "WPDBusEnum" start= Disabled
sc stop "WPDBusEnum"

:: Service hôte WDIServiceHost
:: Demand
sc config "WdiServiceHost" start= Disabled
sc stop "WdiServiceHost"

:: Service Initiateur iSCSI de Microsoft
:: Demand
sc config "MSiSCSI" start= Disabled
sc stop "MSiSCSI"

:: Service Panneau de saisie Tablet PC
:: Demand
sc config "TabletInputService" start= Disabled
sc stop "TabletInputService"

:: Service Partage réseau du Lecteur Windows Media
:: delayed-auto
sc config "WMPNetworkSvc" start= Disabled
sc stop "WMPNetworkSvc"

:: Services Bureau à distance
:: Demand
sc config "TermService" start= Disabled
sc stop "TermService"

:: Services de base de module de plateforme sécurisée
:: Demand
sc config "TBS" start= Disabled
sc stop "TBS"


echo "Page 6"
:: Stratégie de retrait de la carte à puce
:: Demand
sc config "SCPolicySvc" start= Disabled
sc stop "SCPolicySvc"

:: Système de couleurs Windows
:: Demand
sc config "WcsPlugInService" start= Disabled
sc stop "WcsPlugInService"

:: Télécopie
:: Demand
sc config "Fax" start= Disabled
sc stop "Fax"

:: WebClient
:: Demand
sc config "WebClient" start= Disabled
sc stop "WebClient"

:: Windows CardSpace
:: Demand
sc config "idsvc" start= Disabled
sc stop "idsvc"

:: Windows Connect Now - Registre de configuration
:: Demand
sc config "wcncsvc" start= Disabled
sc stop "wcncsvc"

:: Windows Search
:: delayed-auto
sc config "WSearch" start= Disabled
sc stop "WSearch"


Service par défaut:


@echo off
:: ################################################################################
##########
:: #                                                                                        #
:: # Auteur        Drthrax                                                                        #
:: # Email        teste74@hotmail.fr                                                            #
:: # skype        dr.thr3x                                                                     #
:: # Source        http://www.pcastuces.com/pratique/windows/services_windows7/page1.htm        #
:: #                                                                                        #
:: ################################################################################
##########


:: Description:
:: Configuration    Configure les différents paramètre de Windows
:: Windows             Mise au point de windows
:: SSD                 Pour les Disque-Dur SSD exclusivement
:: Services            Optimisation des Services inutiles
:: ::                Sert au commentaire donc se sera pas pris en compte (utile si on veut ne pas lancer une optimisation)
:: Pause             Sert a faire une pause , juste faire entrer entre chaque pause.





:: ############
:: # Services #
:: ############

:: Services:
:: start= Auto            Démarre le service avec Windows.
:: start= Demand        Démarre le Service si Windows en à besoin, donc il démarre pas automatiquement avec Windows.
:: start= Disabled        Désactive le Service au démarrage de Windows et aucune possibilité de le lancer par la suite.
:: start= delayed-auto     Démarre le Service après le Démarrage complet de Windows.

:: Groupe Résidentiel:
::                         - Gestionnaire d’identité réseau homologue
::                         - Protocole PNRP
::                         -
::                         -
::                         -
::                         - Hôte système de diagnostics (En cas de problème il pourra diagnostiquer)
::                         - C:\Windows\ServiceProfiles\LocalService\AppData\Roaming\PeerNetworking


title "Services"

:: HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services
:: Start
:: 2 = Automatique
:: 3 = Manuel
:: 4 = Désactivé


echo "Page 1"
:: Accès du périphérique d'interface utilisateur
:: Demand
sc config "hidserv" start= Demand

:: Agent de protection d’accès réseau
:: Demand
sc config "napagent" start= Demand
sc start "napagent"

:: Assistance IP
:: Auto
sc config "iphlpsvc" start= Auto
sc start "iphlpsvc"

:: Assistance NetBIOS sur TCP/IP
:: Auto
sc config "lmhosts" start= Auto
sc start "lmhosts"

:: BranchCache
:: Demand
sc config "PeerDistSvc" start= Demand
sc start "PeerDistSvc"

:: Carte à puce
:: Demand
sc config "SCardSvr" start= Demand
sc start "SCardSvr"

:: Client de suivi de lien distribué
:: Auto
sc config "TrkWks" start= Auto
sc start "TrkWks"


echo "Page 2"
:: Configuration des services Bureau à distance
:: Demand
sc config "SessionEnv" start= Demand
sc start "SessionEnv"

:: Détection de services interactifs
:: Demand
sc config "UI0Detect" start= Demand
sc start "UI0Detect"

:: Énumérateur de bus IP PnP-X
:: Demand
sc config "IPBusEnum" start= Demand
sc start "IPBusEnum"

:: Expérience audio-vidéo haute qualité Windows
:: Demand
sc config "QWAVE" start= Demand
sc start "QWAVE"

:: Fichiers hors connexion
:: Auto
sc config "CscService" start= Auto
sc start "CscService"

:: Gestion à distance de Windows (Gestion WSM)
:: Demand
sc config "WinRM" start= Demand
sc start "WinRM"

:: Gestion d’applications
:: Demand
sc config "AppMgmt" start= Demand
sc start "AppMgmt"

:: Gestion des clés et des certificats d’intégrité
:: Demand
sc config "hkmsvc" start= Demand
sc start "hkmsvc"


echo "Page 3"
:: Gestionnaire d’identité réseau homologue
:: Demand
sc config "p2pimsvc" start= Demand
sc start "p2pimsvc"

:: Gestionnaire d’informations d’identification
:: Demand
sc config "VaultSvc" start= Demand
sc start "VaultSvc"

:: Groupement de mise en réseau de pairs
:: Demand
sc config "p2psvc" start= Demand
sc start "p2psvc"

:: Hôte du fournisseur de découverte de fonctions
:: Demand
sc config "fdPHost" start= Demand
sc start "fdPHost"

:: Hôte système de diagnostics
:: Demand
sc config "WdiSystemHost" start= Demand
sc start "WdiSystemHost"

:: Interruption SNMP
:: Demand
sc config "SNMPTRAP" start= Demand
sc start "SNMPTRAP"

:: Localisateur d’appels de procédure distante (RPC)
:: Demand
sc config "RpcLocator" start= Demand
sc start "RpcLocator"

:: Mappage de découverte de topologie de la couche de liaison
:: Demand
sc config "lltdsvc" start= Demand
sc start "lltdsvc"


echo "Page 4"
:: Netlogon
:: Demand
sc config "Netlogon" start= Demand
sc start "Netlogon"

:: Parental Controls
:: Demand
sc config "WPCSvc" start= Demand
sc start "WPCSvc"

:: Partage de connexion Internet (ICS)
:: Disabled
sc config "SharedAccess" start= Disabled
sc start "SharedAccess"

:: Prise en charge de l’application Rapports et solutions aux problèmes du Panneau de configuration
:: Demand
sc config "wercplsupport" start= Demand
sc start "wercplsupport"

:: Programme d’installation ActiveX (AxInstSV)
:: Demand
sc config "AxInstSV" start= Demand
sc start "AxInstSV"

:: Propagation du certificat
:: Demand
sc config "CertPropSvc" start= Demand
sc start "CertPropSvc"

:: Protocole PNRP
:: Demand
sc config "PNRPsvc" start= Demand
sc start "PNRPsvc"

:: Publication des ressources de découverte de fonctions
:: Demand
sc config "FDResPub" start= Demand
sc start "FDResPub"

:: Redirecteur de port du mode utilisateur des services Bureau à distance
:: Demand
sc config "UmRdpService" start= Demand
sc start "UmRdpService"

:: Registre à distance
:: Demand
sc config "RemoteRegistry" start= Demand
sc start "RemoteRegistry"

:: Service de biométrie Windows
:: Demand
sc config "WbioSrvc" start= Demand
sc start "WbioSrvc"

:: Service de chiffrement de lecteur BitLocker
:: Demand
sc config "BDESVC" start= Demand
sc start "BDESVC"

:: Service de configuration automatique WWAN
:: Demand
sc config "WwanSvc" start= Demand
sc start "WwanSvc"


echo "Page 5"
:: Service de l’Assistant Compatibilité des programmes
:: Auto
sc config "PcaSvc" start= Auto
sc start ""

:: Service de la passerelle de la couche Application
:: Demand
sc config "ALG" start= Demand
sc start "ALG"

:: Service de planification Windows Media Center
:: Demand
sc config "ehSched" start= Demand
sc start "ehSched"

:: Service de prise en charge Bluetooth
:: Demand
sc config "bthserv" start= Demand
sc start "bthserv"

:: Service de publication des noms d’ordinateurs PNRP
:: Demand
sc config "PNRPAutoReg" start= Demand
sc start "PNRPAutoReg"

:: Service de rapport d’erreurs Windows
:: Demand
sc config "WerSvc" start= Demand
sc start "WerSvc"

:: Service de réception Windows Media Center
:: Demand
sc config "ehRecvr" start= Demand
sc start "ehRecvr"


:: Service de stratégie de diagnostic
:: Demand
sc config "DPS" start= Demand
sc start "DPS"


:: Service Énumérateur d’appareil mobile
:: Demand
sc config "WPDBusEnum" start= Demand
sc start "WPDBusEnum"

:: Service hôte WDIServiceHost
:: Demand
sc config "WdiServiceHost" start= Demand
sc start "WdiServiceHost"

:: Service Initiateur iSCSI de Microsoft
:: Demand
sc config "MSiSCSI" start= Demand
sc start "MSiSCSI"

:: Service Panneau de saisie Tablet PC
:: Demand
sc config "TabletInputService" start= Demand
sc start "TabletInputService"

:: Service Partage réseau du Lecteur Windows Media
:: delayed-auto
sc config "WMPNetworkSvc" start= delayed-auto
sc start "WMPNetworkSvc"

:: Services Bureau à distance
:: Demand
sc config "TermService" start= Demand
sc start "TermService"

:: Services de base de module de plateforme sécurisée
:: Demand
sc config "TBS" start= Demand
sc start "TBS"


echo "Page 6"
:: Stratégie de retrait de la carte à puce
:: Demand
sc config "SCPolicySvc" start= Demand
sc start "SCPolicySvc"

:: Système de couleurs Windows
:: Demand
sc config "WcsPlugInService" start= Demand
sc start "WcsPlugInService"

:: Télécopie
:: Demand
sc config "Fax" start= Demand
sc start "Fax"

:: WebClient
:: Demand
sc config "WebClient" start= Demand
sc start "WebClient"

:: Windows CardSpace
:: Demand
sc config "idsvc" start= Demand
sc start "idsvc"

:: Windows Connect Now - Registre de configuration
:: Demand
sc config "wcncsvc" start= Demand
sc start "wcncsvc"

:: Windows Search
:: delayed-auto
sc config "WSearch" start= delayed-auto
sc start "WSearch"


:: Page Support:
"C:\Program Files (x86)\Internet Explorer\iexplore.exe" http://www.aeriagames.com/user/drthrax74
exit