Posted On March 31, 2019

Re-register PolicyAgent ipsecsvc.dll

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Re-register PolicyAgent ipsecsvc.dll
  1. Click the Start button.
  2. Type “command” in the search box… DO NOT hit ENTER yet!
  3. While holding CTRL-Shift on your keyboard, hit ENTER.
  4. You will be prompted with a permission dialog box.
  5. Click Yes.
  6. Type the following command: regsvr32 /u ipsecsvc.dll.
  7. Hit ENTER. This will UN-REGISTER your file.
  8. Type the following command: regsvr32 /i ipsecsvc.dll.
  9. Hit ENTER. This will RE-REGISTER your file.
  10. Close the command prompt window.
  11. Re-start the program associated with ipsecsvc.dll error.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

CA eTRust Threat Management

Install the Server Control to download updates and push the updates out to all installed…

PowerShell: Remediate Microsoft Windows Unquoted Service Path Enumeration

Description The remote Windows host has at least one service installed that uses an unquoted…

PowerShell: Uninstall Program Using Its Name

# uninstallProgramUsingId.ps1 $appName='Virtual Machine Manager Agent' $uninstallStringRegPaths='HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall','HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall' $uninstallStrings=Get-ChildItem -Path $uninstallStringRegPaths $uninstallString=($uninstallStrings|Get-ItemProperty|Where-Object {$_.DisplayName -match $appName}).UninstallString if($uninstallString.count…