我是靠谱客的博主 英俊唇彩,这篇文章主要介绍将powershell脚本嵌入至bat文件中,现在分享给大家,希望可以做个参考。

博文背景

将Powershell脚本嵌入至bat文件中可以有很多意想不到的收获,比如可以通过这个方式绕过授权,或者简化脚本的运行,或者可以便于复杂参数的配置

具体操作

@ECHO off
@setlocal EnableDelayedExpansion

@goto label1
@echo this lines should not be printed
@echo and this whole block (lines 4-8) can actually be removed
@echo I added these just for DoubleWen
@:label1

@set LF=^


@SET command=#
@chcp 65001 > nul
@FOR /F "tokens=*" %%i in ('findstr -bv @ "%~f0"') DO SET command=!command!!LF!%%i
@powershell -noprofile -command !command! & goto:eof


# *** POWERSHELL CODE STARTS HERE *** #
Write-Host '中文测试完美' -Fore red;
Write-Host 'This is PowerShell code being run from inside a batch file!' -Fore red;
$PSVersionTable;
Get-Process -Id $PID | Format-Table;

最后

以上就是英俊唇彩最近收集整理的关于将powershell脚本嵌入至bat文件中的全部内容,更多相关将powershell脚本嵌入至bat文件中内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部