Advertisement
Zekrommaster110

[BATCH] Adobe Media Encoder Auto Shutdown

May 25th, 2015
590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.52 KB | None | 0 0
  1. @echo off
  2. title AME Auto Shutdown
  3.  
  4. :A
  5.  
  6. if exist sd.* goto TRUE
  7.  
  8. echo.
  9. echo Datum: %date%
  10. echo Zeit: %time%
  11. echo.
  12. echo Zustand: Rendert.
  13. echo.
  14.  
  15. ping /n 2 localhost >nul
  16.  
  17. cls
  18.  
  19. goto :A
  20.  
  21.  
  22.  
  23.  
  24.  
  25.     :TRUE
  26.     echo.
  27.     color 0c
  28.     echo Datum: %date%
  29.     echo Zeit: %time%
  30.     echo.
  31.    
  32.         echo Der PC wurde erfolgreich am %date% um %time% Uhr heruntergefahren! >> log.txt
  33.        
  34.     echo Zustand: RENDERN BEENDET!
  35.     echo.
  36.     echo PC wird in 60 Sekunden heruntergefahren!
  37.     echo.
  38.        
  39.         shutdown /f /s /t 60
  40.        
  41.         pause >nul
  42.    
  43.    
  44.     cls
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement