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

  • Home
  • SEARCH
  • 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 4381028
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T12:36:00+00:00 2026-05-21T12:36:00+00:00

I have always thought that replacing the normal windows desktop icons with an active

  • 0

I have always thought that replacing the normal windows desktop icons with an “active desktop” html page which can launch my programs, as well as open directories and files through links. This would be a really cool way to customize one’s desktop.

Using the “file://” protocal was my first approach but this does not work correctly. In another SO Post I found this link but its a little over my head. Is this the correct approach?

I can’t imagine that I am the first one to consider this; it seems like a good idea (no?). What do you all think?

  • 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-21T12:36:00+00:00Added an answer on May 21, 2026 at 12:36 pm

    I like the idea of active desktop for a desktop customization. What you can do is register your own schema

    Add a Registry entry.
    Here is the first example I worked with.

    Add This to a .reg file and Import into the registry.
    Change “myschema” and the location of the executable to match your own needs

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\myschema]
    @="URL:My Schema Protocol"
    "URL Protocol"=""
    
    [HKEY_CLASSES_ROOT\myschema\DefaultIcon]
    @="C:\\Program Files\\MySchemaProgram\\MySchema.exe,1"
    
    [HKEY_CLASSES_ROOT\myschema\shell]
    
    [HKEY_CLASSES_ROOT\myschema\shell\open]
    
    [HKEY_CLASSES_ROOT\myschema\shell\open\command]
    @="\"C:\\Program Files\\MySchemaProgram\\MySchema.exe\" \"%1\""
    

    Now if you create a hyperlink

    <a href="myschema://Whatever+i+want" >Click Here</a> 
    

    Your computer will open your MySchema Application with the href in the command line.

    just be mindful because Ervironment.CommandLine will be UTF Decoded therefore

    //This Link
    <a href="myschema://Something%20Here">Click Here</a>
    
    //Will Result in This Command Line Execution.
    "C:\Program Files\MySchemaProgram\MySchema.exe" myschema://Something Here
    

    You can also use this schema in the ShellExecute commands as well as the Run Dialog.

    Here is the example program I used to get started with. You should be able to get the idea pretty quick

    using System;
    using System.Collections.Generic;
    using System.Text;
    
    namespace Alert
    {
      class Program
      {
        static string ProcessInput(string s)
        {
           // TODO Verify and validate the input 
           // string as appropriate for your application.
           return s;
        }
    
        static void Main(string[] args)
        {
          Console.WriteLine("Alert.exe invoked with the following parameters.\r\n");
          Console.WriteLine("Raw command-line: \n\t" + Environment.CommandLine);
    
          Console.WriteLine("\n\nArguments:\n");
          foreach (string s in args)
          {
            Console.WriteLine("\t" + ProcessInput(s));
          }
          Console.WriteLine("\nPress any key to continue...");
          Console.ReadKey();
        }
      }
    }
    

    best of luck with your application. I would be eager to see it when it is complete.

    EDIT: I am adding some matching strings for this as it is a cool feature and more people may want to use this technique for something they wanted to do.. These are the things i looked for it under, (unsuccessfully) Let me know if anyone thinks of any more.

    custom url/uri handler
    custom schema program
    registry web address program
    handle web link
    launch app from url

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

Sidebar

Related Questions

I have always thought that the .equals() method in java should be overridden to
I have always thought that the terms internationalization and localization (and their funny abbreviations
I always thought that replacing the <center> tag with <div style=text-align:center;> will get me
I have an odd question that I have always thought about, but could never
I have always thought that the warp scheduler will execute one warp at a
I have a ccarray and I thought that I always had to know the
We have always had languages that were preferable to be used in a particular
I have always initialized my strings to NULL, with the thinking that NULL means
I have a login.jsp page which contains a login form. Once logged in the
This is not a is math required for programming? question. I always thought that

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.