Skip to main content
mathiasb40321913
New Participant
October 26, 2017
Answered

Adobe Server Setup Tool --incemental issue with IIS (resolved)

  • October 26, 2017
  • 1 reply
  • 2437 views

Just sharing.

I set up an internal update server following the guide Use the Adobe Update Server Setup Tool (AUSST) for IIS on Windows 10.

The first day, I could install and update Adobe application through the apps tab.

I set up a nightly task to update the internal server (AdobeUpdateServerSetupTool.exe --root="..." --incremental)

The next day, I got a 404 error on the apps tab.

It appears that  the Adobe Update Server Tool deleted the "web.config" in the "ACC\services\ffc\icons" folder.

As a workaround, I put all the directives in web.config at the root level with "location" tags.

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

    <system.webServer>

        <staticContent>

            <mimeMap fileExtension=".dmg" mimeType="file/download" />

            <mimeMap fileExtension=".sig" mimeType="application/octet-stream" />

        </staticContent>

    </system.webServer>

    <location path="ACC/services/ffc/icons">

        <system.webServer>

            <staticContent>

                <mimeMap fileExtension="." mimeType="text/xml" />

            </staticContent>

        </system.webServer>

    </location>

    <location path="ACC/services/ffc/validation">

        <system.webServer>

            <staticContent>

                <mimeMap fileExtension="." mimeType="text/xml" />

            </staticContent>

        </system.webServer>

    </location>

</configuration>

Hope this will help!

    Correct answer rpandita

    Re,

    rpandita​ : we have made an incremental sync, not an fresh sync. And whenever, we've lost our web.config file.

    And when it was deleted, how can we recreate it? For us, we have restore file from previous backup.

    Thanks for informations.


    Hi again,

    You can simply download it and place it in the mentioned locations use this KB for complete details. - Use the Adobe Update Server Setup Tool (AUSST)

    ~Rohit

    1 reply

    Chre
    Inspiring
    November 9, 2017

    Hi all,

    mathiasb40321913​ Very good catch! Thanks for sharing, that's solve our same issue.

    Thanks again,

    Christian.

    rpandita
    Community Manager
    Community Manager
    November 10, 2017

    Hi mathiasb40321913​ and Chre ,

    Whenever you perform a fresh sync, web.config gets deleted, because fresh sync deletes everything from the synced folders on the server and creates them again, Which is precisely why we recommend incremental sync and not fresh each time

    ~Rohit

    Chre
    Inspiring
    November 10, 2017

    Re,

    rpandita​ : we have made an incremental sync, not an fresh sync. And whenever, we've lost our web.config file.

    And when it was deleted, how can we recreate it? For us, we have restore file from previous backup.

    Thanks for informations.