Tuesday, October 30, 2012
Managed and Crawl Properties
Automatically created managed properties in SharePoint Server 2013
http://technet.microsoft.com/en-us/library/jj613136(v=office.15).aspx
2010
Good Post on Management Properties for User Profile
http://www.sharepointsteve.com/2010/10/making-custom-user-profile-properties-searchable-in-sharepoint-2010/
Understanding Crawled Properties, Managed Properties and Full-text Index
http://searchunleashed.wordpress.com/2011/08/24/understanding-crawled-properties-managed-properties-and-full-text-index-part-1/
Powershell
http://consultingblogs.emc.com/mattlally/archive/2011/12/20/create-sharepoint-2010-search-crawl-and-managed-properties-using-powershell.aspx
Older
Anne Stenberg
Great Series of 7 posts on Crawled Properties http://blogs.technet.com/b/anneste/archive/2008/11/20/mystery-solved-crawled-properties-in-sharepoint-part-1.aspx
http://blogs.technet.com/b/anneste/archive/2008/11/25/mystery-solved-crawled-properties-in-sharepoint-part-2.aspx
http://blogs.technet.com/b/anneste/archive/2008/11/25/mystery-solved-crawled-properties-in-sharepoint-part-3.aspx
http://blogs.technet.com/b/anneste/archive/2008/11/25/mystery-solved-crawled-properties-in-sharepoint-part-4.aspx
http://blogs.technet.com/b/anneste/archive/2008/11/25/crawled-properties-in-sharepoint-part-part-5-mystery-solved.aspx
http://blogs.technet.com/b/anneste/archive/2008/11/25/mystery-solved-crawled-properties-in-sharepoint-part-5.aspx
http://blogs.technet.com/b/anneste/archive/2008/11/25/mystery-solved-crawled-properties-in-sharepoint-part-7.aspx
Thursday, October 18, 2012
SharePoint Authentication Issues
Redirection options in SharePoint
http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?List=56f96349-3bb6-4087-94f4-7f95ff4ca81f&ID=48
Reload Groups after Claims
http://www.binarywave.com/blogs/eshupps/Lists/Posts/Post.aspx?ID=261
Has anyone created a CNAME record to point to their SharePoint collection?
Kerberos configuration known issues (SharePoint Server 2010)
http://technet.microsoft.com/en-us/library/gg502606.aspx
Reporting Services 2008 in SharePoint Integrated Mode
http://www.wssdemo.com/Blog/archive/tags/Integration/default.aspx
"Do not use CNAME dns records and non default web ports when using Kerberos!"
Use A Records for SharePoint Sites When Using Kerberos
http://www.ofonesandzeros.com/2011/07/12/use-a-records-for-sharepoint-sites-when-using-kerberos/
Tuesday, October 16, 2012
How to fix broken images after mySite URL change in SharePoint 2010?
Reposted from Google Cache – original site failed load
Posted on January 27, 2012 By Norman Bauer
Here is a small PowerShell script to fix the pictureurl for all userprofiles after changing the mySite Url:
$mySiteWebapplicationUrl = "https://mysite.normanbauer.com/"
#current Url of your mySite website
$mySiteOldUrlValue = "http://mysitetest:80/"
#former Url where your pictures do not reside any more
$mySiteNewUrlValue = "https://mysite.normanbauer.com:443/"
#current Url where your images can be found now
$mySite = Get-SPSite $mySiteWebapplicationUrl
$SPServiceContext = Get-SPServiceContext $mySite
$userProfileManager = New-Object Microsoft.Office.Server.UserProfiles.UserProfileManager($SPServiceContext)
$userProfiles = $userProfileManager.GetEnumerator()
foreach ($userProfile in $userProfiles)
{
#if pictureurl is not empty replace the old url part with the new one
if ($userProfile["PictureURL"] -ne '')
{
$oldPictureUrl = $userProfile["PictureURL"].toString()
$newPictureUrl = $oldPictureUrl -Replace $mySiteOldUrlValue, $mySiteNewUrlValue
write-host "oldPictureUrl = " $oldPictureUrl " --> newPictureUrl = " $newPictureUrl
$userProfile["PictureURL"].Value = $newPictureUrl
$userProfile.Commit()
}
}
Monday, October 15, 2012
Manage SharePoint using Microsoft Management Console
So you love the mmc, here is a neat trick to add Central Administration SharePoint to your MMC. First note the URL you need to add to the MMC. In this case adding the url for central administration, just copy the URL for later use.
Start your MMC by typing mmc in Search programs and files textbox
Select File > Add\Remove Snap-in
Select Link to Web Address > Add
Type your URL or paste if copied earlier > Next
Give it a friendly name > Finish
Select OK after adding all the snap-ins
Select your new link and congrats
Friday, October 12, 2012
SharePoint 2013 First Look
LATEST UPDATES
Good Article on New Features
http://www.sharepointpromag.com/article/sharepoint-2013/sharepoint-2013-improved-features-cheat-sheet-145004
Office Reaches RTM! and downloaded from Technet!
http://blogs.office.com/b/office-news/archive/2012/10/11/office-reaches-rtm.aspx
http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=1035
Changes from 2010 to 2013 http://technet.microsoft.com/en-us/library/ff607742(v=office.15).aspx
SkyDrive Pro
Download
http://www.microsoft.com/en-us/download/details.aspx?id=39050
Good Overview
http://blogs.technet.com/b/uspartner_ts2team/archive/2013/01/08/explaining-skydrive-pro-cloud-storage-for-the-business-user.aspx
http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=1033
http://www.microsoft.com/en-us/download/search.aspx?q=sharepoint+preview+2013
Well the time is here.
In preparation I installed Windows Server 2012 and created both Windows 2008R2 SP1 VM and Windows Server 2012 VM full install and core install
Core Install
UPDATE – Here is server core 2012 – Hardest part is to get the remote management tools to communicate. I tried several options using the following links.
http://blogs.technet.com/b/wincat/archive/2012/05/02/what-needs-to-be-configured-to-do-remote-disk-management-of-a-server-core-installation-in-windows-server-2012-via-powershell.aspx
http://4sysops.com/archives/server-core-enhancements-in-windows-server-2012/
NOTE: Do you want to get rid of that annoying server manager in Windows Server 2012? Server Manager > Manage > Server Manager Properties and check the box
Using a fresh Win2012 Server I tried to mount the file as a virtual DVD with no luck. The file downloaded as an IMG file not ISO. First issue was an easy fix, just rename with an ISO extension.
A reboot is required during this process. I also noted that a reboot after is also required or you get an error when trying to install SharePoint 2013. I found the fastest way is using PowerShell just type shutdown /r /t 0
The splash screen appeared and just clicked to install the perquisites.
The file transfer above seemed to take forever as well as the SharePoint Products Configuration Wizard seen below.
If you get an error message installing the standalone version … Note that I have received an error with both win 2008R2 or Win 2012.
… you need to run the following manual psconfig with the appropriate switch. Appears that this is an oversight from Microsoft and more about this issue in the reference section from Tomblog After that runs successful, then start your configuration wizard (found in Start Menu 2008R2 or App in 2012
Using the GUI created a web application and site collection.
Time to Play with my first SharePoint 2013 Team Site – Good Luck
STSADM – not dead yet
New Features on My ToDo List
- Themes – New Theme Engine – Preview - no longer need PPT
- Web Content Management – Dreamweaver support – iframe
- Browser – Support IE 9/8 Firefox Chrome Safari (limited) – NO IE 7/6
- Mobile – Classic/Contemporary views – Push Notifications
- IPAD support
- Social – Micro-blogging #hashtags @mentions like
- Search - New content search web part add functions to old content web part – FQL syntax
http://nassharepoint.wordpress.com/2009/01/13/sharepoint-site-error-service-unavailable-http-error-503-the-service-is-unavailable/
References
http://www.ericharlan.com/Moss_SharePoint_2007_Blog/how-to-install-sharepoint-2013-a220.html
Issues
http://tomblog.insomniacminds.com/2012/07/17/sharepoint-2013-standalone-installation-issue/
Thursday, October 11, 2012
SharePoint 2013 Certification and Training
Big Changes! You must first get your MCSA Windows Server 2012
Microsoft Certified Solutions Expert - MCSE SharePoint
https://www.microsoft.com/en-us/learning/mcse-productivity-certification.aspx
Books
free eBook - What's new in SharePoint 2013
http://www.microsoft.com/en-us/download/details.aspx?id=35396
free eBook - install and configure SharePoint Server and Foundation
http://www.microsoft.com/en-us/download/details.aspx?id=30384
Highlights
MCSA Windows Server 2012 is a requirement
http://www.microsoft.com/learning/en/us/certification/cert-windows-server-MCSA.aspx
Certification will expire unless you take required continuing education
Lab Guides
http://www.microsoft.com/en-us/download/search.aspx?q=sharepoint+2013+lab+guide
Training
Explore SharePoint 2013
http://technet.microsoft.com/en-us/library/cc261970.aspx
SharePoint 2013 training for IT pros
http://technet.microsoft.com/en-us/sharepoint/fp123606.aspx
http://www.microsoft.com/en-us/download/details.aspx?id=30361 (all)
SharePoint 2013 training for developers
http://msdn.microsoft.com/en-US/sharepoint/fp123633 (thumbnails)
http://msdn.microsoft.com/en-US/sharepoint/fp123577
Tuesday, October 9, 2012
Alternative Address Mappings and More …
SharePoint 2010 - configuring URLs for Internet use (AAR, URL rewriting, alternate access mappings)
AAM Video http://technet.microsoft.com/en-us/sharepoint/ff679917.aspx
AAM and DNS http://blogs.technet.com/b/tothesharepoint/archive/2011/05/25/coordinating-urls-with-aam-and-dns.aspx
AAM and Search http://blogs.msdn.com/b/enterprisesearch/archive/2010/05/28/server-name-mapping-and-alternate-access-mapping-aam.aspx
AAM vs. Extend Web Application (good discussion)
Note that for the Default Zone use a FQDN