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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:09:02+00:00 2026-06-07T14:09:02+00:00

Our support team has diagnosed some specific areas of a computer’s configuration that may

  • 0

Our support team has diagnosed some specific areas of a computer’s configuration that may cause slowness in our Network-based database application. I have been tasked with creating a tool to test for possible slowing concerns. I am having problems detecting if Linked Layer Topology is enabled in Windows for their active network adapter. I have a method for finding the active (most used) network adapter.

Is there a way to detect Linked Layer Topology and how do I test for it?

  • 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-06-07T14:09:04+00:00Added an answer on June 7, 2026 at 2:09 pm

    Not a pure .Net solution, but seems to work. Function accepts the name of the local area connection and a protocol name. I have a link to a site that has a lot of different protocol driver names, but the ones you want are included in the code.

    This uses nvspbind.exe, which you can get from http://archive.msdn.microsoft.com/nvspbind.

    CODE

    class Program
    {
        static void Main(string[] args)
        {
            //check Link-Layer Topology Discover Mapper I/O Driver
            bool result1 = IsProtocalEnabled("Local Area Connection", "ms_lltdio");
            //check Link-Layer Topology Discovery Responder
            bool result2 = IsProtocalEnabled("Local Area Connection", "ms_rspndr");
        }
    
        private static bool IsProtocalEnabled(string adapter, string protocol)
        {
            var p = new System.Diagnostics.Process();
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.FileName = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "nvspbind.exe");
            p.StartInfo.Arguments = string.Format("/o \"{0}\" {1}", adapter, protocol);
    
            p.Start();
    
            string output = p.StandardOutput.ReadToEnd();
    
            p.WaitForExit();
    
            return output.Contains("enabled");
        }
    }
    

    I got the protocol driver names from here: http://djseppie.wordpress.com/category/windows/scripting/

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

Sidebar

Related Questions

Our team has created a SSIS Package that imports data from an Oracle Source
We unfortunately find ourselves having to support our product in IE 6 because some
I write programs used internally by our company. I've created several support DLLs that
I don't speak Arabic, but I need specific support for Arabic on our web.
The application that I help support has no real business objects to speak of,
My team has been asked to offer AMF output from our web service to
Our team is working on a new application that we started with Rails 3.1
So someone on our team was using TortoiseSVN and made some ten commitments in
We did't have any Test team support for our Product Development. so. we need
This is something that has popped up our organization and I am looking for

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.