在 PowerShell 中使用 Get-ChildItem 时,如何获得询问路径的提示?
我对 PowerShell 相当陌生。 我找到了一些指南并将一个小脚本混在一起,尽管我似乎无法设置提示来询问源/目的地。
脚本如下:
gci -path | Get-Random -Count 4 | mi -Destination C:\Temp
while(1) { sleep -sec 20; .\Power.ps1 }
对于任何响应, 提前致谢!
I'm rather new to PowerShell.
I found a few guides and mashed a little script together, though i do not seem to be able to set a prompt to ask for the source/destination.
The script is as following:
gci -path | Get-Random -Count 4 | mi -Destination C:\Temp
while(1) { sleep -sec 20; .\Power.ps1 }
For any response,
thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用读取主机:
Use
Read-Host
:这是一个例子,FWIW:
Here's an example, FWIW: