Windows: Pause n milliseconds from command line

PHOTO EMBED

Sun Aug 28 2022 12:59:51 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #bash

ping 1.1.1.1 -n 1 -w [millisecods] > nul
content_copyCOPY

Interesting command (Windows/DOS command line) when a pause is requiered in execution of batch files. You must set time in milliseconds. Example: ping 1.1.1.1 -n 1 -w 3000 > nul Pause waiting 3 secods (3000 milliseconds).