[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

回复 1楼 的帖子

帮你改进下;:
  1. echo off&setlocal enabledelayedexpansion&title 批处理模拟Win 2000启动界面
  2. start /min wmplayer.exe http://www.learn-chinese-songs.com/She-Superstar.mp3
  3. chcp 437>nul&&graftabl 936>nul
  4. if not exist CONFIG.NT copy %WinDir%\System32\CONFIG.NT CONFIG.NT
  5. cls
  6. echo DEVICE=%WinDir%\System32\ANSI.SYS /x >%WinDir%\System32\CONFIG.NT
  7. MODE con: COLS=75 LINES=37
  8. for /l %%i in (1,1,11) do echo.
  9. command /cecho 
  10. command /cecho                                 ███ ███
  11. command /cecho                                 ███ ███
  12. command /cecho                                 ███ ███
  13. command /cecho 
  14. command /cecho                                 ███ ███
  15. command /cecho                                 ███ ███
  16. command /cecho                                 ███ ███TM
  17. for /l %%i in (1,1,6) do echo.
  18. command /cecho                     Microsoft@  Windows  Professional
  19. command /cecho                               Windows 2000 正在启动中,请稍候........
  20. command /cecho 
  21. for /l %%i in (1,1,4) do echo.
  22. set /p a=">=============================================================================="<nul
  23. for /l %%i in (1,1,80) do (
  24. set /p aa=<nul
  25. )
  26. for /l %%i in (1,1,80) do (
  27. set /p aa=^><nul
  28. ping/n 0 127.1 >nul
  29. )
  30. pause>nul=del   CONFIG.NT
  31. del   CONFIG.NT
复制代码

TOP

返回列表