You are here:   Home
Jun
09
2011

Exchange 2010 Mailbox Role Calculator 17.2

070710_1525_Fullfailove124_thumbThe Exchange Team publishes an update bringing it to version 17.2.

Bug fixes since version 16.5:

  • Database Copy Distribution fixes:
    • Prevented distribution calculation when Input sheet values are invalid; added row in header for counters for databases assigned to a server;

    • Added conditional formatting to highlight error/problem status messages in white text on red background;

    • Corrected the issue where Non-English operating system locales could not execute the database copy distribution macro;

    • Increased the performance of the Server Failure buttons;

    • Corrected an issue that prevented the Diskpart.ps1 script from working when there was only one server line present.

  • Updated comments for processor input section to help customers understand the correct value to enter for SPECInt2006 rate value when deploying Mailbox servers as guest machines;

  • Fixed CPU percentage calculation formula for lagged database copy servers to use the available megacycles for the Lagged Copy servers as opposed to the primary datacenter Mailbox servers;

  • Added 900GB capacity as an option for disk drives.

Read more...
 
Jun
08
2011

Determine the Number of Active Users on Exchange 2010 Client Access Servers with PowerShell

It's always good to know how many users might be affected by an taking a server down. The following PowerShell function will grab performance counter data from each server to determine the number of active OWA and RPC connections:


function Get-CASActiveUsers {
[CmdletBinding()]

param(
[Parameter(Position=0,
ParameterSetName="Value", Mandatory=$true)]

[String[]]$ComputerName,

[Parameter(Position=0, ParameterSetName="Pipeline",
ValueFromPipelineByPropertyName=$true,
Mandatory=$true)]

[String]$Name
)
process {
switch($PsCmdlet.ParameterSetName)
{
"Value" {$servers =
$ComputerName}
"Pipeline" {$servers =
$Name}
}
$servers |
%{
$RPC = Get-Counter "\MSExchange
RpcClientAccess\User Count"
-ComputerName $_

$OWA = Get-Counter "\MSExchange OWA\Current Unique Users" -ComputerName
$_
New-Object PSObject -Property
@{
Server =
$_
"RPC Client Access" =
$RPC.CounterSamples[0].CookedValue

"Outlook Web App" =
$OWA.CounterSamples[0].CookedValue

}
}
}
}

Just add the function to your shell session and when you run it, specify one or more server names using the -ComputerName parameter:

Get-CASActiveUsers -ComputerName cas1,cas2

The function is also written to support pipeline input, so you can pipe the Get-ClientAccessServer cmdlet to it as well:

Get-ClientAccessServer | Get-CASActiveUsers

It can take a few minutes before the values are updated as clients connect or disconnect.

 
Jun
07
2011

Citrix XenDesktop 5 using Hyper-V and SCVMM

In this video tutorial Trond Eirik Haavarstein shows you how to install and configure Citrix XenDesktop 5 (XD5) with Microsoft Hyper-V and System Center Virtual Machine Manager (SCVMM). The process is pretty straight forward if you do them in the right order.


 
Jun
07
2011

SCCM 2007 R2/R3 - Configuration of the WebDAV extensions in IIS on Windows Server 2008 R2

This small video shows how to quick and easy configure WebDAV extensions in IIS on Windows Server 2008 R2. These configurations are targeted for SCCM 2007 R2 / R3 deployment.

SCCM 2007 R2/R3 - Configuration of the WebDAV extensions in IIS from Misha Hanin on Vimeo.

 
Jun
06
2011

AppLocker Technical Documentation for Windows 7 and Windows Server 2008 R2

AppLocker in Microsoft Windows Server 2008 R2, Windows 7 Ultimate, and Windows 7 Enterprise helps administrators control which applications are allowed to run in their organizations. These documents provide technical guidance about understanding how AppLocker works and how to effectively plan and deploy AppLocker policies.

Read more...
 
Jun
06
2011

Learn about Hyper-V failover Clustering with StarWind HA shared storage

Live Webinar, Wednesday, June 8
During this session, Max Craft, StarWind's Senior Solutions Engineer will demonstrate how the highly available shared storage solution from StarWind allows users to eliminate downtime and ensure business continuity providing fault tolerant storage for Hyper-V failover cluster.

Click to register for 2:00 PM GMT (10:00 AM EDT):
https://www2.gotomeeting.com/register/605367731
Click to register for 2:00 PM EDT (6:00 PM GMT):
https://www2.gotomeeting.com/register/909172834

You can also read a "Hyper-V and HA Storage" White Paper, prepared by MVP Russ Kaufmann:

Read more...
 
StartPrev12345678910NextEnd

Hi, my name is Misha Hanin. I have served as an IT Network Administrator and IT Consultant for over 15 years. I have a number of certifications including CNE, Citrix CCA, VMWare VCP, MCP+I, MCSE, MCTS, MCITP Enterprise Messaging Administrator & MCITP Enterprise Administrator .

Microsoft presented me with the 2008 Microsoft® MVP Award (MVP) in Windows Server - Admin Frameworks! More...




Subscribe to CuruIT
Get tips, news and tutorials via RSS, Email or Twitter

Enter your email address:


Subscribe to my news feed for free Follow me on Twitter! Become a CuruIT fan on Facebook :) Become a CuruIT fan on YouTube :)