grab our rss feed

stevienova.com

Homepage of Steve Novoselac

Entries Tagged ‘System Admin’

HowTo: System Admin - Remotely Log Memory of Processes Greater Than X

If you ever wanted to remotely log memory usage (and CPU usage) of processes, you can use "tasklist"
The key is, "tasklist /s"  and then the remote computer name. That along with filters you can query and log process info remotely with no more than a cmd window, or batch file in a [...]

Leave a Comment | 240 views

How To: Connect to SQL Server, VS TFS, etc using Windows Authentication when computer is not on Active Directory Domain (XP and Vista!)

Whew, long title, amazing results!
Problem: You have a laptop or computer and you are working remotely for a company. You VPN in. Your computer is not on their Active Directory (AD) domain. You try to connect to SQL Server using SSMS or Analysis Services using Excel, but it doesn’t work because it is using your [...]

Leave a Comment | 1,655 views

IT Disaster Recovery, what the I-35W Bridge Collapse shows us

Now, I am from Minnesota originally. I drove over that bridge 3 days before it collapsed. It sucks, its a bad thing for the state, for the people involved, and for everyone who passed or is injured. It is a very sad situation that no one should have to go through.
What does the bridge collapsing [...]

Leave a Comment | 166 views

Real World IT: Backing Up Cisco Routers using .NET

Usually, in a company, there is a “development” department and a “IT” department, and usually the departments don’t really work together. Development is focused on delivering business value through coding applications for end users or B2B clients. IT is busy making sure the corporate network is humming along, and that other internal issues related to [...]

Leave a Comment | 139 views

Data Recovery - Where Did My Files Go?

Right before I left for Portland, I was moving some files around on my USB hard drive, and I noticed something was wacked, like 100 GB was in use, but I couldn’t see any files! They had disappeared.
Well today I finally got around to recovering the files. I tried 3-4 different products at first. All [...]

Comments (5) | 84 views

Vista - Hide Ad-Hoc Networks

Since I am getting my Internet today, this probably isn’t such a big deal, but for the past few days I have been “borrowing” the coffee shop’s wifi below my apt. Comes on in the morning, shuts off at night. But, there are like 20 wifi points in the list to connect to. I hate [...]

Leave a Comment | 83 views

Change your Default CMD prompt path

Sometimes, your path when you go to start->run, CMD will be something you don’t want. In active directory or on an NT domain, sometimes your default home path might be a network drive. This isn’t so good when you are offline or drop offline after being online. The CMD prompt is set to a place [...]

Leave a Comment | 778 views

Protected: IT War - Battle of the Scheduled Tasks

There is no excerpt because this is a protected post.

Enter your password to view comments | 153 views

Bluetooth on Lenovo/IBM T60

If you reload your laptop, and you can’t figure out how to get your Bluetooth working. You need to hit fn+f5 (function key and f5) and the wireless manager comes up. You need to turn on the Bluetooth radio. Kind of hidden if you ask me :)

Comments (6) | 1,688 views

ForFiles - Delete files older than X amount of Days

Windows 2003 - ForFiles
FORFILES /P C:\MyPath\ /S /M log*.xml /D -30 /C “cmd /c del @file”
/S - look at subdirectories
log*.xml - that is the file pattern, you could have it be like *.txt for example
/D -30 = files greater than 30 days
/C - thats the command you want to run
this is pretty much a one [...]

Comments (3) | 1,062 views