1.

Solve : Help for Batch to Shutdown Windows?

Answer» HI, I'm a Newbie,
i want to CREATE a batch file to shutdown windows after from a date to another date.
I tried with this

echo off
set DATA=%date:~6,4%%date:~3,2%
echo.> %data%.fak
If EXIST 200811.fak goto uninstall
If not exist 200811.fak goto end
:uninstall
shutdown -s -t 30 -f
del *.fak
exit
:end
del *.fak
exit


obviously, it shutdown windows onlyu on NOVEMBER,
how can i put the day?
and how can i put from a date to another date?

Than you for all


Discussion

No Comment Found