Access Control Service The data protection operation was unsuccessful Error

来源:互联网 发布:cam360软件 编辑:程序博客网 时间:2024/05/22 06:36

http://social.technet.microsoft.com/wiki/contents/articles/1898.aspx#Q5

http://stackoverflow.com/questions/5979980/application-pool-shutting-down

Q: I am receiving exception with the following message:

The data protection operation was unsuccessful. This may have been caused by not having the user profile loaded for the current thread's user context, which may be the case when the thread is impersonating.

A: Configure IIS to load user profile. To configure IIS to load user profile follow these steps:

  • Open IIS Manager.
  • Find out what AppPool your application is using by selecting your App, right-click on it, and Select Manage Application -> Advanced Settings.
  • After that, on the top left hand side, select Applications Pools, and go ahead and select the App Pool used by your app.
  • Right-click on the App Pool, and select Advanced Settings, Go to the Process Model Section and Find the "Load User Profile" Option and set it to true.

After this change, I solved the error above, but I encountered another error which is Application Pool shut down automatically. And I checked the error log, here is the error message:
Windows cannot log you on because your profile cannot be loaded. Check that you are connected to the network, and that your network is functioning correctly. 
 DETAIL - Only part of a ReadProcessMemory or WriteProcessMemory request was completed.

Windows cannot copy file C:\Users\Default\AppData\Local\Microsoft\Web Platform Installer\installers\VC9Redist\56719288AB6514C07AC2088119D8A87056EEB94A\vcredist_x86.exe to location C:\Users\TEMP.IIS APPPOOL\AppData\Local\Microsoft\Web Platform Installer\installers\VC9Redist\56719288AB6514C07AC2088119D8A87056EEB94A\vcredist_x86.exe. This error may be caused by network problems or insufficient security rights. 

Resolution:

Delete  C:\Users\Default\AppData\Local\Microsoft\Web Platform Installer file, the problem solved

原创粉丝点击