Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 537511
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:56:04+00:00 2026-05-13T09:56:04+00:00

I’m going to make a desktop application that will run in the background, meaning

  • 0

I’m going to make a desktop application that will run in the background, meaning no visible window, and I’d like an option called: “Upload Text” to appear when a user right clicks a file.

Can someone point me in the right direction? I also have to make sure that if someone wants to uninstall the program at any point, that the shell modification is also cleanly eliminated.

The app will run Windows XP, Windows Vista and Windows 7. How different are these OS’s in handling my shell dilemma?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:56:05+00:00Added an answer on May 13, 2026 at 9:56 am

    This is a shell extension. You’ve tagged this question with the C# tag; you should know that writing shell extensions in a managed language is strongly discouraged:

    Unfortunately unmanaged C++ is really
    the only way to go here.

    Writing in-process shell extensions
    in managed code is actually a very
    dangerous thing to do because it has
    the effect of injecting your managed
    code (and the .NET Framework) into
    every application on the machine that
    has a file open dialog.

    The problems occur because only one
    version of the .NET Framework can be
    loaded in a process at any given time
    (other shared components such as java
    and msxml have the same property and
    thus the same restriction).

    If you write your shell extension
    using the 2.0 .NET Framework and an
    application built with the 1.1 .NET
    Framework uses a file open dialog,
    your shell extension will fail because
    it can not run on an earlier version.
    Things can get even worse if your
    shell-extension manages to get loaded
    in a process before another
    applications managed code does: your
    extension may force an existing
    application onto a different runtime
    version than the one it was expecting
    and cause it to fail.

    Because of these problems we strongly
    recomend against using any
    single-instance-per-process runtime or
    library (such as the .NET Framework,
    java, or msxml) in an in-process shell
    extension.

    That said, people have done it.

    Here’s a guide to creating shell extensions, using C++.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.