在Bat批处理中调用Powershell脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Bat批处理中调用Powershell脚本相关的知识,希望对你有一定的参考价值。

##如何在BAT中调用powershell,把下面代码另存为bat格式
pushd %~dp0
powershell.exe -command ^
  "& {set-executionpolicy Remotesigned -Scope Process; .‘.\ClearIISLogFiles.ps1‘ }"
popd
pause

可访问下面的链接,获取更多的IT资讯:
技术分享图片

以上是关于在Bat批处理中调用Powershell脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何在配置文件中定义的 PowerShell 脚本中设置环境变量?

powershell脚本隐藏退出码

如何将 .bat 文件中的变量导入 PowerShell 脚本?

powershell v2.0 从批处理 cmd 文件传递​​变量计算机名参数

使用Powershell脚本启动的批处理文件设置环境变量

powershell 远程执行bat脚本,去启动一个应用,如何让应用一直运行,powershell能正常退出?