Я пытаюсь обновить значения кэша в IIS, используя приведенный ниже скрипт powershell, но не могу помочь получить точный вывод. может кто-нибудь помочь мне исправить это.
Import-Module WebAdministration
Set-WebConfigurationProperty -filter "/system.webServer/staticContent/clientCache" -name cacheControlMode -value "UseExpires"
Set-WebConfigurationProperty -filter "/system.webServer/staticContent/clientCache" -name cacheControlMaxAge -value "02:00:00"
Set-WebConfigurationProperty -filter "/system.webServer/staticContent/clientCache" -name httpExpires -value "Tue, 20 Feb 2020 00:00:00 GMT"