Skip to content

Instantly share code, notes, and snippets.

@olliencc
Created June 29, 2020 13:58
Show Gist options
  • Save olliencc/bd3995c510d5ed240ccd57883f607fe4 to your computer and use it in GitHub Desktop.
Save olliencc/bd3995c510d5ed240ccd57883f607fe4 to your computer and use it in GitHub Desktop.
Show which program will load which extension when you double click in CSV format
@echo off
REM °²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²°
REM °² Enumerates all files extensions ²°
REM °² and what opens them on Windows 10 in batch/cmd ²°
REM °² twitter: @ollieatnccgroup ²°
REM °²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²²°
for /f "tokens=1,2 delims==" %%G in ('assoc') do (
for /f "tokens=1,2 delims==" %%I in ('ftype %%H 2^> nul') do (
echo %COMPUTERNAME%,%%G,%%J
)
)
@olliencc
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment