Visual Studio 2017 HRESULT: 0x80070005 / E_ACCESSDENIED on project creation

前端 未结 6 815
清歌不尽
清歌不尽 2021-02-06 22:28

I\'m running Visual Studio 2017, version 15.0.0+26228.9

When I\'m trying to create a new project via File > New > Project... in Visual Studio 2017, I\'

相关标签:
6条回答
  • 2021-02-06 23:06

    Ok, I fixed it. Long story short, the reason for the problem was an incomplete and/or corrupted setup.

    But it was a rather bumpy road to the solution, including several un-installations and re-installations until I eventually figured out why the setup was indeed faulty.

    Sometimes I got an exception during the installation, other times it finished just fine, but the HRESULT-error persisted when I tried to create a new project.

    I my special case, this was caused by the corporate firewall, that blocked some of the setup packets from being downloaded by the web installer. I solved the issue by connecting to an open WiFi, that's not filtered by the firewall.

    As I'm working with a standard user, UAC kicks in when I start any installation routine. When I first started the setup via UAC and connected to the free WiFi, it wasn't able to find the packet servers. It took me a minute to realize that the admin user I used for UAC had his own internet proxy settings, that wouldn't work with the open WiFi.

    After I logged on as administrator, disabled the proxy and logged on as my main user again, I ran the setup again - and it failed again with a bunch of "incomplete workload" messages. As frustrated as I was at this point, I simply ran it again via the "Change" button without even closing the webinstaller and this time it finally completed without any errors!

    After this, I could start VS just normally and creation of a new project was possible.

    So, if you experiencing any troubles like this, I would strongly recommend to run a "Repair" or "Change" installation just over your existing one but try to avoid any firewalls between you and the internet.

    0 讨论(0)
  • 2021-02-06 23:08

    The below solution worked for me

    • Make sure all the instances of Visual studio are closed.
    • Go to %LocalAppData%\Microsoft\VisualStudio\15.0_****
    • Delete the file privateregistry.bin
    0 讨论(0)
  • 2021-02-06 23:10

    1/ open control panel -> program and future - > IIS Express -> select Repair

    2/ Refresh some time -> open Visual Studio

    This 's about IIS Express in your computer . you only need to repair it in control panel is ok .

    I tried and success.

    0 讨论(0)
  • 2021-02-06 23:13

    I had the same error. I solved it by following the procedure :

    • Shutdown all instances of Visual Studio
    • Delete %LocalAppData%\Microsoft\VisualStudio\15.0_f4938f75\privateregistry.bin file (the ID after 15.0_ may be different per machines)
    • Start VS as normal user

    all credit for this should go to https://developercommunity.visualstudio.com/content/problem/31188/access-denied-error-1.html

    0 讨论(0)
  • 2021-02-06 23:18

    My solution,

    The Clang-format caused this. just disable clang-format:

    Options->Text Editor->C/C++->Formatting->General->Eable ClangFormat Support

    0 讨论(0)
  • 2021-02-06 23:20

    I tried changing the version of .Net Framework from 4.0 to 3.5 while creating the project. This solved my error. enter image description here

    Changing version of Net Framework

    0 讨论(0)
提交回复
热议问题