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 7623857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:48:43+00:00 2026-05-31T04:48:43+00:00

I have tried to fix a method that checks if the user has Skype

  • 0

I have tried to fix a method that checks if the user has Skype installed on his computer. This I fixed / come up with:

  1. I have Skype installed on my computer
  2. I’ve fixed a method that loops through all of my installed programs
  3. My method finds my installed programs BUT it can not find skype although it is installed. But my method finds other programs that are in the same directory.

Does anyone have any ideas on how to check if Skype is installed on the computer?

The method I used are simillrar to this one:

Method to loop through all installed programs

  • 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-31T04:48:46+00:00Added an answer on May 31, 2026 at 4:48 am

    Just use the registry:

    using Microsoft.Win32;
    
        //Function uses Microsoft.Win32 to check registry value of
        //HKEY_CURRENT_USERSoftwareSkypePhoneSkypePath and returns false if
        //the key is null
        private bool isSkypeUser()
        {
            RegistryKey skype = Registry.CurrentUser.OpenSubKey(@"SoftwareSkypePhone");
    
            if (skype != null && skype.GetValue("SkypePath") != null)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    

    http://brcline.com/blog/?tag=skype

    EDIT:

    A dirty workaround is to loop through the StartMenu folders looking for the Skype shortcut or folder. You must use the following SpecialFolder enumeration:

    var startMenuPath = Environment.GetFolderPath(Environment.SpecialFolder.CommonPrograms)
    

    Hope it helps!

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

Sidebar

Related Questions

Have tried to find solutions for this and can't really come up with anything.
I have tried numerous ways to fix this error, but they haven't fix my
I have tried this but it does not work (even if I specify .wav
I am wring a button control like below. i have got a method that
I have a dialog that containers a DataGridView, this dialog is opened from a
I have a method that zips up one or more files using DotNetZip, and
This is a problem iv encountered and tried most of the solutions that i
I'm trying to write a method that checks whether a date is valid. It
I have a helper method that serialises an object, which works until you try
I have a UIViewController, which uses a UIScrollView and within that Scrollview it has

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.