gpt4 book ai didi

powershell - 为什么这个 powershell for 循环在 4 次迭代后停止

转载 作者:行者123 更新时间:2023-12-03 16:48:10 26 4
gpt4 key购买 nike

我知道我必须删除 8 个列表(自定义列表和库)。下面只删除 4,然后我必须再次执行,它删除 2,然后删除 1,然后删除 1。知道为什么吗?

$site = "http://inside.comp.com/sales"
$featureID = "b432665a-07a6-4cc7-a687-3e1e03e92b9f"
$str = "ArcGIS"
Disable-SPFeature $featureID -Url $site -Confirm:$False
start-sleep -seconds 5
$site = get-spsite $site
foreach($SPweb in $site.AllWebs)
{
for($i = 0; $i -lt $SPweb.Lists.Count; $i++)
{
$spList = $SPweb.Lists[$i]
if($SPList.Title.Contains($str))
{
write-host "Deleting " $SPList.Title -foregroundcolor "magenta"
$spList.Delete()
#$SPweb.Update()
}
}
$SPweb.Update()
}

最佳答案

这是因为当您删除列表中的项目 0 时,列表项目 1 变为 0,并且在本次运行中被跳过。然后同样的事情再重复 3 次,其中只有 3 项被删除。

为了从后面修复这个迭代项目:

for($i = $SPweb.Lists.Count - 1; $i -ge 0; $i--)
{
# The rest of the cycle
}

关于powershell - 为什么这个 powershell for 循环在 4 次迭代后停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28886941/

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