IIS 8.5: Virtual Account for App Pool (IIS AppPool\{Application Pool Name} is not available

前端 未结 3 1629
情话喂你
情话喂你 2021-02-20 02:42

I am running IIS 8.5 on a Windows 2012 R2 Core box. I created a new application pool called \"MyNewAppPool\". I have a website instance, called \"MyNewWebsite.com\" running in

3条回答
  •  孤街浪徒
    2021-02-20 03:13

    You won't ever find the synthesised application pool identity in the permissions search dialogue. Just type in the name of the pool identity like this:

    Via GUI:

    enter image description here

    The click the Check Names button:

    enter image description here

    Via Command Line:

    Alternatively you can use ICACLS from an administrator command line/Powershell:

    icacls c:\wwwroot\mysite /grant "IIS AppPool\MyNewAppPool":(CI)(OI)(M)
    

提交回复
热议问题