Monday, April 18, 2005

Sharepoint Backup and Restore

Here's an excellent article on backing up and restoring your SPS databases.

NOTE: The Sharepoint Backup and Restore Tool is in the /bin directory of your sharepoint web (i.e. c:\inetpub\wwwroot\sharepoint\bin).

Friday, April 15, 2005

Web Part Verification

This is an exellent article on testing web parts prior to deployment. Good information for those of us who like to crank out a quick part and move on to the next problem. And we wonder why our phones are always ringing...

Thursday, April 14, 2005

Sharepoint Branding

Here's a great article from Daniel McPherson on branding Sharepoint sites.

Sharepoint Adviser Live Conference

The Sharepoint Adviser Live Conference 2005 is being held June 12-16 in Las Vegas. I've never attended one of these events but the schedule and conference sessions look promising.

Tuesday, April 12, 2005

Smartpart Web Part Creator

For those of you who are a bit more technical, Jan Tielens has released version 1.0 of his Smartpart web part creator. Get it here.

Jan's promised some examples in the near future. Be sure to check Maxim Karpov's blog for more information on implementing Smartpart.

Thursday, April 07, 2005

Disabling Office Viewers for Document Library Items

Sharepoint users with Office 2003 installed on their desktop often complain about the items in document libraries opening in the Office viewer rather than the full application. To disable this behavior, open Word, go to Tools Options General and uncheck "Allow Starting in Reading Layout". This should force the document to open in full Word/Excel/PowerPoint.

Note that the document will still open in read-only mode. To edit the document and save a new version back to the document library, choose Edit from the drop-down menu for the item (proper permissions required).

What's New Webpart

Here's a neat little web part that shows the most recent additions to your Sharepoint portal. Useful for WSS sites and workspaces.

Note: You'll need access to the Sharepoint server to install this webpart using the stsadm tool. Refer to the readme for instructions.

Using ACT to Stress Test Sharepoint

Coming from a testing and performance measurement background, I can testify to the importance (and difficulty) of assessing the performance of a Sharepoint implementation prior to deployment. James Edelen has a great post on stress testing using Microsoft Application Center Test. Read it here.

While this doesn't address functionality or user-experience issues, it will give you a working data set for determining if your configuration is adequate for anticipated usage patterns.

TIP: Run your test case(s) iteratively after the basic install (to establish a baseline), then each time you make customizations to templates/site definitions, add lists and content, import documents, created custom web parts, etc. This way you'll know where your tipping point is and which features consume the most resources.

Tuesday, April 05, 2005

Sharepoint Portal Server Training Kit

Via John West's Blog:

Now Available: Microsoft Office SharePoint Portal Server 2003 End-User Training Kit

This kit has been specially designed to ensure that SharePoint Portal Server end-users can effectively use the capabilities of the product to better share information, collaborate with others and find relevant information and resources within their organization.

Keeping in mind the unique needs of beginners and advanced users, the kit provides easy to understand content that can be accessed either as a self-paced study guide or as a quick reference guide. While the kit is scoped to cover SharePoint Portal Server, it is also an effective tool for users of Windows SharePoint Services. The kit also provides illustrations of SharePoint integration with Outlook 2003, FrontPage 2003, and the research task pane in Office 2003 programs.

The kit contains demos that visually guide the user on how to perform various tasks. These demos can be viewed in an auto run mode where the user is visually guided through the various steps or can run in an interactive mode where the user is invited to perform the required action as a way to get hands-on learning on the particular task.

Topics covered are scenario based and include:

  • Effectively Collaborating on Projects
  • Conducting Effective Meetings
  • Managing Personal Files and Information
  • Finding and Connecting with Others
  • Navigating the Portal
  • Personalizing Your Sites
  • Configuring Access for Users and Groups
  • Advanced Searching
  • Connecting Web Parts

    There is also a two page quick reference card in PDF format that you can print out for your end users.

    The training kit is publicly available for download here

    It can be installed:
  • as a portal area in a SharePoint Portal Sever
  • as a set of web pages to an IIS server
  • to any PC with a browser as a set of HTML pages

  • Update: The install works best when you download it directly to the Sharepoint server.

    Update 2: When installing, enter the URL of your Sharepoint server in the Name field, minus the 'http://' prefix.

    Monday, April 04, 2005

    Modifying the Data Source for a Links Web Part

    The Links list in a Windows Sharepoint Services (WSS) site provides a convenient way to inclue a group of hyperlinks on any page; however, the Links web part is hard-coded to reference only this list. Users who wish to create a separate list of links have no easy way to add an additional Links web part to their pages that will display content from their new list. Fortunately, the Links web part can be modified using Frontpage 2003 to achieve the desired functionality.

    Each list in a WSS site has a specific database GUID associated with it. There appears to be no way to force the List web part to retrieve data from a different list in the web interface - you have to physically change the GUID embedded in the web part code. This requires you to edit the web part in Frontpage. If you're not used to working with ASP.NET code, don't worry - it's not all that tricky once you've done it a time or two.
    Here are the steps involved:

    1. Create the new list you want the web part to retrieve content from and add content to the list.
    2. Click the Modify Settings and Columns link.
    3. From the page URL in the browser address bar, cut and paste the portion of the URL in curly braces, including the braces (it should be near the end) into Notepad.
    4. Insert a new List web part on the main page.
    5. Edit the main page in Frontpage 2003.
    6. In design view, click on the new web part so it is highlighted with a dark yellow border.
    7. Switch to code view. The selection should be highlighted in black.
    8. Scroll down and find the following line:
    {GUID}http://schemas.microsoft.com/WebPart/v2/ListView">{GUID}
    9. Replace the content in the curly braces with the portion of the URL you pasted into Notepad.
    10. Save the page.
    Now the web part will refer to the correct list and adding new links will show up in both the original list and the new web part.

    Download this Tip as a PDF.