Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
DOS Date and Time update problems
Name: William Croome Date: February 7, 2001 at 08:37:47 Pacific
Comment:
When I run my software in DOS 6.22(not DOS box in Windows '95) for more than a day I find, on exiting the program and typing C:\date that the bios date has not been updated. However if I reset the computer the date is correct again. Am I some how blocking off DOS's ability to access the system clock?
Summary: I am currently running a .bat file through NT scheduler that runs an app and generates logfiles. Here's what I'm trying to do: 1. Create separate log files for each day, each named with the date so t...
Summary: You should get the current date and time into variables, without separators such as "/" (that's not a valid character for filename) and then rename the file using those variables. The following URL co...
Summary: The %DATE% and %TIME% are not set in NT. So use the following script to set the equivalent ones: @Echo Off For /F "delims=" %%I in ('Date /T') Do Set MyDate=%%I For /F "delims=" %%I in ('Time /T') Do ...