Join Me in Joining Join Me

by BiggAndyy on December 6th, 2011, in New Learning, Troubleshooting, Windows Administration

Move over VNC.  RDP?  Thing of the past.  Go to my PC?  Not anymore.  Join Me is a great web application for sharing or controlling a user computer, displaying a powerpoint presentation, even from Android or iPhone!

No subscriptions unless you want all the bells and whistles, but the free version is enough for most small to mid-range tech shops to support users across the hall or across the ocean.

Don’t take my word for it, visit http://join.me and have a friend or customer go there as well.  No logins, no passwords, no foolin’!  The customer only needs to click on the “share” button and the website will ask permission to run a small program, tell your user it’s ok and have them read you the number that appears.

You type in that number and click join and you are connected to their desktop.  You can see it, watch it, even take control of it (with the user’s permission).  The EASIEST way to remote to a customer’s machine, period.

Tags: , , , , , ,
48 views

EVENTTRIGGERS: Something to use

by BiggAndyy on December 2nd, 2011, in Windows Administration

My Windows file server doesn’t act up that much so it is easy to put checking the event logs on the back burner.  So far back that when something does go wrong it takes a catastrophic failure and a few calls from the Dean’s Office to get it taken care of.

Nuts to that!  Windows 2008 server comes with elaborate web based monitoring configurations that allow the savvy admin to check all sorts of bells and whistles.   Dell also has OpenManage software that works (with varying degrees of success) and adds some more glitz and glamor.

But this server is a plain old workhorse that doesn’t need glamor and bells.  I just want to have the server give me a notice when an error pops up in the event log for either System, Application, or Security.  Why not use EVENTTRIGGERS?

That’s what I said!  So I started using them.  They are quite simple and combined with bmail the server can email me my alerts with a minimum of overhead and space taken up.

An EVENTTRIGGERS is invoked in a DOS shell and monitors the log you want to monitor for the conditions you want to keep track of, and executes a command when that condition is met.

@eventtriggers /create /tr SYSTEMERROR /l System /t Error
/tk c:\windows\system\events\systemerrors.bat

The above command tells EVENTTRIGGERS to create a new trigger called SYSTEMERROR, to monitor the system log for the type ERROR and to execute the command when an ERROR is found.

SYSTEMERRORS.BAT

@ECHO OFF
@echo Here are the last 4 error entries from SYSTEM log >systemerrors.msg
@eventquery /l system /r 4 /fi "Type eq Error" /v >>systemerrors.msg
@BMAIL.exe -s {smtpserver} -t {destination email address} -f [who it's from] -h
-a "System Event Log Error Detected" -m systemerrors.msg -c >NUL

Uses the EVENTQUERY.VBS file to get the last 4 errors from the event log and adds them to a .MSG file and emails that file using the BMAIL.EXE program (available on the web).

A trigger for each event log is made and a separate batch file as well.

Now, when something goes BUMP in the night on the server it can drop me a note to alert me.

Tags: , , , , ,
71 views