gpt4 book ai didi

PowerShell 串联

转载 作者:行者123 更新时间:2023-12-02 07:06:25 29 4
gpt4 key购买 nike

我正在尝试编写一行简单的代码,用于从各种服务器的 C 盘中删除各种用户文件。如何与 PowerShell 连接以获取到服务器的路径?

例如,这就是我想要做的,但 PowerShell 没有将 + 符号识别为连接符号,我认为:

remove-item "\\$server" + '\C$\Documents and Settings\a409126' -force -recurse -whatif

我收到一条错误消息:

Remove-Item : A positional parameter cannot be found that accepts argument '+'.

最佳答案

试试这个:

remove-item ("\\$server"+ '\C$\Documents and Settings\a409126') -force -recurse -whatif

您需要了解更多关于 command mode vs. expression mode 的信息在 PoSH 中有效

关于PowerShell 串联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11298504/

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