23 Aralık 2019 Pazartesi

Windows Batch START komutu - Yeni Bir Process Başlatır

Giriş
Tek başına çalışan bir process başlatır. Açıklaması şöyle
If you type start filename.ext in command prompt, the file is run using explorer's engine, and as such whatever is associated to that file extension will start the file.
Örnek
Bir kısayolu (shortcut) çalıştırmak için şöyle yaparız.
start mmsys.cpl
Örnek
Şöyle yaparız.
start winword
Örnek - pencere ismi
Şöyle yaparız
start "" "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC"

:: # Or more elaborately:
start "Optional Window Title" "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC"
wait seçeneği
Açıklaması şöyle.
start a command in a new window, wait for it to complete, then run another command locally and call a batch file.
Şöyle yaparız.
start "" /wait command1 & command2 & call command3.cmd

Hiç yorum yok:

Yorum Gönder