执行文件夹中的脚本
我想执行特定目录内的所有脚本(.ps1
文件)。
我的脚本如下:
$fileEntries = [IO.Directory]::GetFiles("c:\scripts");
foreach($fileName in $fileEntries)
{
$fileName
}
循环体必须更改。我应该改变什么来执行脚本?
谢谢
I want to execute all of the scripts (.ps1
files) inside a specific directory.
My script is as follows:
$fileEntries = [IO.Directory]::GetFiles("c:\scripts");
foreach($fileName in $fileEntries)
{
$fileName
}
The body of the loop would have to change. What should I change it to execute the scripts?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用调用运算符 (&) 执行脚本:
Use the call operator (&) to execute the scripts: