Saya telah menyiapkan asosiasi file khusus untuk .cfg
dibuka di WordPad , tetapi sepertinya saya tidak tahu cara menghapusnya. Bagaimana cara menghapus asosiasi file di Windows 7?
sumber
Saya telah menyiapkan asosiasi file khusus untuk .cfg
dibuka di WordPad , tetapi sepertinya saya tidak tahu cara menghapusnya. Bagaimana cara menghapus asosiasi file di Windows 7?
Dari jendela perintah, Anda dapat menggunakan perintah "ASSOC" dan "FTYPE" untuk menambah / mengedit / menghapus asosiasi tipe file.
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.
dan:
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.
... ...
Jadi (pada sistem saya), mengenai file .bkr, perintah ini kembali:
C:>assoc .bkr
.bkr=bkrfile
C:>ftype bkrfile
bkrfile="F:\Program Files\path...\program.exe" "%1"
Saya membuat ekstensi file / jenis file "test" baru (mungkin memerlukan izin admin):
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
Ini membuka "Notepad" mengedit file "dummy" saya.
Untuk menghapus asosiasi tipe file, pertama-tama hapus koneksi tipe file ke program seperti ini:
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.
Kemudian hapus asosiasi ekstensi file (mungkin memerlukan izin admin):
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:>
Untuk solusi GUI, saya menggunakan PowerTools oleh Creative Elements . Anda dapat mengunduh dan menggunakannya secara gratis selama 45 hari dalam uji coba. Ini adalah kumpulan alat, dan Anda akan menggunakan File Type Doctor
alat mereka untuk menambah / mengedit / menghapus asosiasi jenis file.
assoc .bzb=
danftype MyBZBCustomFileType=
cara resmi untuk menghapus file asosiasi atau ada cara lain yang tepat untuk melakukannya?ftype /?
danassoc /?
sepertinya tidak menyebutkan menggunakan yang legal=
untuk menghapus asosiasi file.assoc /?
danftype /?
. Untukassoc /?
:Specify nothing for the file type and the command will delete the association for the file extension.
, dan untukftype /?
:Specify nothing for the open command string and the FTYPE command will delete the open command string for the file type.
Anda dapat menghapus asosiasi di registri:
Dan hapus kunci dengan GUID yang sesuai dengan WordPad.
sumber
reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.cfg
Anda dapat menggunakan aplikasi pihak ketiga yang keren ini, Editor Program Default :
sumber
Cara untuk mengubah asosiasi (sepertinya tidak membiarkan Anda menghapus) dengan alat Windows 7 bawaan (yang UI) adalah membuka Start Menu , lalu pilih Program Default . (Atau jika tidak ada, buka Start Menu , Control Panel (Anda mungkin perlu mengubah dari Lihat berdasarkan kategori ke Lihat dengan ikon besar ) dan kemudian Program Default .)
Kemudian pilih Kaitkan jenis file atau protokol dengan program . Anda akan mendapatkan daftar dengan asosiasi yang saat ini dikonfigurasi di komputer Anda. Temukan ekstensi yang ingin Anda ubah dan klik dua kali untuk mengubah konfigurasinya.
sumber
Klik kanan file .cfg -> Buka dengan -> Pilih program Default. Kemudian periksa "Selalu gunakan program yang dipilih untuk membuka file jenis ini" dan pilih program dari daftar atau klik tombol Browse untuk secara manual memilih program dari sistem file.
Panduan lengkap dengan gambar: http://www.sevenforums.com/tutorials/12196-open-change-default-program.html
sumber