gpt4 book ai didi

powershell - 使用 PowerShell 获取 IIS 的具体回收时间

转载 作者:行者123 更新时间:2023-12-03 09:09:23 24 4
gpt4 key购买 nike

我正在尝试使用 PowerShell 查找我的应用程序池在我的服务器上设置回收的具体时间。我知道它设置为每天凌晨 1 点在我正在查看的测试服务器上回收。我正在运行:

Get-ItemProperty -Path IIS:\AppPools\AppPool -Name recycling.periodicRestart.time

显示的值为 00:00:00

出于测试目的,我尝试运行:

Set-ItemProperty -Path IIS:\AppPools\AppPool -Name recycling.periodicRestart.time -Value 3.00:00:00

我检查了一下这是如何改变的。 “特定时间”字段仍显示为凌晨 1:00,但现在“常规时间间隔(以分钟为单位)”设置为 4320 分钟。显然我正在查看错误的值...知道如何查看“特定时间”字段中的值吗?

最佳答案

给你:

Set-ItemProperty -Path IIS:\AppPools\DefaultAppPool -Name recycling.periodicRestart.schedule -Value @{value = '03:00:00'}

获取它:

Get-ItemProperty -Path IIS:\AppPools\DefaultAppPool -Name recycling.periodicRestart.schedule.collection

关于powershell - 使用 PowerShell 获取 IIS 的具体回收时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44119332/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com