vCenter Server Appliance – Could not connect: An unknown connection error occurred

Just now and then i ran into a strange problem: my vCenter wasn’t reachable anymore.  A simple reboot works, but is no solution! When you connect with the vSphere client you recieve the following error message: vSphere Client could not connect to "<server ip>" An unknown connection error occurred. (The request failed because of a connection failure" So i tried …

Read More »

Can’t change ASA enable password

I stumbled upon a strange sympthon, when i changed the enable password of one my ASA firewalls it would accept the config but when i used the newly set password i couldn’t log in. So why isn’t it changing the password?

Read More »

Exchange 2010 – Get Mailbox Database Mount status

Do you want to verify / check / see if you Mailbox Database is mounted or not? Just do a check with powershell! Open your Exchange Management Shell and use a combination of Get-MailboxDatabase with the -status option and you find the Mount-status (True/False) in Mounted attribute. Put that all together in one command, you probably want something like : Get-MailboxDatabase …

Read More »

Exchange 2010 – Get available free space in mailbox database

The Exchange mailbox database is always growing and when people say they cleanup you don’t see any changes in the mailbox database size (even not after the x days of the deleted item retention settings). You can see how much free space or white space there is in you mailbox database with a simple powershell command. Open your Exchange Management Shell and …

Read More »

Eventid 1060 – Terminal Services User Home Directory was not set

Eventid 1060 (source:TerminalServices-RemoteConnectionManager) is logged in the System logs with the following error: The Terminal Services User Home Directory was not set because the path specified does not exist or not accessible. The default Home Directory Path was used instead. I checked the following: Does the user have a connected homedirectory is the RDS Session? Yes, driveletter is connected and path …

Read More »

Howto open your Internet Explorer window maximized

A little howto blogpost: Open your Internet Explorer window maximized Windows can remember how you closed your Internet Explorer window, but what if you want to open Internet Explorer maximized everytime you use it? Simple! Create a new shortcut to C:\Program Files\Internet Explorer\iexplore.exe Name it Internet Explorer and save it. Now go to the properties of you newly created shortcut …

Read More »

Remove / Unpin Server Manager icon from taskbar

By default every user will get the Server Manager icon on his or her taskbar when logging on to the RDS server 2012. This is very annoying because users don’t want to see any icons they can’t use. Administrator do like to have those icons pinned on the taskbar.

Read More »

Remove / unpin PowerShell icon from taskbar

By default every user will get the powershell icon on his or her taskbar when logging on to the RDS server 2012. This is very annoying because users don’t want to see any icons they can’t use. Administrator do like to have those icons pinned on the taskbar.

Read More »

Show Computer icon on Desktop

Windows 2008R2 gives the user a clean desktop, so the computer icon is nowhere to find and since now all users now the keyboard shortcut ( WINkey+e ) … let’s put the icon back on the desktop.

Read More »

Cisco logging shows uptime instead of timestamp

On some cisco devices when you are connected to the console or view the logfile (show logging) you get an output with the uptime of your device. For example: 1y35w: %LINK-3-UPDOWN: Interface GigabitEthernet2/0/4, changed state to up This switch has been up for 1 year and 35 weeks. Your config propably set like: service timestamps debug uptime service timestamps log …

Read More »

Exchange 2010 – Export all SMTP email addresses to file

This Powershell script is very helpful if you want to have all email addresses in the Exchange organization. Save the following script to a .ps1 file and execute from Exchange Powershell: cls write-host "`nSMTP Address export to file `n`n`n" write-host "Where do you want to store the export-file? (c:\smtpexport.csv)`n`n" $location = read-host "enter path/filename" Get-Mailbox -ResultSize Unlimited | Select-Object DisplayName,ServerName,PrimarySmtpAddress,@{Name=“EmailAddresses”;Expression={$_.EmailAddresses …

Read More »

RDS 2008R2 Basic Machine Policy

When you are deploying your RDS servers you probably (like me) want to make everything managable from a single point. So i don’t like to make a lot of changes to the local system by hand, but i prefer to set them with the use of a Group Policy. In this case a Machine Policy

Read More »