Recent content by freex

  1. F

    Windows 7 Scripting: assoc and ftype

    No, it's working !!!! Problem was one stupid dot in Mplayer.Video. Here is the entire script in case someone googles this (script must be in same directory like mplayer.exe): @echo off echo Mplayer file association script&echo. echo Please make sure you have administrative rights. set...
  2. F

    Windows 7 Scripting: assoc and ftype

    You are right. I've misjudged those two commands. I thought it's Windows 7 problem, but it's not working on Windows XP neither.
  3. F

    Windows 7 Scripting: assoc and ftype

    No, its part of Windows. Either Windows 7. I've sent you web page that I'm learning syntax from. Run command line and type: assoc /? ftype /?
  4. F

    Windows 7 Scripting: assoc and ftype

    Windows XP Commands
  5. F

    Windows 7 Scripting: assoc and ftype

    I used assoc and ftype commands because its easy to back up associations and maybe someday restore. And script file because it's like "write once and use many times". FileTypesMan doesn't provide backup neither scripting. If you know a way to do it, I would appreciate your help.
  6. F

    Windows 7 Scripting: assoc and ftype

    Hello, I've made script to associate video files with MPlayer (not WMP). It's simple .bat file, here's part of it: ftype MPlayer.Video=\"%~dp0mplayer.exe\" \"%%1\" \"%%*\" 1>nul assoc .avi=MPlayer.Video 1>nul assoc .mkv=MPlayer.Video 1>nul assoc .flv=MPlayer.Video 1>nul assoc...
Back
Top