Here is a good command to use if you want to find out the size of all your mailbox databases in Exchange 2010: Get-MailboxDatabase –Status | fl name, databasesize It should output something similar to this: You can simply copy and paste the above command into an Exchange 2010 PowerShell window and run. Hope this …
We came across an issue recently where we had an issue with our Hyper-V 2008 R2 server. The BOOTMGR file went missing on a reboot , all this was repaired by running Bootrec commands. After the above the Hyper-V server would boot up however none of the VM’s would start and came up with the …
We had an issue recently with one of our Windows 2008 R2 servers , where after reboot the server did not come back up and showed the following error “BOOTMGR is Missing” I fixed the by recreating the Boot Configuration Data Store. Insert 2008 R2 media and boot onto it Choose Repair and System Recovery …
A customer recently had an issue where the Microsoft Exchange Information Service and the Exchange Transport service would fail to start after a reboot. While investigating this issue, we noticed the following events in the Application log: Event Type: Error Event Source: Service Control Manager Event Category: None Event ID: 7022 Description: The FSCController …
Whilst running the SSRS on the Archive/ Monitoring Server I was getting the following error: an error occurred when deploying monitoring server reports. an underlying connection was closed. an unexpected error occurred on send The fix for me was to remove all binding from the Web Services URL and Report Manager URL in the …
Information Store and Microsoft Exchange Transport service do not start Automatically after a Reboot
We came across an issue recently on a Exchange 2007 server in regards to services not automatically started when the server was rebooted. After reviewing the event log post start up i found the following events. “Event Type: Error Event Source: Service Control Manager Event Category: None Event ID: 7022 Description: The FSCController service hung …
Here’s a few quick PowerShell commands that will allow you to Disable or Enable a Service and Start or Stop a particular service. To Enable a particular service run the following command. (Please Edit ServiceName to the desired service) Set-Service ServiceName -StartupType Automatic To Disable a particular service run the following command. Set-Service ServiceName -StartupType …
When using Forefront Protection for Exchange, a legitimate sender gets the following bounce back when trying to e-mail you: “550 5.7.1 :127.0.0.3:Client host … blocked using 88.blocklist.zap; Mail from IP banned. To request removal from this list please forward this message to delist.forefront@messaging.microsoft.com” If you are sure that the sender is legitimate and trusted, mail …
You receive the following error when installing Cumulative Update 2 for System Centre Service Manager SP1: “An error occurred while executing a custom action:_ExecuteSqlScripts” Solution: Add the service account to the sysadmin group in SQL
Just a quick command here to logoff remote machines via PowerShell “(gwmi win32_operatingsystem -ComputerName ComputerName -cred (get-credential)).Win32Shutdown(4)” This will log every user off the machine specified above.
