Guest User

Untitled

a guest
Oct 23rd, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. 0 = Черный 8 = Серый
  2. 1 = Синий 9 = Светло-синий
  3. 2 = Зеленый A = Светло-зеленый
  4. 3 = Голубой B = Светло-голубой
  5. 4 = Красный C = Светло-красный
  6. 5 = Лиловый D = Светло-лиловый
  7. 6 = Желтый E = Светло-желтый
  8. 7 = Белый F = Ярко-белый
  9.  
  10. color 0a
  11.  
  12. @echo off
  13. call :colored "Print me in red!" Red
  14. call :colored "Print me in blue!" Blue
  15.  
  16. pause >nul
  17. exit
  18.  
  19. :colored
  20. %Windir%System32WindowsPowerShellv1.0Powershell.exe write-host -foregroundcolor %2 %1
Add Comment
Please, Sign In to add comment