Content on this page requires a newer version of Adobe Flash Player.

Get Adobe Flash player

spacer

Archive for the System Administration Category

08.18.2010

Disable SBS 2008 Console

Disable SBS console

07.11.2010

Script to reset all active directory users passwords in an organizational unit OU

This will replace all the users passwords in UserOU with Newpassword!
Update the italicised items to suit you domain
Option Explicit
Dim objOU, objUser
Dim strPassword
Dim intCounter, intAccValue, intPwdValue
‘————————
strPassword = “Newpassword!”
intAccValue = 544
intCounter = 0
set objOU =GetObject(“LDAP://OU=UserOU,OU=MyCompanyOU,C=MyDomain,DC=LOCAL“)
For each objUser in objOU
If objUser.class=”user” then
objUser.SetPassword strPassword
objUser.SetInfo
objUser.Put “userAccountControl”, intAccValue
objUser.SetInfo
intCounter = intCounter +1
End if
next
WScript.Echo strPassword & ” is Password. UserAccountValue = ” _
& [...]

07.9.2010

Vodafone Blackberry website

In order to configure your Blackberry to pick up e-mail from your server  you need to go to this website
https://bis.ap.blackberry.com/html?brand=vodaau
you will need your login username and password. Contact Vodafone on 1300 30 10 30 for assistance on getting usernames and passwords. Generally they will be able to configure the settings for you.
You will need to [...]

07.5.2010

SQL High Memory usage SBS 2003

How to cut down SBS monitoring memory usage on SBS 2003.

06.18.2010

Free utility to restore overwritten or deleted partition table testdisk

This one is a keeper http://www.cgsecurity.org/wiki/TestDisk
I accidentally tried to install Ubuntu over my 500gb data disk. It deleted the NFTS partition then wrote its own ext4 file systems to the disk. Fortunately it died with an error then I realised my mistake.
The lovely folk over at expert sexchange referred me [...]

04.29.2010

Windows 7 or Windows 2008 add quicklaunch toolbar

By default Windows 7 and 2008 no longer display the quick launch toolbar. Some users prefer this to the new taskbar method of pinning programs. The problem with pinning is you cannot create distinct shortcuts to particular files, you can only group like files on the program that executes it.

To add the quick launch toolbar [...]

04.12.2010

Script to create a signature file from Active Directory field entries

Do save having to manually edit and create uniform signature files for users, you can implement this VBS script which gathers information from Active directory about the user and inserts it into the appropriate signature folder on their system. At the bottom you will find the signature.htm and signature.txt files to edit and save
 *****************************
‘Modify Reg [...]

03.15.2010

IE Automatically detect settings not working due to WPAD alias DNS entry not responding

If you follow this article http://support.microsoft.com/kb/309814 to configure automatically detect settings in Internet explorer and have set up a WPAD alias on your DNS server, you may find the autodiscovery is not working.
If you try to ping wpad or wpad.domainname.local you get a response Ping request could not find host wpad. Please check the name [...]

02.25.2010

Free 2CX terminal server client for managing RDP remote desktops

I’m at 2cx training which is a terminal server add on for publishing applications and load balancing terminal servers.
If you manage hundreds of systems using remote desktop like we do, managing all the connections can get messy. 2cx provide a free terminal server client which allows you to add all the connections within the client, and to [...]

12.8.2009

Distribution group security tab missing for domain admin

If you need to set send as permissions for a distribution group, you may find that when you go to the properties for the group you are missing the required security tab

In order to see the security group tab you need to enable Advanced Features from the view menu in active directory

Now when you go [...]