Search found 2 matches
- 14 Feb 2013 01:42
- Forum: DOS Batch Forum
- Topic: [solved]One batch file, two computers, two different results
- Replies: 12
- Views: 10643
Re: One batch file, two computers, two different results
Or don't use basic commands to get parts of dates from because they vary with computer settings. Try this - I assume you wanted the day in Thu format. :: get day of week using WSH @echo off set TmpFile="%temp%.\tmp.vbs" echo> %TmpFile% n=Now echo>>%TmpFile% Wscript.Echo "set day=&quo...
- 13 Feb 2013 22:54
- Forum: DOS Batch Forum
- Topic: [solved]One batch file, two computers, two different results
- Replies: 12
- Views: 10643
[solved]One batch file, two computers, two different results
Hi, I hope somebody can help. I have been making a daily local back up of a shared folder for some time on computer1 (XP), now I want use to use computer2 (XP) to make this backup. I have copied the batch file and the result (changed only the destination a bit), but the outcome is different: Where o...