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

PowerShell: Hyper-V Servers Capacity Report

Current Version: # HyperVCapacityReport.ps1 # Version 0.0.2 # Report parameters $workingDirectory='C:\scripts\googleSheets' $selectFields='node,model,os,cores,cpuUtilizationPercent,ramGb,ramUsedPercent' $domainObjects=@( @{domain='intranet.kimconnect.com';dc='lax-dc02.intranet.kimconnect.com';username='intranet\clusterReport';password=$env:clusterReportPass} @{domain='intranet.dragoncoin.com';dc='lax-dc02.intranet.dragoncoin.com';username='intranet\clusterReport';password=$env:clusterReportPass}…

Deploy MSI Using Group Policy

0. If the deployment package is in an .EXE format, it's recommended that such file…

Add a Domain Group to Local Administrators Group

$checkGroup="Administrators" $addMember="KIMCONNECT\Desktop Admins" # Dynamic Credential $who = whoami if ($who.substring($who.length-2, 2) -eq "-admin"){$username=$who;} else…