It seems the FTP site no longer exists and now the files are located on their Patches & Updates page.
http://www.corel.com/corel/pages/index.jsp?pgid=800161&ppid=300002
At the time of this writing, the files were released on January 31, 2013.
It seems the FTP site no longer exists and now the files are located on their Patches & Updates page.
http://www.corel.com/corel/pages/index.jsp?pgid=800161&ppid=300002
At the time of this writing, the files were released on January 31, 2013.
I recently had to update a web part’s zone id that existed on most pages throughout the SharePoint 2010 site. I wrote up this powershell script to address this. DISCLAIMER: Use at your own risk!
$site = new-object Microsoft.SharePoint.SPSite(“http://your_site”)
foreach($web in $site.AllWebs)
{
#Make sure you specify which page needs changes
$page = $web.GetFile(“default.aspx”)
$page.CheckOut()
$wpm = $web.GetLimitedWebPartManager($page.Url, [System.Web.UI.WebControls.WebParts.PersonalizationScope]::Shared)
#$wpm.WebParts | ft
$wp = $wpm.WebParts | Where-Object { $_.Title -eq “Page Tabs” }
#$wp.ZoneID | ft
$wp.ZoneID = “Header”
$wpm.SaveChanges($wp)
$page.CheckIn(“Update via PowerShell”,[Microsoft.SharePoint.SPCheckinType]::MajorCheckIn)
$wp.ZoneID | ft
}
$web.Close()
$site.Close()
I left the commented lines in since they can be helpful as well.
CodePlex has two great tools to query your SharePoint 2007 or 2010 search which return raw XML so you can see exactly what is going on in your results.
Fast Search For SharePoint MOSS 2010 Query Tool – Ok, they need to work on the title a bit and the background is just a terrible idea but the thing works for both FAST and Enterprise Search on 2010. It allows you to choose Scope, edit the Default Columns, and a lot more. It’s mostly intuitive to use. Just make sure to change your “Results Provider” to “SharePoint” if you’re using Enterprise instead of FAST.
SharePoint Search Service Tool – This is for SharePoint 2007 and works just as well as the previous one. It has less options but gets you your XML results quickly and edit the query as needed. Plus, a nice background!
I recently had to downgrade from SQL Server 2008 R2 Enterprise down to Standard with SharePoint 2010 Enterprise installed. It turned out to be surprisingly easy, thanks to this thread. One issue will likely come up. Search won’t work and you’ll get this error:
Database ‘[name]‘ cannot be started in this edition of SQL Server because part or all of object ‘MSSDocSdids’ is enabled with data compression or vardecimal storage format. Data compression and vardecimal storage format are only supported on SQL Server Enterprise Edition.
Unfortunately you’ll have to recreate search. This post references any issues with that. The same might be true for your Web Analytics Service Application with an error like this:
EVENT 5586: Database ‘WebAnalyticsDatabaseName’ cannot be started in this edition of SQL Server because it contains a partition function ‘DateIdPF’. Only Enterprise edition of SQL Server supports partitioning.
Nevertheless, here are the steps that worked for me. Be sure to follow them to the letter.
The whole process took less than two hours. Good stuff.
SharePoint 2013 screenshots of the Team Site and the Group Work site, a new template. More to come later.
SharePoint 2013 Preview was released so there’s a flood of info out there. Here is a sampling to get started:
Hardware and Software Requirements
Developer and Training Materials
Download SharePoint 2013 Preview
Powershell script for Prerequisites
Windows SharePoint Services: http://support.microsoft.com/kb/2598130
Microsoft Office SharePoint Server: http://support.microsoft.com/kb/2598129
Office 2007 Cumulative Updates for April 2012: http://support.microsoft.com/kb/2685445
SharePoint Foundation: http://support.microsoft.com/kb/2598321
SharePoint Server 2010: http://support.microsoft.com/kb/2598151
Project Server 2010: http://support.microsoft.com/kb/2598152
Office 2010 Cumulative Updates for April 2012: http://support.microsoft.com/kb/2685449
The next versions of Microsoft SharePoint, Office, and Exchange (dubbed version 15) are expected in early 2013 according to roadmap documents that have leaked to the web by Martin Visser, CEO of Meetro.
The roadmap can be seen here:
Check out Scott Hanselman’s blog post for the details. You can find the source on CodePlex .
Why didn’t I know about this before?
If you’re a Chrome user and wish to have very similar Fiddler functionality, it’s already built in. Just go to chrome://net-internals/ and you’ll see a large amount of data with the ability to export. It’s pretty nice!