Skip to content

Instantly share code, notes, and snippets.

@inpromotion
Last active February 22, 2021 02:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inpromotion/1a0d884e711db3fad8d9cb03509afb9e to your computer and use it in GitHub Desktop.
Save inpromotion/1a0d884e711db3fad8d9cb03509afb9e to your computer and use it in GitHub Desktop.
Полезная Командная строка в Windows (урок от XpucT). Видео: https://youtu.be/A1B7zgR7qF4
Завершение процесса в точное время Windows XP/Vista/7:
at 11:00 Taskkill /f /IM winamp.exe /T
Завершение процесса в точное время Windows 8/8.1/10:
schtasks /create /tn termination /tr "taskkill /f /t /im winamp.exe" /sc once /st 11:00
Выключить комп через час:
shutdown.exe -s -t 3600
Перезагрузить комп сейчас же:
shutdown.exe -r -t 00
Отменить:
shutdown.exe -a
Склеить jpg + rar
copy /b 1.jpg+1.rar IMG_1337.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment