我正在运行以下命令:
get-childitem C:\temp\ -exclude *.svn-base,".svn" -recurse | foreach ($_) {remove-item $_.fullname}
哪些提示我非常频繁地这样:
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