Wednesday, April 29, 2009
Chinese Delivery Status Notifications In Outlook 2002
Get-TransportServer|Set-TransportServer -InternalDSNSendHtml $False
Monday, April 27, 2009
DFS and BackupExec
Friday, March 27, 2009
HyperV Client Access Via Remote Destop
Thursday, March 19, 2009
Exchange OWA Redirect
Exchange 2007
(script language="'JavaScript'")window.location='https://
Exchange 2000/2003
(script language="'JavaScript'")window.location='https://
This will allow redirection to the secured page for logon.
Wednesday, March 11, 2009
Speed Up Network Connections in Vista
netsh interface tcp show global
To disable these, issue the following commands:
netsh interface tcp set global autotuning=disabled
netsh interface tcp set global chimney=disabled
netsh interface tcp set global rss=disabled
To re-enable the original settings, issue:
netsh interface tcp set global autotuning=normal
netsh interface tcp set global chimney=enabled
netsh interface tcp set global rss=enabled
Note that to re-enable autotuning set it to normal.
Saturday, February 28, 2009
Grant Full Permissions to All mailboxes in Exchange 2007
Get-MailboxDatabase -Server
Once complete, restart the Exchange Information Store service for the settings to take effect.
Remove Disconnected Mailboxes In Exchange
Removing Disconnected mailboxes in exchange is now a multi-step process. The first part is to get a listing of the disconnected mailboxes so that the GUID of it can be obtained. Then, using this GUID and the name of the mailbox database, the second command is then executed to actually remove the mailbox
To list all disconnected mailboxes, issue the following command into the command shell:
Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
Then to actually remove the mailb0x issue:
Remove-Mailbox -Database
If you wish to remove all disconnected mailboxes at the same time, issue the following from the command shell to get a list of all users:
$users = Get-MailboxStatistics | where-object { $_.DisconnectDate -ne $null } | Select DisplayName,MailboxGuid
Next issue the following to remove all:
$users | ForEach { Remove-Mailbox -Database "Mailbox Database" -StoreMailboxIdentity $_.MailboxGuid -confirm:$false }