脚本 – 在powerhell中自动确认删除

前端之家收集整理的这篇文章主要介绍了脚本 – 在powerhell中自动确认删除前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在运行以下命令: @H_301_1@get-childitem C:\temp\ -exclude *.svn-base,".svn" -recurse | foreach ($_) {remove-item $_.fullname}

哪些提示我非常频繁地这样:

@H_301_1@Confirm The item at C:\temp\f\a\d has children and the Recurse parameter was not specified. If you continue,all children will be removed with the item. Are you sure you want to continue? [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"):

如何自动设置为“A”?

尝试使用Remove-Item上的-Force参数。
原文链接:https://www.f2er.com/windows/372491.html

猜你在找的Windows相关文章