将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