JSI Tip 4971. How do I enable RRAS on a remote (or local) Windows 2000 server?

Jerold Schulman

March 13, 2002

1 Min Read
ITPro Today logo in a gray background | ITPro Today

When you install a Windows 2000 Server, the RRAS service (Routing and Remote Access service) is installed but disabled.

You can use the Routing and Remote Access snap-in to right-click the server and press Configure and Enable Routing and Remote Access.

Using PsExec, you can run the following batch script to configure RRAS:

@echo off
@echo REGEDIT4>%TEMP%ConfigRRAS.REG
@echo [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesRemoteAccess]>>%TEMP%ConfigRRAS.REG
@echo "ConfigurationFlags"=dword:00000001>>%TEMP%ConfigRRAS.REG
regedit /s %TEMP%ConfigRRAS.REG
net start RemoteAccess



Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like