Hi,
When syncing two iis servers, sync works fine, except few app pools, because they have windows user identity. In second server user name is displayed corectly, but then i tested connection i got error: Logon failure: unknown user name or bad password. (Exception from HRESULT: 0x8007052E)
After review of applicationhost.config file i noticed that user password dis not sync.
In web server1 applicationhost.config:
<processModel identityType="SpecificUser" userName="Domain\user" password="[enc:IISWASOnlyAesProvider:hashedpassword:enc]" />
In web server2 applicationhost.config:
<processModel identityType="SpecificUser" userName="Domain\user" />
So i got unknown user or password error, because where is no password in web server2. So how can i sync this config with password with msdeploy?