Display System Details: Computer Name, Domain, and Username in C#

In this exercise, you will create a C# program that displays specific system details such as the computer name, domain name, and the username of the user who is currently logged in. This program will utilize .NET's Environment and System.Security.Principal classes to retrieve and display this information.



Group

Using Additional Libraries in C#

Objective

1. Use Environment.MachineName to get the computer's name.
2. Use Environment.UserDomainName to get the domain name.
3. Use Environment.UserName to get the username of the currently logged-in user.
4. Display these details in a user-friendly format on the console.

Create a program that shows specific system details, including the computer name, domain name, and the username of the user who is currently logged in.

Example C# Exercise

 Copy C# Code
using System;  // Importing the System namespace to access Environment properties

class Program
{
    static void Main()
    {
        // Getting the machine name (computer's name)
        string computerName = Environment.MachineName;

        // Getting the domain name the machine is part of
        string domainName = Environment.UserDomainName;

        // Getting the username of the current logged-in user
        string userName = Environment.UserName;

        // Display the information to the user
        Console.WriteLine("System Details:");
        Console.WriteLine($"Computer Name: {computerName}");
        Console.WriteLine($"Domain Name: {domainName}");
        Console.WriteLine($"Logged-in User: {userName}");
    }
}

 Output

System Details:
Computer Name: MY-COMPUTER
Domain Name: MY-DOMAIN
Logged-in User: johndoe

Share this C# Exercise

More C# Practice Exercises of Using Additional Libraries in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Sitemap Generator from URL List in C#

    In this exercise, you will create a C# program that generates a sitemap using a text file containing URLs. The program should take three parameters: the name of the text file conta...

  • File Explorer with Navigation in C#

    In this exercise, you will create a C# program that displays the files and folders in the current directory. The user can navigate through the list by moving up and down. When the ...

  • Search Files by Name in Folder and Subfolders in C#

    In this exercise, you will create a program that stores the names of files located in a specific folder and its subfolders. The program will then prompt the user to enter a search ...

  • Display Current Date and Time in C#

    In this exercise, you will create a program that displays the current date and time in a specific format. The format should be as follows: "Today is 6 of February of 2015. It's 03:...

  • Display Files in the Current Folder in C#

    In this exercise, you will create a C# program that retrieves and displays all files in the current folder. You will use the System.IO namespace, particularly the Directory.GetFile...

  • Display Executable Files in Current Folder in C#

    In this exercise, you will create a C# program that retrieves and displays the names of all executable files in the current folder. The program will search for files with specific ...