Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: "other" shortcuts In "my computer" problem  (Read 3494 times)

0 Members and 1 Guest are viewing this topic.

amz_raptor

    Topic Starter


    Starter

    "other" shortcuts In "my computer" problem
    « on: January 17, 2009, 01:50:38 PM »


    here's my problem it's just an image :)
    thank you all in advance
    « Last Edit: January 18, 2009, 06:37:34 AM by amz_raptor »

    ali_abdulla3

    • Guest
    Re: "other" shortcuts In "my computer" problem
    « Reply #1 on: January 18, 2009, 06:40:16 AM »
    more details?

    patio

    • Moderator


    • Genius
    • Maud' Dib
    • Thanked: 1769
      • Yes
    • Experience: Beginner
    • OS: Windows 7
    Re: "other" shortcuts In "my computer" problem
    « Reply #2 on: January 18, 2009, 07:07:05 AM »
    Printer ? ?
    USB card reader ? ?
    Camera ? ?

    If so uninstall these devices and re-install them as it's probably just a corrupt driver...
    " Anyone who goes to a psychiatrist should have his head examined. "

    amz_raptor

      Topic Starter


      Starter

      Re: "other" shortcuts In "my computer" problem
      « Reply #3 on: January 18, 2009, 07:30:33 AM »
      Printer ? ?
      USB card reader ? ?
      Camera ? ?

      If so uninstall these devices and re-install them as it's probably just a corrupt driver...

      Actually, it's just the win live 8.5 sharing folders ..and i updated to win live 2009 and this is what i ended up with ...i think the trick is to know which part of the registry holds the "other" section of "my computer" it's a was a pure uninstall for 8.5 then installed 2009

      BC_Programmer


        Mastermind
      • Typing is no substitute for thinking.
      • Thanked: 1140
        • Yes
        • Yes
        • BC-Programming.com
      • Certifications: List
      • Computer: Specs
      • Experience: Beginner
      • OS: Windows 11
      Re: "other" shortcuts In "my computer" problem
      « Reply #4 on: January 18, 2009, 09:36:15 AM »
      i think the trick is to know which part of the registry holds the "other" section of "my computer" it's a was a pure uninstall for 8.5 then installed 2009

      Actually... no...


      You would have to find out which IShellFolder Implementation is adding that object to the shell namespace, retrieve the CLSID of that object, do a reverse lookup in the registry for the InprocServer32 that instantiates it, and then all you've done is determined what is creating it.

      It does sound like a missing DLL still listed as a Component Category for Shell Extensions...



      Alright...

      It is a shell extension that Windows Live Installs. Try this-

      you'll need to locate the extensions file. On my computer it is: "C:\Program Files\MSN Messenger\fsshext.8.1.0178.00.dll" (I'm using Messenger 8.1). the "fsshext" part will likely be the same on your version; if there is more then one, you should probably try this with all of them...

      once you've found this file- you need to unregister it:

      create a new Command Prompt window- Start->Run (search) cmd <enter>
      replace the file with the path/filename of the fsshext file you found in the following command:
      Code: [Select]
      regsvr32 -u "C:\Program Files\MSN Messenger\fsshext.8.1.0178.00.dll"

      a confirmation dialog should appear. If you don't want a new Sharing folder appearing after you reboot from the latest version, you can rename the latest numbered version you find to another name- when I need to do something of the sort, I just tack ".old" to the end of the name.

      You will likely need to reboot for the icon to disappear now. I hope this works for you.
      I was trying to dereference Null Pointers before it was cool.

      amz_raptor

        Topic Starter


        Starter

        Re: "other" shortcuts In "my computer" problem
        « Reply #5 on: January 18, 2009, 10:20:28 AM »
        thanks BC_Programmer that did the trick it was just a 8.5 instead of 8.1 :)
        and the icon became a "deletable shortcut actually" so i pressed delete key and YES :D and it was gone for good.  ;D ;D

        BC_Programmer


          Mastermind
        • Typing is no substitute for thinking.
        • Thanked: 1140
          • Yes
          • Yes
          • BC-Programming.com
        • Certifications: List
        • Computer: Specs
        • Experience: Beginner
        • OS: Windows 11
        Re: "other" shortcuts In "my computer" problem
        « Reply #6 on: January 18, 2009, 06:55:20 PM »
        good to hear!

        come back anytime!  8)
        I was trying to dereference Null Pointers before it was cool.

        Broni


          Mastermind
        • Kraków my love :)
        • Thanked: 614
          • Computer Help Forum
        • Computer: Specs
        • Experience: Experienced
        • OS: Windows 8
        Re: "other" shortcuts In "my computer" problem
        « Reply #7 on: January 18, 2009, 08:46:07 PM »
        Nice job, BC :)

        BC_Programmer


          Mastermind
        • Typing is no substitute for thinking.
        • Thanked: 1140
          • Yes
          • Yes
          • BC-Programming.com
        • Certifications: List
        • Computer: Specs
        • Experience: Beginner
        • OS: Windows 11
        Re: "other" shortcuts In "my computer" problem
        « Reply #8 on: January 18, 2009, 09:18:46 PM »
        I'm always up to a challenge of this sort. Gives me an excuse to use process explorer to see what Explorer loaded as an extensions... then some "simple" monitoring of the thread stacks when I clicked on my web folders icon... and there it was, the dll file that needed to be unregistered :)

        Elementary, my dear watson...  8)
        I was trying to dereference Null Pointers before it was cool.