Welcome to the MedPro Helpdesk Training
Select any of the IT systems on the left to learn more about common support tasks.
Active Directory (AD)
Active Directory is our on-site “master directory” for managing user accounts, computer access, and security policies. It runs on a local server and keeps track of who can log in and what they can access.
- Log in to the AD Server using your Helpdesk admin account.
- Open Active Directory Users and Computers.
- Find the OU where the user belongs.
- Right-click the OU, select New > User.
- Enter the user’s details, set a temporary password.
- (Optional) Add extra details like Email, Department, or Phone.
- Wait for the user to appear in Azure AD after the next sync.
- Open AD Users and Computers.
- Locate the user.
- Right-click the user > Reset Password.
- Set a new temporary password; check User must change password....
- Notify the user securely.
- Open AD Users and Computers.
- Right-click the user > Properties.
- Under the Account tab, check Unlock account.
- Click OK and have user log in again.
Azure AD (AAD)
Azure AD is the cloud version of Active Directory and is synced with our on-site AD. It manages access to online services like Microsoft 365.
- Log in to the Azure AD Connect Server.
- Open Azure AD Connect and check Sync Status.
- If sync failed, open Synchronization Service Manager, check the Operations tab for errors.
- Duplicate Username/Email: Make user logons unique in AD.
- Missing Info: Ensure fields like Email are filled in AD.
- Sync Not Running: Run a full sync in Azure AD Connect.
Windows 11
- Verify the need for the software.
- Obtain the installer from an approved location.
- Run as administrator, enter Helpdesk creds.
- Follow the wizard and verify installation.
- Right-click desktop > Display settings.
- Adjust resolution, brightness, multiple monitors.
- Right-click speaker icon > Open Sound settings.
- Set Output/Input devices and test.
- Ensure Bluetooth is on, add device, follow prompts.
Wi-Fi: Connect, enter password, test page.
Ethernet: Plug cable, check network icon.
- Settings > Update & Security > Windows Update.
- Check for updates, install, restart if needed.
Microsoft 365
Outlook: Add account, verify send/receive.
Teams: Confirm logins and meeting access.
OneDrive: Check file sync, OneDrive icon active.
SharePoint: Access and share documents via team sites.
- Admin Center > Users > Active Users.
- Select user, assign or remove licenses.
- Save, have user sign out/in to confirm.
- Admin Center > Teams & groups > Active teams & groups.
- Create or edit groups, add/remove members.
- SharePoint site permissions, invite group if needed.
Outlook Crashes: Safe Mode, disable add-ins, repair Office.
Emails Not Sending: Check internet, mailbox size, profile, or use MS SaRA.
Teams Login Fail: Verify license, clear cache, reinstall, check service health.
Audio/Video in Teams: Test devices, disable VPN/firewall, check speeds.
OneDrive Sync: Reset OneDrive, check file names/size, storage limits.
SharePoint Access Denied: Check site permissions, license, or share settings.
RingCentral
- Admin Portal > Users > Add User.
- Enter user info, extension, phone details.
- Save, send invite email.
- Go to Users, select user.
- Under Licenses, select appropriate license, Save.
- Click Add Extension if needed.
- Open user profile, select Roles or Edit for custom permissions.
- Click Save.
- Check device settings in the RC app, correct audio devices, volume.
- Test internet, update drivers, restart devices.
- Close conflicting audio apps, check QoS, try wired instead of Wi-Fi.
Mimecast
- Log in to the Mimecast Admin Console.
- Gateway > Held Emails/Quarantine, search email, select > Release.
- Understand existing policies, gather requirements.
- Contact MSP with details, follow up, test changes.
- Document everything.
OneLogin
- OneLogin Admin > Apps > Add App.
- Configure SSO, map attributes, assign access.
- Save and test.
- Direct user to Azure AD Self-Service.
- If locked out, reset password in Azure portal.
- Check sync status, user logs in with new password.
Salesforce
- Log in to Salesforce, go to Cases.
- Open the case, change Status, Save.
- (Optional) Add notes in Case Comments or Notes.
- Salesforce Setup > Users > Users.
- Select user, click Reset Password.
- Confirm the user receives the reset email.
Command Prompt
-
ipconfig: Displays network configuration details. Use flags like
/all
for full details or/release
and/renew
to manage DHCP assignments. - ping: Tests connectivity to a host by sending ICMP packets. Useful to quickly verify network access.
- tracert: Traces the path packets take to a network destination, which helps pinpoint latency or routing issues.
- nslookup: Resolves domain names to IP addresses (and vice versa). Handy for troubleshooting DNS issues.
- systeminfo: Provides detailed info about the system’s configuration, including OS version and hardware details.
- tasklist: Lists all running processes. Useful for identifying resource hogs or unauthorized apps.
- taskkill: Ends a process by its PID or image name. Combine with tasklist to terminate problematic processes.
- netstat: Displays active TCP connections, ports in use, and network statistics.
-
chkdsk: Scans and repairs disk errors.
chkdsk /f
can fix file system issues on a drive. - sfc /scannow: Scans integrity of protected system files and repairs corrupted files.
- diskpart: Manages disks, partitions, and volumes. Use with caution.
- powercfg: Configures power settings and generates energy reports to troubleshoot power issues.
- shutdown: Shuts down, restarts, or logs off a computer. Useful for remote or scripted operations.
- netsh: A versatile command for viewing/configuring network settings, including firewall and wireless profiles.
- driverquery: Lists all installed drivers and their properties, helpful for diagnosing hardware compatibility issues.
- getmac: Displays the MAC addresses for the network adapters on the system.
PowerShell
Connect-MsolService
Connect-ExchangeOnline
Get-MsolUser -UserPrincipalName user@domain.com
Get-MsolUser
-
Set-MsolUserPassword -UserPrincipalName user@domain.com -NewPassword "NewP@ssw0rd" -ForceChangePassword $true
-
Set-MsolUser -UserPrincipalName user@domain.com -BlockCredential $true
(Disable) -
Set-MsolUser -UserPrincipalName user@domain.com -BlockCredential $false
(Enable)
Get-MsolGroup
-
Get-MsolGroupMember -GroupObjectId (Get-MsolGroup -SearchString "GroupName").ObjectId
-
Add-MsolGroupMember -GroupObjectId (Get-MsolGroup -SearchString "GroupName").ObjectId -GroupMemberType User -GroupMemberObjectId (Get-MsolUser -UserPrincipalName user@domain.com).ObjectId
-
Remove-MsolGroupMember -GroupObjectId (Get-MsolGroup -SearchString "GroupName").ObjectId -GroupMemberObjectId (Get-MsolUser -UserPrincipalName user@domain.com).ObjectId
Get-Mailbox -Identity user@domain.com
Get-MailboxStatistics -Identity user@domain.com | Select DisplayName,TotalItemSize
-
Set-Mailbox -Identity user@domain.com -ForwardingSMTPAddress "anotheruser@domain.com" -DeliverToMailboxAndForward $true
-
Set-Mailbox -Identity user@domain.com -ForwardingSMTPAddress $null
Get-MailboxAutoReplyConfiguration -Identity user@domain.com
-
Set-MailboxAutoReplyConfiguration -Identity user@domain.com -AutoReplyState Enabled -InternalMessage "I am out of office" -ExternalMessage "I am currently unavailable."
Get-Mailbox -RecipientTypeDetails SharedMailbox
-
Add-MailboxPermission -Identity shared@domain.com -User user@domain.com -AccessRights FullAccess -InheritanceType All
-
Remove-MailboxPermission -Identity shared@domain.com -User user@domain.com -AccessRights FullAccess -InheritanceType All
Disconnect-MsolService
Disconnect-ExchangeOnline