Using grouo policy to generate logon messages

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to use group policy to generate a logon message that will only
be displayed on the first of each month? ...with a twist...how to account
for when the 1st lands on a weekend?
 
Hi,

Emanuel said:
Is it possible to use group policy to generate a logon message that will only
be displayed on the first of each month?

No. GPO can´t. You can try to do it in a login script.
if /i %date:~0,2%==01 net send %computername% "Hello World"

Ops, the net send service is disabled ... internal you can
start it again via GPO, set it to start "automatic"

Or you can use BLAT inspite of net send. BLAT is a commandline
mail program. Perhaps the better way, then net send, because
the user can´t click it away ...
http://www.blat.net/194/

Mark
 
Back
Top