Browse by Tags

All Tags » devmsgteam » Exchange Management Shell (EMS)   (RSS)
Showing page 1 of 2 (12 total posts)
  • Exchange Management Shell : Changing DisplayName format “LastName, FirstName”

    As we know by default the Display Name of Exchange Mailboxes(Exchange Server 2007 SP2) is in the format of “Firstname Lastname”. I want to change this for the couple of existing mailboxes to “Lastname, Firstname” for one my customer – he preferred non-development stuff!! I tried to do the same using the Exchange Management Shell, which fits for my requirement: > Get-Mailbox “User Name” | Get-User | ?{ $_.Lastname -ne $null } | %{ $dispName=$_.LastName + “, ” + $_.FirstName ; set-mailbox $_.SamAccountName
    Posted to Le Café Central de DeVa (Weblog) by deva on September 30, 2009
    Filed under: Exchange Server 2007, cmdlet, Powershell, Exchange Management Shell (EMS), mailbox, DevMSGTeam, Exchange Programming
  • How to : Determine the version number, build number of Exchange Server 2007 using cmdlet?

    With continuation of my previous article , it just points out to find how we can get by using UI(User Interface like snap-in, MMC Console, ESM..etc)’s. This time, let me try something different with Exchange Server 2007 (i tried with Exchange Server 2007 SP1 RUx) with its powershell/cmdlet. In order to get the version number, i tried like this to obtain the attributes of the server, > Get-ExchangeServer | Select ExchangeVersion, AdminDisplayVersion This provides the ExchangeVersion and AdminDisplayVersion
    Posted to Le Café Central de DeVa (Weblog) by deva on July 29, 2009
    Filed under: Exchange Server 2007, cmdlet, Powershell, Exchange Management Shell (EMS), How to, DevMSGTeam, development, Exchange Programming, Service Pack, Build, version
  • Customizing OWA 2007 language settings

    With the continuation of the previous blogpost , today we’re going to see how we can use Microsoft Office Outlook Web Access or the Exchange Management Shell to configure language settings for Outlook Web Access in Microsoft Exchange Server 2007. Microsoft have provided various options to customize the OWA pages, contents/images/themes in a simpler way. As a part of that, we cam make sure that we can do the language setting for OWA, which determines the language of the Outlook Web Access logon page
    Posted to Le Café Central de DeVa (Weblog) by deva on March 2, 2009
    Filed under: Locale, Exchange Server 2007, Best Practices, cmdlet, Powershell, Exchange Management Shell (EMS), API Changes, Support Guidelines, Configure, mailbox, Errors, Customization, DevMSGTeam, development, OWA, Client Access Server (CAS), Forms Based Authentication, logon, identity, bulk, Language, Regional Settings
  • Migrating CDOEXM based custom applications

    As you know Collaboration Data Objects for Exchange Management or CDOEXM is used to create applications that manage Exchange servers, databases, public folders, and user mailboxes. It provides the fundamental Component Object Model (COM) classes and interfaces that are used to manage the Exchange store. From Exchange 2007 onwards… From Exchange Server 2007 onwards you can’t use the CDOEXM functionalities, because Exchange Server 2007 doesn’t include CDOEXM i.e., CDOEXM does not ship in and is not
    Posted to Le Café Central de DeVa (Weblog) by deva on January 21, 2009
    Filed under: Exchange Server 2007, de-emphasized features, Exchange Management Shell (EMS), API Changes, Migration, CDOEXM, design, DevMSGTeam, development, Exchange Server
  • Exchange Server 2007 : Getting Mailbox statistics using C#.Net & Exchange Powershell

    In this session, we will have a look about how to get the mailbox statistics information using from Exchange Server 2007 SP1 using C#.Net & Exchange Powershell. I tried the following code to get the mailbox statistics… 1: .... 2: //Create Runspaceconfiguraiton object 3: RunspaceConfiguration config = RunspaceConfiguration.Create(); 4: PSSnapInException snapEx = null ; 5:   6: //Add it to the Powershell SnapIn 7: PSSnapInInfo info = config.AddPSSnapIn( "Microsoft.Exchange.Management.PowerShell.Admin"
    Posted to Le Café Central de DeVa (Weblog) by deva on December 21, 2008
    Filed under: Exchange Web Services (EWS), Exchange Server 2007, Code Snippets, Powershell, Exchange Management Shell (EMS), Configure, mailbox, DevMSGTeam, Programming, development, C#
  • API's that are not included in Exchange Server 2007 ?

    When you migrated from Microsoft Exchange 2000 & 2003, where they provide several API's that are not included in Microsoft Exchange Server 2007. Please find the following API's that are not included in the Exchange Server 2007 environment & the recommended technologies to migrate to. APIs that are not included in Exchange 2007 API Status in Exchange 2007 Replacement Technology CDOEX De-emphasized but still supported. Exchange Web Services CDOEXM Not included in Exchange 2007. Microsoft Windows
    Posted to Le Café Central de DeVa (Weblog) by deva on October 28, 2008
    Filed under: WMI, Monitoring Event Sink, Exchange Web Services (EWS), Exchange Server 2007, Exchange Server 2003, Exchange Management Shell (EMS), API Changes, CDOEX, CDOEXM, EXOLEDB, WebDAV, Store Sink, SMTP Sink, DevMSGTeam, Programming, Public Folder, ASP.net, Web forms
  • Tutorial : Organizational Forms Library - Series # 2

    Can we create it programmatically? To create it programmatically using MAPI, we need to make use of CreateFolder() , the MAPI function. It is necessary to have very special privileges (obtained by opening the store with an EntryID created using IExchangeManageStore::CreateStoreEntryID()) to get it to work. Please refer the following KB to create Org. forms library programmatically. How to create Org. Forms Library in Exchange Server 2003 ? To create a new Organizational Form in Exchange Server 2003
    Posted to Le Café Central de DeVa (Weblog) by deva on October 22, 2008
    Filed under: Locale, Exchange Server 2007, Exchange Server 2003, cmdlet, Tutorials, Exchange Management Shell (EMS), Outlook 2007, MAPI, Outlook 2003, Configure, design, How to, Outlook Programming, C++, Troubleshooting, Customization, DevMSGTeam, Programming, Public Folder, Security, development, MAPI Property, permissions, EFORMS, Outlook Forms, Organizational Forms Library
  • Exchange Server 2007 - Help documents

    Microsoft Exchange Server 2007 SP1 Help This download contains a standalone version of Microsoft Exchange Server 2007 SP1 Help. Microsoft Exchange Server 2007 Service Pack 1 Shell Help This download contains the Microsoft Exchange Server 2007 Service Pack 1 (SP1) version of the Exchange Management Shell Help.
    Posted to Le Café Central de DeVa (Weblog) by deva on May 6, 2008
    Filed under: Exchange Server 2007, Tutorials, Exchange Management Shell (EMS), Help, DevMSGTeam
  • Powershell & cmdlet - In a Nutshell - Part 9 - Modifying Transport Agent using Set-TransportAgent cmdlet (Exchange Management Shell)

    Modifying Exchange Transport Agent For administer transport agents, we must use the Set-TransportAgent cmdlet (Exchange Management Shell). For its details syntax and parameters, please refer here . The following example shows how the priority of a sample agent for Exchange agent would be modified. You can use the Exchange Management Shell to modify the priority of an existing transport agent by using, Set-TransportAgent "Sample Agent for Exchange" -Priority 2 Note: To run the Set-TransportAgent cmdlet
    Posted to Le Café Central de DeVa (Weblog) by deva on January 10, 2008
    Filed under: Transport Agent, Exchange Web Services (EWS), Exchange Server 2007, cmdlet, Powershell, Tutorials, Exchange Management Shell (EMS), DevMSGTeam
  • Powershell & cmdlet - In a Nutshell - Part 8 - Configure deleted mailbox retention using Set-Mailboxdatabase cmdlet

    Now we'll discuss how to configure the deleted mailbox retention period in Exchange Server 2007 Run the following command in Exchange Management shell, Set-MailboxDatabase dbName -MailboxRetention 32.00:00:00 Here, dbname - specifies database name, 32.00:00:00 - specifies the retention period, i.e., the number of days, hours, minutes, and seconds required for it. By default, deleted mailboxes are retained for 30 days before they are purged from the mailbox database .
    Posted to Le Café Central de DeVa (Weblog) by deva on December 22, 2007
    Filed under: Exchange Server 2007, Code Snippets, cmdlet, Powershell, Tutorials, Exchange Management Shell (EMS), DevMSGTeam
1 2 Next >

© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Microsoft
Page view tracker