标题: [技术讨论] powershell 脚本 改成批处理,哪个方式比较好? [打印本页]
作者: newswan 时间: 2021-6-15 21:41 标题: powershell 脚本 改成批处理,哪个方式比较好?
- @powershell -c "Get-Content '%~0' | Select-Object -Skip 1 | Out-String | Invoke-Expression" & pause & exit
复制代码
- @findstr /v "^@f.*&" "%~f0" | powershell -& goto:eof
复制代码
作者: went 时间: 2021-6-15 22:54
cmd的管道容易炸- @findstr /v "^@f.*&" "%~f0" | powershell -& pause&exit
- $s=@'
- 1
-
- 2
-
- 3
-
- 4
- '@
- Write-Host $s
- Get-Date
复制代码
作者: yhcfsr 时间: 2021-6-16 11:54
下面三个语句,选一个放在PS1脚本首行,对原脚本不会有影响
后缀改为BAT,则可将PS1无缝转换为BAT- #&cls&@Powershell "& {[ScriptBlock]::Create("'#' + (gc '%~f0' -raw)").Invoke()}" & pause & exit
- #&cls&@Powershell "& {[ScriptBlock]::Create("'#' + ([io.file]::ReadAllText('%~f0',[text.encoding]::Default))").Invoke()}" & pause & exit
- #&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 |