• 22Feb


    The other day I was having some performance issues on my network, so I decided to see if there was an update to my Linksys router’s firmware. It’s a good idea to update your firmware occasionally since the manufacture’s can  fix bugs, add functionality, and increase security and performance. Check with your router’s documentation on how to update the firmware.
    On my Linksys router, I open a browser and type the router’s IP address (192.168.1.1 is the default on a Linksys router). Download the firmware file from the Linksys website. The router administration page displays, among other things, the current firm version of the router.  My router was version 1.02.6 and the latest was 1.02.7 so I decide to upgrade it. As part of  the firmware upgrade process the router will restart itself after the update.

    The upgrade was successful according to the status page. The router restarted and my web browser refreshed to the administration page that I was on before. Here’s where things got interesting.

    I noticed that after the upgrade my the firmware version on the router was 1.01.6 and not 1.02.7 as I expected. I thought that this was strange. “Did I download the wrong firmware file?”, I thought. So I re-downloaded the file and started the firmware upgrade process from the same page, just as I did before.

    This is when I noticed the wireless signal strength bars at the bottom of my taskbar were low. Usually they are full. That’s when I realized I was not connected to my router. I was upgrading my neighbor’s router!! Luckily it came back up fine.

    The mistake I made was upgrading my firmware via wireless. So when my router restarted, my computer automatically connected to a unsecured wireless connection. Coincidentally, this was the same router I was using and I was the screens that I would have seen on my router.  The lesson learned here is to connect your computer to a wired Ethernet port if you are going to upgrade you router.

    Tags: , ,

  • 17Feb


    I noticed one day that I stopped getting any SCOM alerts in my System Center Operation Manager 2007 R2 environment. As part of my troubleshooting I found a ton of the following warnings in the Operations Manager Event viewer. I contacted Microsoft tech support and discovered that my RMS was in maintenance mode. I had put my RMS in maintenance mode for 30 minutes when I did some windows updates, but it never come out of it. After stopping maintenance mode and re-starting the System Center Management service on the Root Management Server, alerts started coming in again. The Microsoft tech told me that you should never put your RMS in maintenance mode and when I asked to have some documentation where it said that, he said it does not exist. This a tip that they have discovered in their troubleshooting. During this time the RMS was unable to process agent requests, so the agent holds on to the notifications in a buffer until it can communicate with the RMS again. If you are getting this warning on the RMS there is a good chance that you lost any alerts that the agent was unable to store in the buffer.

    Event Type:      Warning

    Event Source:   OpsMgr Connector

    Event Category:            None

    Event ID:          20058

    Date:                2/6/2010

    Time:                2:00:17 PM

    User:                N/A

    Computer:

    Description:

    The Root Connector has received bad packets which have been dropped. It received 8374 such packet(s) in the last five minutes

    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.


    Tags: ,

  • 21Jan

    funny-pictures-virus-cat
    Does your Windows machine feel more sluggish than usual? Are you getting little notifications on your taskbar that “You may not be protected”? You may have spyware or malware running a muck on your pc. Malware is getting increasingly crafty and find new places to hide and make it very difficult to get rid of. Some malware even disables your anti-virus protection to avoid being detected. The best way to deal with spyware and malware is stop them from running so anti-virus and anti-spyware programs can better clean your machine. Here are a few steps and places to check to stop spyware and malware before you run a scan.

    1. Boot into Safe Mode

    Booting into safe mode starts the computer with a minimum set of programs and drivers, which means some Spyware won’t run either. Restart the computer and hit the F8 key repeatedly before Windows starts. Choose Safe Mode when presented with a menu.

    2. Log in as administrator

    Don’t login with your normal user name. Your profile will automatically run some programs that you are not aware of and that includes malware. Once you have cleaned up you machine a bit you can then login with your account to finish cleaning. If you computer automatically logs in, Click start and Log Off. After you are at the logon screen, hit Ctlr+Alt+Del twice to bring up the user dialog box. Type in administrator and hit Enter since the password should be blank. If this doesn’t work, just login with you account. We’ll still get’em.

    3. Edit or Replace your host file windows\system32\drivers\etc\hosts file

    This file bypasses DNS and can be used by malware to redirect you to a malicious website. When you type citibank.com it could be taking you to a site that looks like citibank but isn’t. Unless you have a good reason to have any data in this file it is better to delete the contents of the file. Go to Windows\system32\drivers\etc\ and double click on the hosts file. Choose notepad as the program to open this with. Highlight and delete the information in this file and save it.

    4. Check the corners of you registry.

    Before editing the registry you should save a backup of it. http://support.microsoft.com/kb/322756

    Note: you need to log in to each user account on the computer and check the HKEY_CURRENT_USER registry key for each user since it will be different for each user that logs in or you risk getting infected again after that user logs on.

    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices]
    “Program”=”c:\runfolder\program.exe”

    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce]
    “Program”=”c:\runfolder\program.exe”

    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run]
    “Program”=”c:\runfolder\program.exe”

    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce]
    “Program”=”c:\runfolder\program.exe”

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
    “Program”=”c:\runfolder\program.exe”

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce]
    “Program”=”c:\runfolder\program.exe”

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunServices]
    “Program”=”c:\runfolder\program.exe”

    These reg keys will run programs. The key should have a default value of Value “%1 %*”, if this is changed to “program.exe %1 %*”, the program.exe will be executed EVERYTIME an exe/pif/com/bat/hta is executed.

    [HKEY_CLASSES_ROOT\exefile\shell\open\command] @=”\”%1\” %*”
    [HKEY_CLASSES_ROOT\comfile\shell\open\command] @=”\”%1\” %*”
    [HKEY_CLASSES_ROOT\batfile\shell\open\command] @=”\”%1\” %*”
    [HKEY_CLASSES_ROOT\htafile\Shell\Open\Command] @=”\”%1\” %*”
    [HKEY_CLASSES_ROOT\piffile\shell\open\command] @=”\”%1\” %*”
    [HKEY_LOCAL_MACHINE\Software\CLASSES\batfile\shell\open\command] @=”\”%1\” %*”
    [HKEY_LOCAL_MACHINE\Software\CLASSES\comfile\shell\open\command] @=”\”%1\” %*”
    [HKEY_LOCAL_MACHINE\Software\CLASSES\exefile\shell\open\command] @=”\”%1\” %*”
    [HKEY_LOCAL_MACHINE\Software\CLASSES\htafile\Shell\Open\Command] @=”\”%1\” %*”
    [HKEY_LOCAL_MACHINE\Software\CLASSES\piffile\shell\open\command] @=”\”%1\” %*”

    Explorer start-up:

    Explorer runs your start menu and desktop and start every time you start windows. Check to see if the registry is pointing to explorer.exe or if it is pointed to another executable.

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] Shell

    Active-X Component:

    This key starts the program that it has in its path BEFORE the explorer.exe file and any other program starts in your computer, so if you can understand why your antivirus can’t detect the virus when you boot up. It could even kill your antivirus software before your antivirus starts up.

    [HKEY_LOCAL_MACHINE\Software\Microsoft\Active Setup\Installed Components\KeyName]
    StubPath=C:\PathToFile\Filename.exe

    5. Start Up

    Here are the many places where programs get run at startup. Look at each item carefully. Find the name and path of the program that is being run. If you do not recognize it, search for it on the web to see if it is legit.

    Look in the following folders and check that the registry entry to verify that they pointing to the default location listed

    C:\windows\start menu\programs\startup

    * [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
    Startup=”C:\windows\start menu\programs\startup”

    * [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders]
    Startup=”C:\windows\start menu\programs\startup”

    * [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\User Shell Folders]
    “Common Startup”=”C:\windows\start menu\programs\startup”

    * [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\Shell Folders]
    “Common Startup”=”C:\windows\start menu\programs\startup”

    6. Windows Scheduler:

    Scheduled Tasks are a place where normally you can set a program or command to run at a certain time or every 5 minutes, so it’s a good place to check.

    Go to Start-> Accessories-> System Tools-> Task Scheduler

    Some tasks don’t show up in the GUI so in a command prompt type: “at”

    Press enter.  You should see a list of tasks that are in the Task Scheduler GUI and some that may not.

    7. Batch files

    Open the following files in notepad and look for any odd programs that are listed. You can comment out the program by putting REM at the start of the line so it will be ignored.

    c:\windows\winstart.bat

    c:\Autoexec.bat

    Removing  Spyware and viruses

    After checking all these dark corners of you computer and removing any potentially malicious programs from starting, you are giving you anti-virus and anti-spyware software the best chance to find and remove the malware.

    AVG Free is a good free Antivirus program that detects many types of malware as well as viruses. Three effective anti-spyware programs are Spybot Search & Destroy, Malware Bytes, and AdAware. One pass of each of theses programs will clear your system of any unwanted processes slowing your machine down. Good Luck.

    Tags: , ,

  • 29Dec


    As a parent, the part of Christmas that was the least fun was the cleaning up of packaging materials after opening the gift. The  big clean up the day after Christmas was filled with bulky bags of plastic and styrofoam and impossible to open packaging. But this year I noticed the packaging using more cardboard for filler and recycled cardboard molds holding products in place instead of the plastic molds and styrofoam. Clean up this year was easier than previous years since most of the cardboard was folded flat. I guess manufactures have been making this eco-friendly change for a while and I have never noticed until I saw many products being opened at once. I hope this trend keeps up.

    Tags:

  • 24Dec


    htc-touch-pro2-verizon

    My wife recently had a chance to use the HTC Touch Pro 2 and this is what she had to say about it:

    I tested the HTC Touch Pro 2 over the past month.  My first impression of the phone was that it was surprisingly heavy.  I don’t mind electronics that have some heft to them, the phone seems sturdy, well put together and I don’t wince every time I place the phone down or worry about carrying it around.  The phone is easy to hold and comfortable in my hand.  The phone also felt a lot thicker than what I’m used to, a little bulky and cumbersome in my hand if I were to flip it over.

    The screen is really bright and very vivid on the phone.  It is definitely eye catching and the home screen has a huge clock which I really enjoy.  Sometimes, the simple things being right up front and at-a-glance are really important.  The screen is crystal clear and sharp.  The navigation at the bottom of the screen takes some getting used to, and with my settings I found that moving from the mail icon to the settings icon a bit sticky and not as fluid as I would like from time to time.  However, maneuvering through the menu from the home screen is intuitive.  The screen reorients itself based on flipping it sidewise fairly quickly in most instances.

    Pushing the phone open to access the keyboard isn’t as smooth as I would have expected, you have to push a little harder and I was almost afraid something was wrong with the phone until I adjusted to it.  I think I would’ve appreciated a smoother opening.  However, the keyboard is worth the effort, the keys have just the right “feel”, they are at the right sensitivity and the spaces between the keys are prefect, I rarely find myself mistyping.  The phone also has a vibrant virtual keyboard, which is easy to use but I preferred actually touching typing with my thumbs.  I really enjoyed that the keyboard was in QWERTY format, I despise having to press a key 3 times to spell a word.

    The phone is very customizable and most things that I would like to have “my” way were not difficult to find, although I would have liked to easily order the applications from the “Start” screen.  It is also odd that while 4 rows of icons fit easily on the screen, one cannot read the last line of text under the fourth row. Browsing the internet was an enjoyable experience, I went to some graphic intensive websites and they looked really sharp, even when I would zoom in quite close.  Video on the Touch Pro is impressive and fun. What is not impressive, however, it the camera.  Photos look grainy, too dark regardless of the light settings, washed out and dull.  It was a major disappointment considering how well most everything else works on the phone.

    Overall, I enjoyed using the HTC Touch Pro 2.  Using it inspired me to upgrade from a typical cell phone to get a smart phone of my own.

    Tags: ,

« Previous Entries