Posted by jayb | Posted on 09-06-2008
Category : Post from around the Net, microsoft, technology
Tags: active directory, admin, exchange, free, lan, microsoft, search, txt, work
We plan on having an outside company come in and do a AD/Exchange health check before we work on our domain migration project. This article will give me a head start on all of this.
Health Checks on Domain Controllers
I get asked over and over about what I do when I’m performing a health check on a domain controller. Below you will see some of the commands that I use when I need to ensure my domain controllers are still healthy after some sort of change…like patching.
The Event Viewer is always a must. I look at all the logs before and after the update to the domain controller looking for abnormal events. With the pre-check I usually go back a month of logs to get more historical data. I then run through a couple command line utilities. One thing I always do is pipe my commands out to a text document. This just makes it easier for me to read and also search for failed events.
Dcdiag.exe /v >> c:\temp\pre_dcdiag.txt
This is a must and will always tell you if there is trouble with your DCs and/or services associated with it
Your Source for Free Online IT Articles and Elearning
Posted by jayb | Posted on 29-12-2007
Category : Post from around the Net, technology
Tags: cell phone, email, sms, txt
If you ever need to text someone on their phone and you’re at a computer you can actually send one through your email account. Just send an email to their address below based on their phone service:
Verizon: 10digitphonenumber@vtext.com
AT&T: 10digitphonenumber@txt.att.net
Sprint: 10digitphonenumber@messaging.sprintpcs.com
T-Mobile: 10digitphonenumber@tmomail.net
Nextel: 10digitphonenumber@messaging.nextel.com
Cingular: 10digitphonenumber@cingularme.com
Virgin Mobile: 10digitphonenumber@vmobl.com
Alltel: 10digitphonenumber@message.alltel.com
CellularOne: 10digitphonenumber@mobile.celloneusa.com
Omnipoint: 10digitphonenumber@omnipointpcs.com
Qwest: 10digitphonenumber@qwestmp.com
Info from: AllThingsMarked
Posted by jayb | Posted on 28-04-2007
Category : Post from around the Net, technology
Tags: admin, help, lan, RDP, scripts, storage, txt, windows, WordPress, work, XP
you should setup this script as a scheduled job to run after hours.
I’m going to start sharing some useful scripts that I use to automate many processes. Most of the ones I will share, I have gathered from the Internet and edited. Who knows just what I will share, but I can guarantee they can help you out with many system admin tasks!
The first one I will share is a Defragment script I have implemented to run every day on many of the XP workstations I manage. Defragmentation is a big problem if not taken care of every once in a while.
What is defragmentation? When a file is saved to the hard drive, it tries to keep everything in the same location (or cluster) Over the course of time files will be deleted, leaving blank areas between files. If you install another large program, the hard drive tries to fill the holes, thus breaking up the program storage block. This effects your system performance by as much as 200% since programs have to access more areas of the hard drive, just to run.
The script I will show below is based on a threshold of fragmentation. A drive will be defragmented only if it’s fragmentation percentage is determined to be equal to or greater than the FragThreshold value. You can edit to whatever you want.
REQUIREMENTS: The script has to be executed locally on only XP or Server 2003 systems and under account with permissions to defragment local fixed drives.
Defrag All Drives
Source: Windows Admin Script: Defrag Drives Based on Threshold
Originally published on Sun, 22 Apr 2007 00:05:08 GMT by bcarderma