Jump to content

Recommended Posts

Posted (edited)

We are looking for a basic messaging system so key staff can send urgent to all computers. Communication would be one-way not chat or IM, just alerts which pop-up on screen for things like lock-down procedure, short notice fire alarm tests and so forth. Any suggestions?

 

At my last school we used Sys Mess from Flo, but they seem to have disappeared. We used to use Net Send here but this doesn't go across VLANs. We have Google Apps, but I can't see a way to make Hangouts do this, plus I'd prefer something which doesn't require users to log in.

 

Net Send got massively over-used too, so we'll be heavily limiting who can approve/send messages, but that's another conversation!

Edited by enjay
Posted
They did a free notify offer a while back, this may come around again? not much help at the moment though :/

 

Well, if they can afford to give it away, I can probably afford to buy it...

Posted
If you dont want to pay for anything then Microsoft have the 'net send' command that can send a one-way message to all your computers (or just individual ones should you wish). I'm sure a batch file could be knocked up to make it user friendly.

 

Net Send only works on a flat network, the messages don't cross VLANs.

Posted

If you are on a budget of £0 and net send isn't any good you can cobble something together with powershell:

 

$PCLIST = Get-Content 'C:\TEST\PCLIST.TXT'

ForEach ($computer in $PCLIST) {

   Invoke-Command -ComputerName $computer -Scriptblock {
       $GetUserName = [Environment]::UserName
       $CmdMessage = {C:\windows\system32\msg.exe * 'Hello' $GetUserName 'This is a test!'}

       $CmdMessage | Invoke-Expression
   }

}

Posted
If you are on a budget of £0 and net send isn't any good you can cobble something together with powershell

 

That's neat, thanks. I can probably rustle up the budget for NetSupport Notify, but I'll keep this in case I can't.

Posted

Answering my own question here, but...

 

Not quite £0 budget, but very cheap - I've just found Flo Computer Services - Sysmess who I've used before at a previous school are still trading. Their website hasn't been updated in years (they still list VAT at 17.5%!) so I figured they'd disappeared but apparently not.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...