[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
☛☛☛☛
replace %idx% to %%idx%%
#&cls&@powershell "Invoke-Expression ([Io.File]::ReadAllText('%~0',[Text.Encoding]::UTF8))" &pause&exit

TOP

Escape Characters
  1. Escape Characters
  2. Character to be escaped Escape Sequence Remark
  3. % %% May not always be required in doublequoted strings, just try
  4. ^ ^^ May not always be required in doublequoted strings, but it won't hurt
  5. & ^&
  6. < ^<
  7. > ^>
  8. | ^|
  9. ' ^' Required only in the FOR /F "subject" (i.e. between the parenthesis), unless backq is used
  10. ` ^` Required only in the FOR /F "subject" (i.e. between the parenthesis), if backq is used
  11. , ^, Required only in the FOR /F "subject" (i.e. between the parenthesis), even in doublequoted strings
  12. ; ^;
  13. = ^=
  14. ( ^(
  15. ) ^)
  16. ! ^^! Required only when delayed variable expansion is active
  17. " "" Required only inside the search pattern of FIND
  18. \ \\ Required only inside the regex pattern of FINDSTR
  19. [ \[
  20. ] \]
  21. " \"
  22. . \.
  23. * \*
  24. ? \?
复制代码
#&cls&@powershell "Invoke-Expression ([Io.File]::ReadAllText('%~0',[Text.Encoding]::UTF8))" &pause&exit

TOP

返回列表