Skonfigurowałem niestandardowe skojarzenie plików, aby można je .cfg
było otworzyć w programie WordPad , ale wydaje mi się, że nie mogę wymyślić, jak je usunąć. Jak usunąć skojarzenia plików w systemie Windows 7?
źródło
Skonfigurowałem niestandardowe skojarzenie plików, aby można je .cfg
było otworzyć w programie WordPad , ale wydaje mi się, że nie mogę wymyślić, jak je usunąć. Jak usunąć skojarzenia plików w systemie Windows 7?
Z okna poleceń możesz użyć poleceń „ASSOC” i „FTYPE”, aby dodać / edytować / usunąć skojarzenia typów plików.
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.
i:
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.
... ...
Tak więc (w moim systemie) w odniesieniu do plików .bkr te polecenia zwracają:
C:>assoc .bkr
.bkr=bkrfile
C:>ftype bkrfile
bkrfile="F:\Program Files\path...\program.exe" "%1"
Utworzyłem nowe rozszerzenie / typ pliku „testowego” (może wymagać uprawnień administratora):
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
Otworzy się „Notatnik”, edytując mój „sztuczny” plik.
Aby usunąć powiązanie typu pliku, najpierw usuń połączenie typu pliku z programem w następujący sposób:
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.
Następnie usuń powiązanie rozszerzenia pliku (może wymagać uprawnień administratora):
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:>
Do rozwiązania GUI używam PowerTools firmy Creative Elements . Możesz pobrać i używać go bezpłatnie przez 45 dni w wersji próbnej. Jest to zbiór narzędzi, których można używać File Type Doctor
do dodawania / edycji / usuwania skojarzeń typów plików.
assoc .bzb=
iftype MyBZBCustomFileType=
oficjalny sposób, aby usunąć skojarzenia plików, czy też istnieje inny właściwy sposób to zrobić?ftype /?
iassoc /?
wydaje się nie wspominać o tym, że=
można usuwać skojarzenia plików.assoc /?
iftype /?
. Zaassoc /?
:Specify nothing for the file type and the command will delete the association for the file extension.
i zaftype /?
:Specify nothing for the open command string and the FTYPE command will delete the open command string for the file type.
Możesz usunąć powiązanie z rejestru:
I usuń klucz z GUID, który odpowiada WordPad.
źródło
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.cfg
Możesz użyć tej fajnej aplikacji innej firmy, domyślnego edytora programów :
źródło
Sposobem zmiany powiązań (choć nie pozwala to na usunięcie) za pomocą wbudowanych narzędzi systemu Windows 7 (UI) jest otwarcie menu Start , a następnie wybranie programów domyślnych . (Lub jeśli go nie ma, otwórz Menu Start , Panel sterowania (może być konieczna zmiana z Widok według kategorii na Widok według dużych ikon ), a następnie Programy domyślne .)
Następnie wybierz opcję Skojarz typ pliku lub protokół z programem . Otrzymasz listę skojarzeń aktualnie skonfigurowanych na twoim komputerze. Znajdź rozszerzenie, które chcesz zmienić, i kliknij je dwukrotnie, aby zmienić jego konfigurację.
źródło
Kliknij prawym przyciskiem myszy plik .cfg -> Otwórz za pomocą -> Wybierz program domyślny. Następnie zaznacz „Zawsze używaj wybranego programu do otwierania tego rodzaju plików” i wybierz program z listy lub kliknij przycisk Przeglądaj, aby ręcznie wybrać program z systemu plików.
Pełny przewodnik ze zdjęciami: http://www.sevenforums.com/tutorials/12196-open-change-default-program.html
źródło