View Single Post
  #2 (permalink)  
Old 18th December 2002
Quietseb's Avatar
Quietseb Quietseb is offline
Senior Member
BS.Player Power User
 
Join Date: Jun 2002
Location: back in France...
Posts: 581
Rep Power: 0
Quietseb is an unknown quantity at this point
Default

there's a simple and long way to do that (it's long because you have to do it for every file type):

start windows explorer
tools --> folder options
file types, select the file type you want to modify , e.g. AVI
advanced
select "play" action
set default

------

there's much talking about the registry today so I'll add my bit:
you can do it via the registry too => you can make a .reg file which will do it for every file type you chose next time you need to set up all these.
just start regedit.exe, go to HKEY_CLASSES_ROOT\AVIfile\shell
and file->export registry file
this creates appropriate .reg file
same for HKEY_CLASSES_ROOT\mpegfile\shell
and so on
merge all the .reg files together (notepad and copy/paste)
make sure you have default action set to "play" for every file type (and of course the play thing does exist and is associated with bsplayer

what gives us something like that for AVIs:
Code:
[HKEY_CLASSES_ROOT\AVIfile\shell]
@="play"

[HKEY_CLASSES_ROOT\AVIfile\shell\Play]
@="&Play with BsPlayer"

[HKEY_CLASSES_ROOT\AVIfile\shell\Play\command]
@="D:\\Program Files\\BSPlayer\\bplay.exe \"%L\""
Reply With Quote
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20