Help Desk Common Issues

Introduction
In this blog, I will explore the reasons behind creating the two accounts: the Helpdesk account and the user account. I will cover topics such as how to unlock an account, change a user's password, reset an account, and what it means when a computer falls off the domain, among others.
CMD Commands for working with a user
- First, check if you can ping any device. I pinged my server using the domain name (davesworld.com) and the IP address 10.1.10.2 with the ping command. It's important to know the IP address of the device you want to ping, as multiple companies can share the same domain name, but each will have a unique IP address.
- To perform a continuous ping, use the command
ping -t
. For example,ping 10.1.10.2 -t
. This is useful when working with a PC that needs to be restarted. The ping will continue while the PC is on, and if the PC restarts, the command prompt will display a "timeout" message. Once the PC is back online, the ping will resume. To stop the continuous ping, pressCtrl + C
.
Help Desk Common Issues
Locked out of an account
Solution
- Open Server Manager and go into Active Directory Users and Computers
- Navigate to the domain controller, right-click on it, and select "Find."
- Enter the user's name in the "Users" text field, then search the "Entire Directory."
- Double-click on their name in the search results.
- Click on the "Account" tab.
- Click "Unlock Account," then select "Apply" and "OK."
Account is disabled
Solution
- Open Server Manager and go into Active Directory Users and Computers
- Navigate to the domain controller, right-click on it, and select "Find."
- Enter the user's name in the "Users" text field, then search in the "Entire Directory."
- Right-click their name in the search results and select "Enable Account."
User needs their password to be reset
Solution
- Open Server Manager and go into Active Directory Users and Computers
- Navigate to the domain controller then right-click on it and click on "Find"
- Enter the user's name in the "Users" text field, then search in the "Entire Directory."
- Right-click their name in the search results and select "Reset Password."
- Assign a new password to the user. If the "User must change password at next logon" option is selected, inform the user that they will need to change their password upon their next login.
User account is expired
A user may encounter this issue if their password has expired, requiring you to extend their account in Active Directory.
Solution
- Open Server Manager and go into Active Directory Users and Computers
- Navigate to the domain controller then right-click on it and click on "Find"
- Enter the user's name in the "Users" text field, then search in the "Entire Directory."
- Double-click on their name in the search results.
- Click on the "Account" tab.
- Click on "Never" under "Account expires".
- Optional step: Verify the user's information in the Command Prompt by using the command
net user [domain name] /domain
.
PC that is connected to the domain is disabled
Solution
- Open Server Manager and go into Active Directory Users and Computers
- Navigate to the "Computer" OU and locate the disabled PC account. If you see an arrow pointing down, it indicates that the account is disabled. In my case, Desktop2 is the disabled computer.
- Right-click on the disabled PC account and click on "Enable Account".
PC has fallen off of the domain
Solution
You need to rejoin the PC to the domain.
- Log in with your local account by typing ".\administrator." If you click "How do I sign in to another domain?" you will see additional options.
- Open File Explorer, right-click on "This PC," and then select "Properties."
- Click "Rename this PC (advanced)"
- Click "Change".
- Click the "Workgroup: " button and fill in the text field.
- Click "OK".
- Click "Ok".
- You will need the account information of the user who has permission to change the domain name or add a PC to a workgroup.
- You will be prompted to restart your PC. Once the restart is complete, return to the "Computer Name/Domain Changes" settings. Then, right-click "This PC" in File Explorer, select Properties, click on "Rename this PC (advanced)," and then choose "Change."
- To add the PC back to the domain, click the "Domain:" button and enter your domain name in the text field.
- You will follow the same process as before with the workgroup. Enter the information for the user who has permission to change the domain name, and once the process is complete, you will be prompted to restart your PC.
- If you check inside the Computers OU, you should see the PC there.
Summary
In this lab, I discussed common Help Desk issues, such as account lockouts, disabled accounts, and PCs falling off the domain. I demonstrated how these issues appear from the user's perspective and provided solutions for each problem. Additionally, I showcased useful CMD commands for working with user accounts, including the `ping` command to check if requests can successfully reach their PC.