Locking Personal Message - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: WLM Plus! General (/forumdisplay.php?fid=23) +----- Thread: Locking Personal Message (/showthread.php?tid=75675) Locking Personal Message by Shaggie on 06-26-2007 at 10:14 PM
Is it possible to lock down the personal message to make it difficult for people who pass by my pc to change my message. RE: Locking Personal Message by Jarrod on 06-26-2007 at 10:19 PM lock messenger when you step away? RE: Locking Personal Message by lizard.boy on 06-26-2007 at 10:49 PM
That would be my first option. Perhaps you should see the idle security script. RE: Locking Personal Message by Shaggie on 06-26-2007 at 11:34 PM
That is not exactly what I was looking for, but if it is my only option, then I guess it is better than what I have now. RE: Locking Personal Message by NiteMare on 06-27-2007 at 01:00 AM well somebody could make a script that checks avery fwe seconds to see if your PSM has changed and if it has, it will change it back RE: Locking Personal Message by CookieRevised on 06-27-2007 at 11:35 PM
The PSM changing would be the very least of my worries when you say there are big "children" at your office who make it into a sport to change your PSM. RE: Locking Personal Message by lizard.boy on 06-27-2007 at 11:55 PM
What Cookie said about locking your computer is also a very valid point, and can stop them from messing with other things when they can't mess with your Messenger or PSM. RE: Locking Personal Message by NiteMare on 06-28-2007 at 03:13 AM yeah, lock your comuter so you don't eventually come back with like porn as your decktop background, or something RE: Locking Personal Message by Shaggie on 06-28-2007 at 03:45 PM
I am less worried about my desktop background as others on MSN will not see it, besides even though they act childish sometimes, they still have to behave somewhat professionally. The problem with locking my computer is that I get pulled away from it to assist others so often that I forget to do it & it can be a pain to have to unlock it all the time. I did some research into this and found out how to write a script for this. I thought it would be more difficult than this. C'est la vie. I used the timer to prevent the person who changes it from noticing the change easily. It Follows: function OnEvent_MyPsmChange(NewPsm) { if(NewPsm != "My Personal Message") { MsgPlus.AddTimer("ResetPersonalInfo", 10000); } } function OnEvent_MyNameChange(NewName) { if(NewName != "My Name") { MsgPlus.AddTimer("ResetPersonalInfo", 10000); } } function OnEvent_Timer(TimerId) { if(TimerId == "ResetPersonalInfo") { Messenger.MyPersonalMessage = "My Personal Message"; Messenger.MyName = "My Name"; } } RE: Locking Personal Message by CookieRevised on 07-03-2007 at 06:35 PM
quote:We were not talking about your desktop background though. We were talking about stuff like installing programs, removing programs, changing other (important) Windows settings, getting your Windows Live ID passport or other passwords, etc... quote:It's only 1 key press to lock your PC though, eg: WIN+L... Either way, it's one or the other. Or you do lock your PC properly to prevent those "children" from changing/installing/removing stuff, or you don't lock it and you give them the chance to do whatever they want (even with that script)... As said previously, having a script to prevent them from changing your PSM or whatever in Messenger is totally not a solution at all. All they need to do is a few clicks and they would be able to change anything they want again... |