Default file association not working with some extensions

AtriosM3

New Member
Messages
3
Hello 8Forums Community,

I'm having file association issues.
I've have tried troubleshooting this for hours without any avail. I'm coming here as a last resort....now that I think of it, maybe I should have come here first.

On to my issue:

I recently lost file association capabilities with .torrent and GDrive items (.gdoc, .gforum, .gsheet, etc). These are the two that I have at least noticed.

  1. When I click on either of those files, it gives me a prompt to choose a file association. Since the correct program isn't listed, I go and click on the option to find the program manually. However after I select the correct program for each of the above files listed, nothing happens. Nothing opens, nothing changes, nada happens.
  2. I have also tried right clicking on each of the files above mentioned, going to properties, under the general tab I click change next to the part where it says "Opens with:". Same thing as in part #1. Nothing happens, nothing changes. It says in that slot "Pick an app" and says the same thing after I pick an app.
  3. Then I went to Control panel, Default Programs, Associate a file type or protocol with a program. The interesting part here is that I cannot find among the huge file extension list the above referenced file extensions (.gdocs, etc). It's like they are not baked into the system. However, when I go to regedit (registry editor) and look at this key "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts" I can find all the file extensions listed above. I even deleted the .gdocs one to see what would happen (deleting the whole extension file in the reg editor under the above reg edit address) and nothing happened. I still cannot associate anything with a .gdoc file.
  4. Other common file extensions such as .pdf work great. I can change between the default program without an issue. If I change a default program for a .pdf file, it sticks and does not give me headaches as the above file extensions.

I'm running out of options. I have a suspicion that maybe running Advanced SystemCare 7 may have done something strange to those file extensions. Just a hunch, but I don't know how to further look into this. I cannot do a file restore as this has been going on for a while, and I don't remember which restore to use or how far back to go or if I even have a restore option that could fix this.

Your help is much appreciated.

Cheers

Atrios
 

My Computer

System One

  • OS
    Windows 8.1
Just checking in to see if anyone has had any thoughts on this topic. I really hope the fix isn't having to do a full reinstall....that would suck. Please, if you have any suggestions, they are welcomed.

Thanks! :cool:
 

My Computer

System One

  • OS
    Windows 8.1
Have you tried uninstalling and reinstalling your torrent and GDrive programs?
 

My Computer

System One

  • OS
    Windows 10 Pro X64
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Lenovo IdeaCenter K450
    CPU
    Intel Quad Core i7-4770 @ 3.4Ghz
    Motherboard
    Lenovo
    Memory
    16.0GB PC3-12800 DDR3 SDRAM 1600 MHz
    Graphics Card(s)
    Intel Integrated HD Graphics
    Sound Card
    Realtek HD Audio
    Monitor(s) Displays
    HP h2207
    Screen Resolution
    1680x1050@59Hz
    Hard Drives
    250GB Samsung EVO SATA-3 SSD;
    2TB Seagate ST2000DM001 SATA-2;
    1.5TB Seagate ST3150041AS SATA
    PSU
    500W
    Keyboard
    Wired USB
    Mouse
    Wired USB
    Internet Speed
    3GB Up, 30GB Down
    Browser
    SeaMonkey
    Antivirus
    Windows Defender; MBAM Pro
    Other Info
    UEFI/GPT
    PLDS DVD-RW DH16AERSH
Have you tried uninstalling and reinstalling your torrent and GDrive programs?

Yes, with no avail. Thanks for the thought.

I'm thinking the problem is deeper...maybe registry issues. However, I don't have registry smarts to know how to dig into this. I'm hoping someone else has some thoughts.

~A
 

My Computer

System One

  • OS
    Windows 8.1
See what the defaults are set to now using the assoc and ftype commands in a Elevated Command Prompt;

For example, this is for a .txt file:

C:\Users\xxxxxxxx>assoc .txt
.txt=txtfile

C:\Users\xxxxxxxx>ftype txtfile
txtfile=%SystemRoot%\system32\NOTEPAD.EXE %1

You would do this for .torrent, .gdoc, .gforum, .gsheet, etc

This is how you could change the default program for them:

C:\Users\rrkurtz>ftype /?
Displays or modifies file types used in file extension associations

FTYPE [fileType[=[openCommandString]]]

fileType Specifies the file type to examine or change
openCommandString Specifies the open command to use when launching files
of this type.

Type FTYPE without parameters to display the current file types that
have open command strings defined. FTYPE is invoked with just a file
type, it displays the current open command string for that file type.
Specify nothing for the open command string and the FTYPE command will
delete the open command string for the file type. Within an open
command string %0 or %1 are substituted with the file name being
launched through the assocation. %* gets all the parameters and %2
gets the 1st parameter, %3 the second, etc. %~n gets all the remaining
parameters starting with the nth parameter, where n may be between 2 and 9,
inclusive. For example:

ASSOC .pl=PerlScript
FTYPE PerlScript=perl.exe %1 %*

would allow you to invoke a Perl script as follows:

script.pl 1 2 3

If you want to eliminate the need to type the extensions, then do the
following:

set PATHEXT=.pl;%PATHEXT%

and the script could be invoked as follows:

script 1 2 3
 

My Computer

System One

  • OS
    Windows 10 Pro X64
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Lenovo IdeaCenter K450
    CPU
    Intel Quad Core i7-4770 @ 3.4Ghz
    Motherboard
    Lenovo
    Memory
    16.0GB PC3-12800 DDR3 SDRAM 1600 MHz
    Graphics Card(s)
    Intel Integrated HD Graphics
    Sound Card
    Realtek HD Audio
    Monitor(s) Displays
    HP h2207
    Screen Resolution
    1680x1050@59Hz
    Hard Drives
    250GB Samsung EVO SATA-3 SSD;
    2TB Seagate ST2000DM001 SATA-2;
    1.5TB Seagate ST3150041AS SATA
    PSU
    500W
    Keyboard
    Wired USB
    Mouse
    Wired USB
    Internet Speed
    3GB Up, 30GB Down
    Browser
    SeaMonkey
    Antivirus
    Windows Defender; MBAM Pro
    Other Info
    UEFI/GPT
    PLDS DVD-RW DH16AERSH
Back
Top