Format more than 32GB hard disks as FAT32

There is one very annoying limitation (ok perhaps more) if you are using Windows XP. The limitation that the MS Windows XPs format tool can only handle HDDs under 32 GB of disk space. Other OS’s like Linux or Mac OS X do not have this limitations but what to do if you want to format a disk bigger than 32GB using Windows XP?

Grab one of the most useful 3rd party applications – called FAT 32 Formatter.

Using Radius on Windows 2003 with Cisco VPN Concentrator or other Cisco Devices

The Cisco VPN Concentrator is one of my most beloved devices from Cisco :) I do not understand why Cisco stopped supporting and selling this device, perhaps because they integrated most of the feature into the IOS. Nevertheless it is a dedicated device which is optimized only for VPN Connections.

After the “few clicks” experience the VPN Concentrator should allow the users of your network to access your internal network from anywhere using VPN Dial In. What most system administrators, like me, do not like – is administer another user and password database besides their Active Directory database. For this reason I collected two important sites which address this topic:

Most important is to set the authentication profile right – like in the screenshot and don’t forget to tick “Unencrypted authentication”

The same procedure can be used for all other Cisco Devices – only difference is the configuration of the device itself.

Schedule to reboot a Windows Machine

Computer sind Arbeitstiere, und ganz im speziellen Server, trotzdem gehören auch diese Geräte nach speziellen Updates neu gestartet. Diesen Vorgang während der Arbeitszeit zu machen führt sehr oft zu nervenden Klingelorgien des Telefones. Aus diesem Grund macht es Sinn einen Server zu Zeiten neu zu starten in denen keiner die Resourcen dafür benötigt. Meist weil viele der User im Bett liegen und schlafen, natürlich auch der Administrator. Daher muss ein Restart zeitgesteuert passieren und hier bietet Windows die nötigen Bordmittel.

AT – heißt das Command Line Tool. Alle Schalter und Optionen erklärt Microsoft in einem Knowledge Base Eintrag genauer.

Reboot eines Computers um 2 Uhr Morgens

C:>at 2:00 shutdown.exe -r -f

Die Zeitangaben können im 24 oder 12 Stunden Format gemacht werden, bei zweiterem jedoch nicht AM oder PM vergessen. Mit dem Bordmittel “shutdown.exe” kann der Computer in unserem Fall Rebooten werden und dazu wird der Switch “-r” verwendet. “-f” erzwingt das Beenden aller laufenden Programme. Weiters kann man mit “-t” den Shutdown Prozess verzögern um dem User eine Interaktionszeit zu bieten und mit “-c” kann man den Shutdown Grund kommentieren.

C:>at 8:00am shutdown.exe -r -f  -t 10 -c “updates”
C:>at 20:00 shutdown.exe -r -f  -t 10 -c “updates”