SRM 5.1 not supported
May 17, 2013 Leave a comment
SRM 5.1.0 is not supported in Server 2012 , ensure that you download 5.1u1 as pervious versions are not compatible.
IT Technical Information for Everyone
May 17, 2013 Leave a comment
SRM 5.1.0 is not supported in Server 2012 , ensure that you download 5.1u1 as pervious versions are not compatible.
May 16, 2013 Leave a comment
Just a quick post on how to connect to Office365 Microsoft Exchange online:
Download and install PowerShell for office 365
Windows Azure Active Directory Module for Windows PowerShell (64-bit version)
Windows Azure Active Directory Module for Windows PowerShell (32-bit version)
Open Azure PowerShell:
$Cred = Get-Credential
Import-Module MSOnline Set-ExecutionPolicy remotesigned Connect-MsolService -Credential $cred $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $Cred -Authentication Basic -AllowRedirection
Import-PSSession $Session
Once finished with the session you can disconnect using the following:
Remove-PSSession $Session
May 2, 2013 9 Comments
When carrying out maintenance on Vcenter it is important to disable Enable Host Monitoring.
You can also configure advanced isolation response address’s. for more information, please see VMware’s support document :
May 1, 2013 Leave a comment
As Netsh Firewall commands are now depreciated , I have written a PowerShell script for use with deploying SQL or accessing remote instances.
Set-ExecutionPolicy -ExecutionPolicyRemoteSigned #Enabling SQL Server Ports New-NetFirewallRule -DisplayName “SQL Server” -Direction Inbound –Protocol TCP –LocalPort 1433 -Action allow New-NetFirewallRule -DisplayName “SQL Admin Connection” -Direction Inbound –Protocol TCP –LocalPort 1434 -Action allow New-NetFirewallRule -DisplayName “SQL Service Broker” -Direction Inbound –Protocol TCP –LocalPort 4022 -Action allow New-NetFirewallRule -DisplayName “SQL Debugger/RPC” -Direction Inbound –Protocol TCP –LocalPort 135 -Action allow #Enabling SQL Analysis Ports New-NetFirewallRule -DisplayName “SQL Analysis Services” -Direction Inbound –Protocol TCP –LocalPort 2383 -Action allow New-NetFirewallRule -DisplayName “SQL Browser” -Direction Inbound –Protocol TCP –LocalPort 2382 -Action allow #Enabling Misc. Applications New-NetFirewallRule -DisplayName “HTTP” -Direction Inbound –Protocol TCP –LocalPort 80 -Action allow New-NetFirewallRule -DisplayName “SSL” -Direction Inbound –Protocol TCP –LocalPort 443 -Action allow New-NetFirewallRule -DisplayName “SQL Server Browse Button Service” -Direction Inbound –Protocol UDP –LocalPort 1433 -Action allow #Enable Windows Firewall Set-NetFirewallProfile -DefaultInboundAction Block -DefaultOutboundAction Allow -NotifyOnListen True -AllowUnicastResponseToMulticast True
April 30, 2013 Leave a comment
Finally Microsoft have released the full Exchange 2013 Deployment Guide.
April 28, 2013 Leave a comment
LoadGen is a simulation tool used to simulate user activity to test the performance of an exchange environment. This is great for testing client performance.
http://www.microsoft.com/en-us/download/details.aspx?id=20322
April 28, 2013 Leave a comment
Jetstress is a great tool for testing and validating MS Exchange 2010 storage performace when using virtualisation.
http://www.microsoft.com/en-gb/download/details.aspx?id=4167
April 24, 2013 Leave a comment
After installing Vcenter on a server 2012 I received the following message:
To fix this you will need to edit the registry:
\System\CurrentControlSet\Services\vpxd and the Open the DependOnService key and remove ProtectedStorage from the list
Remove the ProtectedStorage from the list , click ok and exit out of the registry.
Reboot the server and Vcenter should start.