Board logo

标题: [技术讨论] powershell 脚本 改成批处理,哪个方式比较好? [打印本页]

作者: newswan    时间: 2021-6-15 21:41     标题: powershell 脚本 改成批处理,哪个方式比较好?

  1. @powershell -c "Get-Content '%~0' | Select-Object -Skip 1 | Out-String | Invoke-Expression" & pause & exit
复制代码
  1. @findstr /v "^@f.*&" "%~f0" | powershell -& goto:eof
复制代码

作者: went    时间: 2021-6-15 22:54

cmd的管道容易炸
  1. @findstr /v "^@f.*&" "%~f0" | powershell -& pause&exit
  2. $s=@'
  3. 1
  4. 2
  5. 3
  6. 4
  7. '@
  8. Write-Host $s
  9. Get-Date
复制代码

作者: yhcfsr    时间: 2021-6-16 11:54

下面三个语句,选一个放在PS1脚本首行,对原脚本不会有影响
后缀改为BAT,则可将PS1无缝转换为BAT
  1. #&cls&@Powershell "& {[ScriptBlock]::Create("'#' + (gc '%~f0' -raw)").Invoke()}" & pause & exit
  2. #&cls&@Powershell "& {[ScriptBlock]::Create("'#' + ([io.file]::ReadAllText('%~f0',[text.encoding]::Default))").Invoke()}" & pause & exit
  3. #&cls&@powershell -c "Get-Content '%~0' | Select-Object -Skip 1 | Out-String | Invoke-Expression" & pause&exit
复制代码

作者: newswan    时间: 2021-6-16 12:48

谢谢。。。。。。。。。。。。。。。。




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2