Solution 1
I was able to solve this problem in the following way
- Go to IIS
- Right click on the website that you are publishing to and select Edit Permissions
- Click the Security tab.
- Click on Edit button
- A Message box will appear which tell that the Permission was not correctly ordered.
- Click Reorder on that message box.

Solution 2
Open the Command prompt (CMD) and execute the following two statements
icacls.exe C:\inetpub\wwwroot /verify /T /C /L /Q
icacls.exe C:\inetpub\wwwroot /reset /T /C /L /Q
note : Maybe you will want to open the CMD with Administrator privilege (Maybe I am not sure)
Cheers