IIS回收Powershell部署;代码不更改设置

时间:2019-05-07 00:44:15

标签: powershell iis

所以我想知道发生了什么事。该代码没有报告任何错误,所有迹象都表明成功,但是“虚拟内存限制”似乎没有改变,并且

Recycling.periodicRestart.Memory的“ Get-itemProperty”似乎也没有改变它的值。

我正在域管理员上执行此操作。使用相同的脚本,可以毫无问题地更改cycling.periodicRestart.schedule.collection。

无论如何,这是脚本,您看到任何原因为何不起作用?

    $Cred = Get-Credential -UserName DOMAIN\admin -Message 'Enter Password'
$servers = @("WEB-SERVER-1","WEB-SERVER-2","WEB-SERVER-3")
foreach ($server in $servers) {
    write-host $server
    Invoke-Command -ComputerName $server -Credential $cred {
    import-module WebAdministration
    Set-ItemProperty IIS:\AppPools\* -Name Recycling.periodicRestart.Memory -Value 0
    Get-ItemProperty -Path IIS:\AppPools\* -name Recycling.periodicRestart.Memory | fl value
    }
}

这是WORKS用来设置PeriodicRestart.Schedule.Collection的值的脚本

        $Cred = Get-Credential -UserName DOMAIN\admin -Message 'Enter Password'
    $servers = @("WEB-SERVER-1","WEB-SERVER-2","WEB-SERVER-3")
    foreach ($server in $servers) {
        write-host $server
        Invoke-Command -ComputerName $server -Credential $cred {
        import-module WebAdministration
    Set-ItemProperty IIS:\Sites\* -name recycling.periodicRestart.schedule.collection -value @{"01:00:00","12:00:00"}
    Get-ItemProperty -Path IIS:\AppPools\* -name recycling.periodicRestart.schedule.collection | fl value
    }
}

1 个答案:

答案 0 :(得分:0)

Yo可以根据虚拟内存限制使用以下命令来回收应用程序:

PS C:\windows\system32>  import-module WebAdministration

PS C:\windows\system32> Set-ItemProperty IIS:\AppPools\test -Name Recycling.periodicRestart.memory -Value 11

PS C:\windows\system32> Set-ItemProperty IIS:\AppPools\* -Name Recycling.periodicRestart.memory -Value 11

enter image description here

关于, 贾帕(Jalpa)