Configuring Alternate Access Mapping in SharePoint 2010 using Windows PowerShell

Problem

In a previous tip on Configuring Alternate Access Mapping in SharePoint 2010, we've seen how to configure alternate access mapping for a SharePoint 2010 site using the Central Administration page. How do we do this task using Windows PowerShell instead?

Solution

Windows PowerShell is an extensible command-line shell and associated scripting language built on top of the .NET Framework v2.0. Being the standard scripting environment for almost all of the current Microsoft server products, it is essential for the SharePoint administrator to learn a few things about Windows PowerShell. And with the latest version of SharePoint comes the specific PowerShell cmdlets for managing and administering site collections, web applications, user permissions and anything that has something to do with SharePoint.  While they were written with the SQL Server DBA in mind, the concepts to get started with Windows PowerShell are the same.

To manage SharePoint using Windows PowerShell, you can launch the SharePoint 2010 Management Shell from the Start menu. Make sure that you run the management shell as administrator to perform administrative tasks.

 

You can learn more about the SharePoint-specific cmdlets by using the Get-Help cmdlet and passing it a wildcard with the value *-SP*. This is because the SharePoint-specific cmdlets have the SP prefix in the verb portion of the cmdlet.

There are more than 500 SharePoint-specific cmdlets so don't get overwhelmed. For configuring alternate access mappings, we will be using the following SharePoint-specific cmdlets

  • Get-SPAlternateURL
  • New-SPAlternateURL

The Get-SPAlternateURL cmdlet is used to retrieve all alternate URLs for a specific SharePoint web application. To know more about this specific cmdlet and it's usage, you can also use the Get-Help cmdlet.

 


Get-Help Get-SPAlternateURL -examples

From the previous tip, let's retrieve the list of all alternate URLs for the default SharePoint site that I have created - http://sharepoint1

 


Get-SPAlternateURL -WebApplication http://sharepoint1

Note that the SharePoint website does not have any other alternate URLs by default. To create an alternate access mapping for this SharePoint site so that internal users can use the corporateportal.testdomain.com URL to access the site, we will use the New-SPAlternateURL cmdlet. This cmdlet creates a new public or internal URL for the specified web application zone or resource. Again, to know more about this cmdlet and it's usage, we'll use the Get-Help cmdlet

 


Get-Help New-SPAlternateURL -examples

Let's use the format in the example to create the alternate access mapping. When prompted for a WebApplication parameter value, enter the URL for the web application that you want to apply an alternate URL for. In this example, I passed the parameter value http://sharepoint1

 


New-SPAlternateURL http://corporateportal.testdomain.com -Zone "Intranet"

To review if your changes have taken effect, you can re-run the Get-SPAlternateURL cmdlet. Notice that you now have a new alternate URL to access the http://sharepoint site

 


Get-SPAlternateURL -WebApplication http://sharepoint1

You can confirm this by checking the Alternate Access Mappings page in SharePoint Central Administration.

 

其他参考资料:

Refer to the Windows PowerShell for SharePoint Server 2010 on TechNet to learn more about the SharePoint-specific cmdlets

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值