Changing file associations for ONE user only

Concerns WinXP. OK, need info how to change file associations on XP, so that the changes affect ONE user only. Exact problem : I want to open http-links and internet shorcuts with OPERA, but my brother prefers IE.

Everything New Technology 1823 This topic was started by ,


data/avatar/default/avatar25.webp

6 Posts
Location -
Joined 2004-03-09
Concerns WinXP.
 
OK, need info how to change file associations on XP, so that the changes affect ONE user only.
 
Exact problem :
I want to open http-links and internet shorcuts with OPERA, but my brother prefers IE. Both accounts are Administrators on the same install of XP.
 
- Pak

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar35.webp

17 Posts
Location -
Joined 2003-08-08
Two commands, ASSOC and FTYPE, allow you to manage file associations from a command prompt (or in a batch file).
 
Typing ASSOC, without parameters, displays the currently defined extensions. Type Assoc .wav to display the .wav file association. Typing assoc .wav= will delete the .wav association.
 
Typing FTYPE without options displays the file types that have defined open command strings. Ftype SoundRec will display the open command string for the file type SoundRec. Typing ftype SoundRec= will delete the open command string.
 
To define a new association for .log files which you want to open with notepad:
 
assoc .log=LogFile
ftype LogFile=%Systemroot%\System32\notepad.exe %1
 
For a complete explanation, type ftype /? at a command prompt.
 
Just create a batch file to change the associations from one browser to the other for each of you and place the batch file in the startup folder in each of your profiles. That way it runs everytime one of you log in.

data/avatar/default/avatar25.webp

6 Posts
Location -
Joined 2004-03-09
OP
That might work. We are usually both logged on at the same time though.
That could make it difficult
So XP doesn't support this functionality directly?
 
- Pak