About 51 results
Open links in new tab
  1. windows 10 - Changing File Associations via assoc - Super User

    Oct 27, 2021 · I'm trying to change file associations via assoc (CLI), but I can't get assoc to show me the current default program: assoc .txt Returns: .txt=txtfile and assoc txtfile Returns: txtfile=Text Docu...

  2. Associate a File Type with a Specific Program - Super User

    Jan 15, 2012 · Use ASSOC {.fileExtension}={fileType} to associate a file extension with the file type you created. Example: FTYPE MyCustomType=C:\Program Files\MyCustomProgram\MyProg.exe "%1" …

  3. How to associate a file with a program in Windows via CMD

    Possible Duplicate: Associate a File Type with a Specific Program How do I change file association via the cmd.exe prompt? I know this is similar to this question, but I'm only concerned with ...

  4. batch - Programatically associate file extensions with application on ...

    Interesting, when I do >assoc .php it says it has no file association? It seems what is set up when you specify a default program to open a file type is not 'registered' in this way.

  5. powershell - Best way to get file type association in Windows 10 from ...

    Aug 7, 2018 · It seems that ftype and assoc are pretty useless on systems running Windows 8 or later. This is due to the fact that Microsoft decided in Windows 8 that users should be able to set default …

  6. How does the mysqli_fetch_assoc function work? - Stack Overflow

    Jan 2, 2018 · The purpose of mysqli_fetch_assoc() is to fetch a row from this object and move an internal pointer to the next row. Next time you call this method on the same object it will fetch a …

  7. How do I get ftype & assoc to match Windows Explorer?

    5 i don't know how can you make the match between registry and what appears in ftype and assoc. To me and as i see to you as well the ftype and assoc command are useless. What i do to change the …

  8. assoc and ftype do not work under Powershell - Stack Overflow

    Nov 6, 2015 · I thought all cmd commands work the same under Powershell. For example assoc and ftype do not work. Is there a way to make them work instead of switching to cmd again?

  9. windows - Why doesn't assoc work here to disassociate a file type ...

    The assoc command is very old, dating from DOS, and does not use well the newer file-association mechanism of Windows. The proof is that after running assoc .txt2=notepad, double-click on a .txt2 …

  10. php - Understanding fetch_assoc () - Stack Overflow

    Sep 1, 2016 · How does putting fetch_assoc into a while loop tell it to do the action more than once? I read that fetch_assoc returns either an associative array or NULL but I'm struggling to understand …