Archive for September, 2009

A lost relic from the old days of ASCII Art “DAMN NFO Viewer”

Saturday, September 26th, 2009

I don’t know how many of you remember when you had to open up a .nfo, maybe you haven’t. ;D

But there was one awesome program that would display ASCII Art in windows properly. DMAN NFO Viewer. I’ve put it up for download.

DAMN NFO Viewer - A program to view .nfo files correctly, specifically displaying ASCII Art correctly.
Downloaded 64 times.
Posted by admin

Gmail Email Address Confusion and MySpace SPAM!

Thursday, September 24th, 2009

So, I’ve been getting emails address to this guy named Josh Trask. It’s been going on for over a year, and I’ve had this email for a long time, I think it was 2005 when I activated my email account.

Anyways. I’ve been getting these emails for the last year or so. I’ve been replying to the ones that actual humans receive and letting them know they have the wrong email. I also tell them to tell Josh Trask that hes giving out the wrong email. Typically I don’t get a response.

Today, I think his wife/gf emailed me and in the Subject it said “Thinking about you”. Which was kinda funny. So I told her to tell Josh not to give out this email to his friends because it isn’t his.

But what really gets my button is the SPAM this guy signs up for. Well, some of it is just silly stuff that I personally don’t sign up for.

I though he just signed up for MySpace because now I’m getting all this MySpace Junk. So I looked into it and I found out that this guy us usingĀ  “j.trask@gmail.com” which is totally messed up.But this isn’t Josh, this is Justin Trask.

Anyways, if you click show details in Gmail, you will see a (Yes this is You, Learn More). Which links to this.

http://mail.google.com/support/bin/answer.py?hl=en&ctx=mail&answer=10313#

So what do I do? I cancel his myspace account, he had no friends anyways. But I don’t understand why there was no email confirmation to opt in. That’s really messed up. Not only that, but if I want to unsubscribe I have to login and cancel the subscription that I didn’t even confirm to receive. LAME!

Adding your Desktop Admin Groups to One Global Group for Administrators

Friday, September 18th, 2009

One idea that has come up and is really handy, is creating a general support user so that you can login to machines and have Administrative rights to that machine. We have many groups, and each group has a Desktop Admin group that we add people to who need Administrative access. But we also use it to remove people that seem to abuse it.

Instead of manually adding the groups one by one, you can use dsquery and dsmod. You simple do a query to find the groups that you’ve created. In this example we’re looking for anything that ends in “Desktop Admin”:

dsquery group domainroot -name “*Desktop Admin”

Which returns all of the groups we need. Next step is to take the Global Desktop Admin group and add it to all of these groups. This is simple with dsmod:

dsquery group domainroot -name “*Desktop Admin” | dsmod group -addmbr “CN=Global Desktop Admin,OU=Network Admin,OU=Groups,DC=DOMAIN,DC=LAN”

Voila! Done.