Jump to content

MS-DOS Prompt Help :D


Recommended Posts

I'm running windows (don't laugh), and am doing a bit of MS-DOS. Basically, I've learned a few things about how it works, and I was attempting a few batch files. Anyways, I was doing some batch'ing, and I had this idea; is there a way to get the computer time, and put it in a string? Say:

 

'at *COMPUTER'S TIME + 1* /interactive cmd.exe'

 

How would I do that in a batch file? Any help appreciated,

 

Tom

Link to comment
https://forums.phpfreaks.com/topic/77846-ms-dos-prompt-help-d/
Share on other sites

Firstly, MS-DOS is an operating system, cmd.exe is simply a shell. Putting the output of time into a variable is quite simple, something like....

 

set t=%TIME%
echo %t%

 

Seriously though, if your gonna do any scripting in windows, install PHP cli, or better still Python.

Link to comment
https://forums.phpfreaks.com/topic/77846-ms-dos-prompt-help-d/#findComment-394069
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.