Share via

Unable to Start Routing and Remote Access Service on Windows Server 2025

Antonio Rodrigues 45 Reputation points
2025-10-01T11:20:24.6766667+00:00

A Routing and Remote Access Service (RRAS) with NAT and routing features was previously configured on a Hyper-V instance running Windows Server 2025 Standard.

Communication with the server was functioning correctly until a restart of the VPN server was attempted. The service failed to stop, leading to an automatic restart of the server accompanied by a blue screen error code.

After the server rebooted, the VPN service did not start.

What are the suggestions for resolving this issue?

Windows for business | Windows Server | Devices and deployment | System management components

Answer accepted by question author

Harry Phan 21,825 Reputation points Independent Advisor
2025-10-01T11:53:01.09+00:00

Sounds like a stressful situation, I can totally understand, I've been there...The fact that the RRAS service couldn't stop cleanly and led to a crash is a major clue that something became corrupted in its state or a dependent component.Let's work through this methodically. The goal is to first get a clear picture of what happened, then work towards a safe recovery.

Here are the key steps I would recommend:

1. Diagnose the Blue Screen (The Root Cause):

The most critical file is the memory dump. Navigate to C:\Windows and look for a file called MEMORY.DMP (a large file) or smaller files in the C:\Windows\Minidump folder.

Analyzing this dump file will tell us exactly what driver or process caused the crash. You can use the Windows Debugger (WinDbg) tool to open it, or if that's outside your comfort zone, the basic details from the Reliability Monitor (search for "View reliability history" in the Start Menu) can sometimes point to the faulty component.

2. Assess RRAS Configuration Corruption:

The RRAS configuration might be damaged. Let's first try to reset it. Open an Administrative Command Prompt and run:
netsh ras set trace * disabled
This command disables any deep-level tracing that might be interfering. Then, try starting the "Remote Access Management" service again from Services.msc.

3. The Nuclear Option (if all else fails):

If the service still refuses to start, the most reliable path is often to reconfigure RRAS from scratch. The configuration itself is likely the problem.

You can completely remove and reinstall the RRAS role through Server Manager. Don't worry—this doesn't remove the Hyper-V role itself, just the RRAS configuration. You will need to reconfigure your NAT and routing rules, so please ensure you have your previous settings documented.

My strong suggestion is to start with Step 1. Identifying the blue screen cause is crucial; otherwise, the problem might just happen again.

Was this answer helpful?


1 additional answer

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.