So, as of Windows Vista, NET SEND is gone. But you want to send a console message via popup to a remote user or computer? Windows Vista shipped with the MSG.EXE utility, which is still around in Windows 7. But there’s a small problem, which led me to another small problem, but thankfully there’s an easy solution.
Problem 1 – You may need to modify a Registry Value on all your networked Windows 7 computers.
- HKLM\SYSTEM\CurrentControlSet\Control\TerminalServer
- Value: AllowRemoteRPC
- Required value: 1 (REG_DWORD)
Problem 2 – Trying to set that on a remote Windows 7 box
The Remote Registry service is disabled by default. You can start turning on services manually, but…
Solution – Use Group Policy Preferences to do it all at once
- Create a new GPO named something that makes sense
- Edit the new GPO
- Expand Computer Configuration / Preferences / Windows Settings
- Click on Registry
- Right-click and select New –> Registry Item
- Select Action: Update, Hive: HKEY_LOCAL_MACHINE
- Key Path: browse to the key shown above
- Select the Value name: AllowRemoteRPC
- Set the Value data: 1, specify type REG_DWORD
- Click OK
If you also want to enable remote Registry editing…
- Expand “Control Panel Settings”
- Select “Services”
- Right-click and select New –> Service
- Startup: Automatic, Service Name “Remote Registry”, Service Action: Start Service
- Click the Recovery tab
- Specify First and Second failure action as “Restart the Service”
- Specify Restart fail count after to 1 day, Restart service after 1 minute
- Click OK
7 comments:
Another post on your blog - GASP!!!
I will still post. Just less often.
Thanks, there's surprisingly little information regarding this online.
Did anyone actually succeed to send a message between 2 workstations in the same workgroup?
This solution did not work for me.
Did you look at this already? http://social.technet.microsoft.com/Forums/en/w7itprogeneral/thread/344aa708-5477-46f9-be4f-ad8b3b2348b0
There is an alternative : dMessage (http://eng.dmessage.com/index.html) no problem of security, because you don't have to open ports, and you can send alerts pop up and even more.. try it! there is a free trial version
But that's not the point. The point is how to leverage the existing (and free) features included with Windows. 7
Post a Comment