Hello ISDPCMAN,
You can add a aschedueldd task that contains the logoff or shutdown time
create a startup script like logoff.bat:
------------------------------------
;Create the scheduled task on remote workstation's
if not exist %systemroot%\tasks\at1.job at 05:00 /every:m,t,w,th,f,s,su shutdown.exe
/l /t 600 /c "You will be logged of in 5 minutes, please save all your data.
Your Administrator." /f
:Copy the shutdown.exe to remote workstation
if not exist %systemroot%\system32\shutdown.exe copy "\\domainname\netlogon\shutdown.exe"
"%systemroot%\system32\shutdown.exe"
------------------------------------
BUT keep in mind if users have programs open or unsaved data they loose it,
so INFORM them about the running task BEFORE adding it.
Best regards
Meinolf Weber
Disclaimer: This posting is provided "AS IS" with no warranties, and confers
no rights.
** Please do NOT email, only reply to Newsgroups
** HELP us help YOU!!!
http://www.blakjak.demon.co.uk/mul_crss.htm
> We have a new legal requirement to make sure system users logoff their
> PC's daily (most just leave their user accounts signed in.)
>
> Is there a way to have a group policy or script that will, say, call
> something like:
> Shutdown -l -f -t 5
> (i.e. force a logoff of a user account on their domain member
> workstation) at a given time each day? We would like to run this at
> 6:30PM each evening of the week.
>
> Any ideas are appreciated.
>