Remove File Association

O

OldGuy

XP Pro

How to Remove File Association ?
I want the file type not associated with anything.
 
R

RobertMacy

XP Pro

How to Remove File Association ?
I want the file type not associated with anything.

All of them or do you have a specific file type in mind?

Open Windows Explorer, click on TOOLS, and selct FOLDER OPTIONS

Select tab FILE TYPES

Then go down through the list, find the file and there it shows yoiu what
is associated with that file type

select REMOVE at the side, ignore MS's dire warning of great calamity, and
select ok.

When you go back to you list of files, it should show your icon changed,
and won't open with anything.

Watch out if indeed the file is something really basic, Windows gets a bit
quirky about being disrupted and may punish you.
 
M

Mayayana

| How to Remove File Association ?
| I want the file type not associated with anything.
|

Remove the Registry key. If the file extension is .xyz
then remove HKEY_CLASSES_ROOT\.xyz

The way it works is that Explorer looks under HKCR
for the file extension. The default value there then
points to another key. For instance, under HKCR\.txt
should be "txtfile".
The second key provides association information.
Under HKCR\txtfile\shell\open\command should be
something like C:\Windows\System32\Notepad %1

So you can change the association by changing
the HKCR\.txt default value and you can remove it
by deleting the HKCR\.txt key.
 
V

VanguardLH

OldGuy said:
XP Pro

How to Remove File Association ?
I want the file type not associated with anything.

In a command shell (cmd.exe), run "assoc /?". If you don't specify the
filetype handler then whatever is currently assigned is removed.

As examples, run "assoc .txt" and "assoc .rtf". What you get back are
the filetypes define in the registry. You could use registed to see how
they're defined but I doubt you care since you just want to wipe
whatever is currently assigned.
 
J

JJ

Thanks all.

I tried to do it in Control Panel / Folders Options but Remove was
disabled ????

Anyway I changed the association to something not obnoxious (just a
term of endearment) and that was allowed (sorry it was late, but I
think I used .txt), then when I went back to Control Panel / Folder
Options; Remove was enabled so I clicked it and it then did remove the
association.

Any ideal why Remove was disabled?

It's prevented by the "EditFlags" value in the file type subkey.
See "Creating a File Association" and "FILETYPEATTRIBUTEFLAGS" articles on
MSDN.
 
J

JJ

I have associated .CLP ext to Clipbrd.exe and it does not work
in Windows XP and Windows Me.
I have tried quite a few time but no luck.
It opens the clipbrd.exe as blank but no contents of
.CLP file.
The .CLP association in the registry appears to be ok.

Any advice would be appreciated?

Your CLP file is probably not a valid NT/Win3.1 clipboard file, or is
corrupted.

Try putting something into the clipboard, open CLIPBRD.EXE, save the current
clipboard, close CLIPBRD.EXE, then double-click the newly saved CLP file.
 
J

JJ

When I "Save As" in the Clipbrd.exe and try to open it
by d/c, the answer is "Access Denied" or "Unknown Application"
where as before it use to open a blank clipbrd.exe screen.
I can delete the "Save As" .clp file easily.
There is no "Access Denied" restriction to delete the CLP file.

The fact that the result/error is inconsistent, it's likely caused by faulty
RAM or harddisk. Or damaged EXE due to malware/virus.
 
P

Paul

AAH said:
When I "Save As" in the Clipbrd.exe and try to open it
by d/c, the answer is "Access Denied" or "Unknown Application"
where as before it use to open a blank clipbrd.exe screen.
I can delete the "Save As" .clp file easily.
There is no "Access Denied" restriction to delete the CLP file.

The registry defaults for .clp are here. The line with the "-"
in it, I think that removes the old key, while the three lines
below it define the default again. This should give you
a hint as to what needs to change (while you're looking in
RegEdit).

http://windowsxp.mvps.org/reg/clpfix_xp.reg

*******
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.clp]
@="clpfile"

[HKEY_CLASSES_ROOT\clpfile]
@="Clipboard Clip"

[HKEY_CLASSES_ROOT\clpfile\DefaultIcon]
@=hex(2):25,00,73,00,79,00,73,00,74,00,65,00,6d,00,72,00,6f,00,6f,00,74,00,25,\
00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,63,00,6c,00,\
69,00,70,00,62,00,72,00,64,00,2e,00,65,00,78,00,65,00,2c,00,31,00,00,00

[HKEY_CLASSES_ROOT\clpfile\shell]

[HKEY_CLASSES_ROOT\clpfile\shell\open]

[HKEY_CLASSES_ROOT\clpfile\shell\open\command]
@="clipbrd.exe %1"

[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.CLP]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.CLP]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.CLP\OpenWithList]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.CLP\OpenWithProgids]
"clpfile"=hex(0):

*******

HTH,
Paul
 
T

Tim Meddick

[*.clp] files, that have been saved with the application "ClipBook Viewer
[Clipboard]" (clipbrd.exe), can *only* be opened with the;

File > Open...

...menu function, from *within* that application - it does NOT support
opening of [*.clp] files by the parsing of a command line and appending it
with the filename.

I've no idea why this application does not support opening files from the
command-line, but the fact is that it does not...

==

Cheers, Tim Meddick, Peckham, London. :)
 
J

John John MVP

On 7/10/2014 7:37 PM, Tim Meddick wrote:
..
I've no idea why this application does not support opening files from
the command-line, but the fact is that it does not...

It's because the application reads the last saved item from memory, it
would have to discard this buffer to open another file, I guess a
decision was made to have it keep the save buffer at all times rather
than permit it to open files and discard the last saved item.

John
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top