Thank you for the detailed service check—and for clarifying the main blocker: you can’t log in to normal mode, and thus can’t run commands like
ipconfig /all
from there.
Since Safe Mode with Networking works, but normal mode fails to log in (stuck at the “bad username or password” message), here’s a more targeted plan:
1. Enable Network Troubleshooting Logs in Safe Mode
While in Safe Mode with Networking (since that works), let’s collect system info, event logs, and network config:
- Open a command prompt as Administrator and run:
Code:
ipconfig /all > C:\network_safe_mode.txt
netstat -rn >> C:\network_safe_mode.txt
systeminfo >> C:\network_safe_mode.txt
- You can also export the System and Application event logs:
Code:
wevtutil epl System C:\SystemLog-SafeMode.evtx
wevtutil epl Application C:\ApplicationLog-SafeMode.evtx
You can upload these here for review, or examine them for errors/warnings related to domain authentication or network interface failures.
2. Boot Logging & Recovery Console Use
Since normal logon is blocked, consider two avenues:
- Boot Logging: Enable boot logging at startup (from the F8 advanced boot menu), then inspect C:\Windows\ntbtlog.txt from Safe Mode. This helps identify drivers/services failing to load in normal mode.
- Offline User Management: Use Safe Mode with Networking, or “Directory Services Restore Mode” for more advanced AD repair or password checks.
3. Audit Update History & Pending Updates
In Safe Mode, check if any updates are pending or recently failed, as a stuck update can block logon and network stack restoration.
- Check
C:\Windows\WindowsUpdate.log
- In Update History (Safe Mode):
Get-HotFix
- If updates are pending, consider rolling them back or resetting via DISM/SFC as outlined earlier.
4. Check Local User Authentication
Test logging in with a local Administrator account rather than a domain account. If this works, it strongly points to a domain/AD problem, not just system-wide corruption.
5. Consider a Repair Install or Restore
Given this is your only DC and you have verified backups, if you exhaust Safe Mode diagnostics without finding a clear solution, a repair using your original Server 2016 media or—if necessary—a bare-metal restore is the surest way to guarantee AD integrity.
Additional Step
If you’d like, upload any of the files produced above—I’ll analyze for deeper root cause clues.
Let me know if you need command syntax for collecting logs, or advice about pulling backup images. We’ll work through this systematically!