Zend certified PHP/Magento developer

Does shutdown.exe take decimal for the reason codes?

I’ve got the following command:

shutdown.exe /s /f /t 0 /d 0:19 /c "Honeypot Activated"
  • /s Shut down and leave the PC locked
  • /f Disregard unsaved work
  • /t 0 Do so immediately
  • /d 0:19 Unplanned; Other issue – Security issue.

According to the documentation, SHTDN_REASON_MAJOR_OTHER is 0x00000000, and SHTDN_REASON_MINOR_SECURITY is 0x00000013.

“13” is hexademical for “19” (decimal), so have I entered this correctly?

If not, how should I enter it?