Cette question a déjà une réponse ici:
J'ai créé une association de fichiers personnalisée pour .cfg
ouvrir WordPad , mais je n'arrive pas à comprendre comment l'enlever. Comment supprimer des associations de fichiers dans Windows 7?
la source
Cette question a déjà une réponse ici:
J'ai créé une association de fichiers personnalisée pour .cfg
ouvrir WordPad , mais je n'arrive pas à comprendre comment l'enlever. Comment supprimer des associations de fichiers dans Windows 7?
Dans une fenêtre de commande, vous pouvez utiliser les commandes "ASSOC" et "FTYPE" pour ajouter / modifier / supprimer des associations de types de fichiers.
C:>assoc /?
ASSOC [.ext[=[fileType]]]
.ext Specifies the file extension to associate the file type with
fileType Specifies the file type to associate with the file extension
Type ASSOC without parameters to display the current file associations.
If ASSOC is invoked with just a file extension, it displays the current
file association for that file extension. Specify nothing for the file
type and the command will delete the association for the file extension.
et:
C:>ftype /?
FTYPE [fileType[=[openCommandString]]]
fileType Specifies the file type to examine or change
openCommandString Specifies the open command to use when launching
files of this type.
Type FTYPE without parameters to display the current file types that
have open command strings defined. FTYPE is invoked with just a file
type, it displays the current open command string for that file type.
Specify nothing for the open command string and the FTYPE command will
delete the open command string for the file type. Within an open
command string %0 or %1 are substituted with the file name being
launched through the assocation. %* gets all the parameters and %2
gets the 1st parameter, %3 the second, etc. %~n gets all the remaining
parameters starting with the nth parameter, where n may be between 2 and 9,
inclusive.
... ...
Donc (sur mon système), concernant les fichiers .bkr, ces commandes renvoient:
C:>assoc .bkr
.bkr=bkrfile
C:>ftype bkrfile
bkrfile="F:\Program Files\path...\program.exe" "%1"
J'ai créé un nouveau type d'extension / de fichier "test" (peut nécessiter des autorisations d'administrateur):
C:>assoc .bzb
File association not found for extension .bzb
C:>assoc .bzb=MyBZBCustomFileType
.bzb=MyBZBCustomFileType
C:>assoc .bzb
.bzb=MyBZBCustomFileType
C:>ftype MyBZBCustomFileType
File type 'MyBZBCustomFileType' not found or no open command associated with it.
C:>ftype MyBZBCustomFileType=%SystemRoot%\system32\NOTEPAD.EXE %1
MyBZBCustomFileType=C:\Windows\system32\NOTEPAD.EXE %1
C:>echo Some text.>C:\Temp\file.bzb
C:>start "" C:\Temp\file.bzb
Cela ouvre "Bloc-notes" éditer mon fichier "factice".
Pour supprimer l'association de type de fichier, supprimez d'abord la connexion du type de fichier au programme comme ceci:
C:>ftype MyBZBCustomFileType
MyBZBCustomFileType=C:\Windows\system32\NOTEPAD.EXE %1
C:>ftype MyBZBCustomFileType=
File type 'MyBZBCustomFileType' not found or no open command associated with it.
Supprimez ensuite l'association d'extension de fichier (peut nécessiter des autorisations d'administrateur):
C:>assoc .bzb
.bzb=MyBZBCustomFileType
C:>assoc .bzb=
C:>assoc .bzb
File association not found for extension .bzb
C:>start "" C:\Temp\file.bzb
(The dialogbox "Windows cannot open this file" opens)
C:>
Pour une solution graphique, j'utilise PowerTools par Creative Elements . Vous pouvez le télécharger et l'utiliser gratuitement pendant 45 jours à l'essai. Ceci est une collection d'outils, et vous utiliseriez leur File Type Doctor
outil pour ajouter / modifier / supprimer des associations de types de fichiers.
assoc .bzb=
etftype MyBZBCustomFileType=
le moyen officiel de supprimer les associations de fichiers ou existe-t-il un autre moyen approprié de le faire?ftype /?
etassoc /?
ne semble pas mentionner l'utilisation qu'il est légal d'utiliser=
supprimer les associations de fichiers.assoc /?
etftype /?
. Pourassoc /?
:Specify nothing for the file type and the command will delete the association for the file extension.
, et pourftype /?
:Specify nothing for the open command string and the FTYPE command will delete the open command string for the file type.
Vous pouvez supprimer l'association dans le registre:
Et effacez la clé avec le GUID cela correspond à WordPad.
la source
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.cfg
Vous pouvez utiliser cette application tierce cool, Editeur de programmes par défaut :
la source
Pour changer les associations (cela ne semble pas vous permettre de supprimer) avec les outils Windows 7 intégrés (ceux de l'interface utilisateur) est d'ouvrir le Le menu Démarrer , Alors choisi Programmes par défaut . (Ou si ce n'est pas présent, ouvrez Le menu Démarrer , Panneau de contrôle (vous devrez peut-être changer de Voir par catégorie à Voir par grandes icônes ) et alors Programmes par défaut .)
Puis sélectionnez Associer un type de fichier ou un protocole à un programme . Vous obtiendrez une liste des associations actuellement configurées sur votre ordinateur. Recherchez l'extension que vous souhaitez modifier et double-cliquez dessus pour modifier sa configuration.
la source
Cliquez avec le bouton droit sur un fichier .cfg - & gt; Ouvrir avec - & gt; Choisissez le programme par défaut. Puis cochez la case "Toujours utiliser le programme sélectionné pour ouvrir ce type de fichier" et sélectionnez un programme dans la liste ou cliquez sur le bouton Parcourir pour sélectionner manuellement un programme dans le système de fichiers.
Guide complet avec des images: http://www.sevenforums.com/tutorials/12196-open-change-default-program.html
la source