Enable CLR in Microsoft SQL Database
Login to the Database in SQL Management Studio.
Run the following query.
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO
Login to the Database in SQL Management Studio.
Run the following query.
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'clr enabled', 1;
GO
RECONFIGURE;
GO
I had an issue today where I couldn’t detect a HP R3000 UPS connected to a HP server serial port.
We tested it with 2 UPS’s, 2 different serial cables but still no joy. The HP Power manager software just kept saying it couldn’t detect a UPS and a red cross appeared.
In the end we discovered that the ILO was to blame.
To fix it, we connected to the ILO website and chose the administration tab.
Under the menu to the left, select settings and Access and then the options tab.
At the dropdown list for “serial command Line Interface Status” chose disabled and apply.
The ILO card needs to be restarted for changes to take effect. In order to restart it just go into network settings and change from DHCP to manual and back again and click apply.
Source : Kolltveit
esxcfg-firewall -q ntpClient
esxcfg-firewall -e ntpClient
esxcfg-firewall -q ntpClient
ntpdate -u servername
By default, ProcessExternalMeetingMessages is set to False on Microsoft Exchange Server 2010. The correct setting for BlackBerry Enterprise Server is True
Run this powershell to resolve the issue.
Get-Mailbox -Server "servername" -ResultSize Unlimited -Filter {RecipientTypeDetails -eq 'UserMailbox'} | Set-CalendarProcessing -ProcessExternalMeetingMessages $true
Griffin
DNS : 85.189.102.5
DNS : 85.189.39.5
SMTP :
Sky
DNS : 90.207.238.97
SMTP : smtp.tools.sky.com
In the previous versions of Exchange Server we cannot play with the mailbox rules limit that is only 32kb (http://support.microsoft.com/kb/886616). Using Exchange Server 2010 we can do that through Exchange Management Shell. Let’s see how to do that..
The cmdlet utilized to set up the mailbox is called set-mailbox:
Set-Mailbox
Let’s change the user Anne to 256KB limit using set-mailbox.
Set-Mailbox annec -RulesQuota:256KB
To Change a mailbox from one type to another in exchange 2007 and 2010 like below :-
User mailbox to shared mailbox
User mailbox to resource mailbox
Shared mailbox to user mailbox
Shared mailbox to resource mailbox
Resource mailbox to user mailbox
Resource mailbox to shared mailbox
Type the following in the exchange management shell.
Set-Mailbox ConfRoom1 -Type value
Where value is Regular, Room, Equipment, Shared.