- 帖子
- 6
- 积分
- 19
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2014-11-27
|
[其他] 请教windows 2012下powershell 的批处理怎么写
比如
$a=tasklist | findstr /I /M "explorer.exe"
$b=$a -like "explorer.exe*"
if ($b -eq "True")
{date >d:\a.txt}
else
{echo erro >>d:\a.txt}
上面的命令,手动贴在powershell 是可以执行的。
但写在bat里就不行了。bat要怎么写?
环境 windows 2012 windows powershell |
|