Tag Archives: Site Actions

Add, Edit, or Delete a Quick Launch Heading

SharePoint 2010 includes a Quick Launch on the side of site pages which contains links to lists and libraries on the site.

  • Login to your SharePoint site as the administrative account
  • Select Site Actions > Site Settings

11

  • Select Quick Launch under the Look and Feel column

 

 

 

22

  • Add a New Heading
  • Click New Heading

33

  • Enter the URL and a description for the heading

66

  • Click OK
  • Edit a Heading
  • Click the Edit button next to the heading

77

  • Update the URL and description for the heading

44

  • Click OK
  • Delete a Heading
  • Click the Edit button next to the heading

55

  • Click Delete
  • Click OK

Ref : Hosting

Edit, Move, or Delete a Quick Launch Link (SharePoint 2010)

SharePoint 2010 allows you to add custom links such as documents, sites, calendar events, and internet urls to the Quick Launch.

  • Login to your SharePoint site as the administrative account
  • Select Site Actions > Site Settings

1

  • Select Quick Launch under the Look and Feel column

2

  • Click the Edit button next to the link that you want to update 3

Edit the link

  • Make your changes to the link
  • Click OK

Move the Link

  • Choose the new heading you want the link to appear under
  • Click OK

Delete the Link

  • Click Delete
  • Click OK

Ref : Hosting

Change the Welcome Page / Homepage in SharePoint 2010 Programmatically

When exporting and importing sites throughout SharePoint 2010 that are upgraded sites from SharePoint 2007, you probably noticed that the homepage for the imported site is defaulted to SharePoint 2010′s wiki-style page at /SitePages/Home.aspx. However, until you start using these new pages you may want to revert or keep the homepage as the default.aspx page.

To do this manually, you need to go to Site Actions > Site Settings > Look and Feel > Welcome Page.

However, this Welcome Page link is only available for those sites where the Publishing feature is activated at the Site Collection and Site level.

This could be pretty tedious if you have to do this for every site in the web application. So, if you need to do this fast for multiple sites and don’t have direct access to the Welcome Page link, what do you do? <pausing for dramatic effect> You use Power-Shell!

Below is a script I created that will prompt to enter in the Web Application and Welcome Page and then loop through each site in the Web Application and set the Welcome Page. Save this as a .ps1 file and run it from the SharePoint 2010 Management Shell:

$webapp = Read-Host "Enter Web Application"

$welcomepage = Read-Host "Enter Welcome Page"

$webs = Get-SPSite -WebApplication

$webapp -Limit All | Get-SPWeb -Limit All

foreach ($web in $webs){

$rootFolder = $web.RootFolder

$rootFolder.WelcomePage = $welcomepage

Write-Host "Setting"$web.Title"homepage to"$welcomepage    $rootFolder.Update()

$web.Dispose()

}

Now, navigate back to a site and see that the homepage is now set to the given page!