Windows 2008 – Default gateway 0.0.0.0

When on a Windows 2008 server you open command prompt and type: ipconfig /all you see there are 2 default gateways and that the first is 0.0.0.0. When you go over to IP settings you won’t see the 0.0.0.0 anywhere. To resolve this issue: run -> cmd typ: route delete 0.0.0.0 Now go back to […]

Read More »

Windows 8 – Turn of automatic window arrangement.

If you want to prevent windows from begin automatically arrange when moved to the edge of the screen you need can easily change this. Press the windows button and typ ‘snap’ choose ‘settings’ on click on ‘Turn of automatic window arrangement’. Then on the next screen you need to scroll down and select ‘Prevent windows […]

Read More »

Windows – How to make your USB drive bootable

# Start -> Run -> type ‘diskpart’ without quotes # Once it’s loaded type: list disk This will display the current connected disks. # now type: select disk # (you need to replace # with the disk number you want to select). # type: clean # type: create partition primary # type select partition 1 […]

Read More »

FreeBSD – Define or add (extra) nameservers

In FreeBSD there is a file named ‘resolv.conf’ where the dns servers are located. If you want to add an extra DNS server you have to edit this file. Log in with root. # ee /etc/resolv.conf You will probably see something like: domain yourdomain.local nameserver 192.168.1.1 To add an extra nameserver, all you have to […]

Read More »

How to test HTTP Errorcode 400.

To extra secure your webserver you may want to create your own ErrorDocument for different errorcodes. For example errorcode 400. To test this go to your website /% example: http://www.iterrors.com/% (It seems my host isn’t 100% secure :)).

Read More »

Outlook – Automatically save an outlook attachment to disk

If you want to automatically save an attachment to a folder on your computer/server do the following: Open Outlook and open Microsoft Visual Basic for Applications (Alt + F11). Expand the tree view on the left till you reach ThisOutlookSession, now right click on ThisOutlookSession and select insert -> module. You will now get a […]

Read More »