Archive

Archive for September, 2009

Creating a Shared Mailbox in Exchange 2007

September 28, 2009 µ Leave a comment

Open Exchange Management Shell and execute the New-Mailbox cmdlet using the following example as a template:
ps_shared_mailbox

New-Mailbox -Alias "MySharedMailbox" -Name "My Shared Mailbox" -Database "MAIL1\First Storage Group\Mailbox Database" -OrganizationalUnit "mikefrobbins.demo/My OU/Users/Mailbox" -Shared -UserPrincipalName "mysharedmailbox@mikefrobbins.demo"

The following cmdlet assigns full access for the mailbox to a group in Active Directory named “My Shared Mailbox Admins” which needs to exist in AD prior to executing this command:
ps_mailbox_rights

Get-Mailbox -Identity "My Shared Mailbox" | Add-MailboxPermission -User "My Shared Mailbox Admins" -AccessRights "FullAccess"

This cmdlet allows members of the “My Shared Mailbox Admins” group in Active Directory to be able to send email from the “mysharedmailbox@mikefrobbins.demo” email account:
ps_mailbox_sendas

Get-Mailbox -Identity "My Shared Mailbox" | Add-ADPermission -User "My Shared Mailbox Admins" -AccessRights: ReadProperty, WriteProperty -Properties "Personal Information" -ExtendedRights "Send-As"

Once these steps are completed, any AD user who is added to the “My Shared Mailbox Admins” group in AD will be able to open the “mysharedmailbox” and send email from this account.

µ

Categories: Exchange Server 2007

Remote Management of Hyper-V Server or Server Core

September 21, 2009 µ Leave a comment

Problem:
You receive an error Virtual Disk Manager “The RPC server is unavailable” when attempting to remotely manage Hyper-V Server 2008 or Windows Server 2008 Core Installation:
rpcserver

Solution:
Run the following command on the client and on the server:

netsh advfirewall firewall set rule group="Remote Volume Management" new enable=yes

You have the option of using the Server Configuration menu on the server side if your using Hyper-V Server 2008. Select option 4, Configure Remote Management:configmenu

Select option 1, Allow MMC Remote Management:
remotemanage

µ

Hyper-V Server 2008 R2 Server Configuration Menu

September 21, 2009 µ Leave a comment

Problem:
You’ve closed the Hyper-V Server 2008 R2 Server Configuration menu and need to re-open it:
closedsconfig

Solution:
The command to re-open this window has changed with the R2 release. The new command is sconfig.cmd, with the non-R2 version, the command was hvconfig.cmd. Start Windows Task Manager by pressing Ctrl & Shift & Esc. Click File>New Task:
taskmanager

Type cmd.exe /k C:\Windows\system32\sconfig.cmd and click ok:
sconfigcmd

You now have a new Server Configuration window:
configmenu

Simply entering sconfig.cmd in the command prompt window will work, but you’ll lose your command prompt window so it is a less than desirable solution.

µ