gpt4 book ai didi

windows - 用于更改应用程序池回收时间的 Powershell 脚本

转载 作者:可可西里 更新时间:2023-11-01 10:36:14 26 4
gpt4 key购买 nike

我找到了我认为需要使用的代码,但问题是它无法正常工作。

Import-Module WebAdministration
$appPools = Get-childItem 'IIS:\AppPools\App Pool'
Set-ItemProperty -Path $appPools -Name recycling.periodicRestart.time -Value 1.00:00:00

但是我收到了这个错误

Set-ItemProperty : Cannot find path 'C:\Windows\SysWOW64\WindowsPowerShell\v1.0\Modules\WebAdministration\Microsoft.IIs.PowerShell.Framework.NodeCollection' because it does not exist.
At line:3 char:1
+ Set-ItemProperty -Path $appPools -Name recycling.periodicRestart.time -Value 1.0 ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Windows\SysW....NodeCollection:String) [Set-ItemProperty], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetItemPropertyCommand

我知道这不是路径问题。这确实有效。

set-itemproperty -path 'D:\test\TestPS\New Text.txt' -name IsReadOnly -value $true

任何帮助都会很棒...

最佳答案

路径问题。

Get-ChildItem 'IIS:\AppPools\App Pool' 返回的对象是一个 NodeCollection 对象,当您运行 Set-ItemProperty -Path $appPools$appPools 扩展为“Microsoft.IIs.PowerShell.Framework.NodeCollection”(这不是有效路径)

更改应用程序池的属性:

Set-ItemProperty -Path 'IIS:\AppPools\App Pool' -Name recycling.periodicRestart.time -Value 1.00:00:00

关于windows - 用于更改应用程序池回收时间的 Powershell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25068442/

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