Microsoft
Software
Hardware
Network
Question : Windows Batch - Find Day of Week
Hi,
I have the below batch script to create the 'DOW' variable. However when I run it, it's choking on the 4th lineon the 'Command' part. Not sure what is wrong. Any help? Prefer to keep this Windows Batch. Running on Win Server 2003 R2.
REM Set the Day of Week (DOW) Variable
:: setDOW.bat
@echo off
Echo.|Command /C Date>DOW
set /p today=<DOW
set DOW=%today:~16,3%
echo DOW=%DOW%
:: DONE
Answer : Windows Batch - Find Day of Week
In a BAT file, this is all you should need:
@echo off
for /F "tokens=1" %%A in ("%DATE%") do set DOW=%%A
~bp
Random Solutions
Getfile in ASP
How do I modify textboxes/labels in an asp:repeater footertemplate through javascript (client side)
Crystal cross-tab page numbering
Screen lock/unlock
Keep geting lots of "The system failed to flush data to the transaction log. Corruption may occur" errors in Windows 7 Pro
Question about Exchange 2010 mailbox move.
SQLServer Query, Pivot and/or Cross tab or whatever
Setting Compatibility Mode in IE8 using JavaScript
open and read a *.xlsx file
I am new to webservices, please help.