How to disassociate file types on Windows 7

1,068

Solution 1

There is a 3rd party utility to disassociate file types on Windows 7 and Vista.

  • Download unassoc.zip
  • Extract the contents to a folder and run the file unassoc.exe
  • Select the file type (.bin) from the list
  • Click "Remove file association (User)"

enter image description here

Here is the resource page.

Solution 2

Try this:

  1. Press Win+R
  2. Type cmd and press enter
  3. In the command prompt type "assoc .bin= " (without quotes), be sure to press space after typing "=" and then press enter.
Share:
1,068

Related videos on Youtube

Greg Jennings
Author by

Greg Jennings

about.me/mehper Industrial Engineer M.Sc. One of the authors of Distribution Planning of Magazines: A Practical Approach. Author of Random Variate Generation If the Density Is Not Known: Basics, Methods, Implementations. Mostly dealing with the following topics: Food Logistics, Enterprise Resources Planning, Supply Chain Management, Materials Management, Healthcare Logistics, Executive Reporting, Data Analysis, System Development and Optimization. Programming Languages: VBA, SQL, R. XBox 360 fan.

Updated on September 18, 2022

Comments

  • Greg Jennings
    Greg Jennings almost 2 years

    Is there any way in which I can convert a string to list separated by spaces.The string has to be entered by the user. Suppose How are you today ? is the string entered by the user,I want to store it in a list say L, L=['How','are','you','today','?']. How can I do this??

  • Moab
    Moab about 13 years
    @pico, how would you use that command to associate something with a file extension? would you set a path to the program?
  • plco
    plco about 13 years
    See assoc and also Ftype
  • Moab
    Moab about 13 years
    Thanks, but I was looking for a real world example. Say I wanted to set an association for .mp3 to a specific audio program.
  • plco
    plco about 13 years
    There is one on the Ftype page I linked above, just replace the references to perl with others appropriate to the situation, e.g. Moab.mp3 instead of PerlScript and your favorite player instead of perl.exe. The MP3 file type hasn't a general name, but rather one that is application specific e.g. VLC.mp3
  • Moab
    Moab about 13 years
    I have no scripting or programming education, if I cannot see a real world example this advice does me no good, thanks for trying.
  • Admin
    Admin over 9 years
    this is giving me folllowing error- ԀERROR: main/0: Undefined procedure: split_string/4 Exception: (7) split_string([97, 46, 98, 46, 99, 46, 100], [46], [], _G1077) ?
  • Ralff11
    Ralff11 over 9 years
    split_string works in SWI-Prolog version 7. instead ?- atomic_list_concat(L, ' ', 'How are you today ?').