在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 脚本中设置环境变量?
如何将 .bat 文件中的变量导入 PowerShell 脚本?