1

I just can't for the life of me remember. We were setting up IPSEC for a VPN along time ago and added IPSEC that has always caused 1091 1085 errors. We are not using it so I would like to remove it but cant find where.

raven
  • 18,004
  • 16
  • 81
  • 112
Bernesto
  • 1,368
  • 17
  • 19
  • 2
    Welcome to Stack Overflow. This question is probably better suited for http://serverfault.com so I have voted to automatically move it there. Once it gets 5 votes it will move automatically. – Greg Hewgill Sep 03 '09 at 08:07
  • @raven - leave the tags for belongs-on-... they will be removed on the system. – Daniel A. White Dec 09 '09 at 16:59

1 Answers1

2

I don't know if this applies to a DC, but try this.

Snapin:

1) Log into the server
2) Start > Run prompt
3) secpol.msc
4) Go to the security policies on the server
5) Right-click the policy, click unassign

Command-line:

cmd /k netsh ipsec static show policy all  

This will show if a policy is active or not

cmd /c netsh ipsec static delete all  

This will remove everything from the policy store

asteroid
  • 755
  • 3
  • 9
  • 20