Alexander’s Blog

November 26, 2010

SharePoint Server 2010 Poster-Size Technical Diagrams

by @ 10:58 am. Filed under SharePoint, Training

Microsoft offers some really nice technical diagrams for SharePoint Server 2010. Many of these resources are visual representations of recommended solutions. They include poster-sized documents available in formats including Microsoft Office Visio 2007 or Microsoft Visio 2010 files (.vsd), PDF files, and XPS files.

Models are 34-by-44-inch posters that detail a specific technical area. These models are intended to be used with corresponding articles on TechNet. These models are created by using Office Visio 2007. You can modify the Visio files to illustrate how you plan to incorporate Microsoft SharePoint 2010 Products in your own environment.

The technical diagrams include the following. I have included links to the PDF files but as I mentioned above, you can also get these posters in Visio and XPS formats.

  1. Design Sample: Corporate Portal with Classic Authentication
  2. Design Sample: Corporate Portal with Claims-based Authentication
  3. SharePoint 2010 Products Deployment
  4. Services in SharePoint 2010 Products
  5. Cross-farm Services in SharePoint 2010 Products
  6. Topologies for SharePoint Server 2010
  7. Extranet Topologies for SharePoint 2010 Products
  8. Hosting Environments in SharePoint 2010 Products
  9. Search Technologies for SharePoint 2010 Products
  10. Search Environment Planning for Microsoft SharePoint Server 2010
  11. Search Architectures for Microsoft SharePoint Server 2010
  12. Design Search Architectures for Microsoft SharePoint Server 2010
  13. Business Connectivity Services Model
  14. Content Deployment in SharePoint Server 2010
  15. Microsoft SharePoint Server 2010 Upgrade Planning
  16. Microsoft SharePoint Server 2010 Upgrade Approaches
  17. Microsoft SharePoint Server 2010 — Test Your Upgrade Process
  18. Microsoft SharePoint Server 2010 — Services Upgrade
  19. Microsoft SharePoint Server 2010 — Upgrading Parent and Child Farms
  20. Getting started with Business Intelligence in SharePoint Server 2010
  21. Databases That Support SharePoint 2010 Products
  22. SharePoint 2010 Products: Virtualization Process
  23. Governance for SharePoint Server 2010

Tips for Printing Posters

If you have a plotter, you can print these posters in their full size. If you don’t have plotter, use the following steps to print on smaller paper.

Print posters on smaller paper

  1. Open the poster in Visio.
  2. On the File menu, click Page Setup.
  3. On the Print Setup tab, in the Printer paper section, select the size of paper you want to print on.
  4. On the Print Setup tab, in the Print zoom section, click Fit to, and then enter 1 sheet across by 1 sheet down.
  5. On the Page Size tab, click Size to fit drawing contents, and then click OK.
  6. On the File menu, click Print.

If you are interested in Visio or XPS formats of these technical drawings then click here.

November 24, 2010

How to Install Telnet Client on Windows Server 2008 R2, Windows 7, or Vista

by @ 10:18 am. Filed under Remote Connectivity, Tips & Tricks, Windows 2008, Windows 7, Windows Vista

Telnet Client is not installed by default on Windows 7, Windows Server 2008 R2, Windows Vista, or Windows Server 2008. The procedures to install Telnet Client vary based on the operating system you are using. Microsoft has documented the following instructions on TechNet in this article.

To install Telnet Client by using a command line.

  1. Open a command prompt window. Click Start, type cmd in the Start Search box, and then press ENTER.
  2. Type the following command: pkgmgr /iu:”TelnetClient”.
  3. If the User Account Control dialog box appears, confirm that the action it displays is what you want, and then click Continue.
  4. When the command prompt appears again, the installation is complete.

To install Telnet Client on Windows Server 2008 R2 or Windows Server 2008

  1. Start Server Manager. Click Start, right-click Computer, and then click Manage.
  2. If the User Account Control dialog box appears, confirm that the action it displays is what you want, and then click Continue.
  3. In the Features Summary section, click Add features.
  4. In the Add Features Wizard, select Telnet Client, and then click Next.
  5. On the Confirm Installation Options page, click Install.
  6. When installation finishes, on the Installation Results page, click Close.

To install Telnet Client on Windows 7 or Windows Vista

  1. Click Start, and then click Control Panel.
  2. On the Control Panel Home page, click Programs.
  3. In the Programs and Features section, click Turn Windows features on or off.
  4. If the User Account Control dialog box appears, confirm that the action it displays is what you want, and then click Continue.
  5. In the Windows Features list, select Telnet Client, and then click OK.

November 21, 2010

Granular Backups and Restores in SharePoint 2010

by @ 8:36 am. Filed under SharePoint, Tips & Tricks

You can backup and restore either a complete Site Collection or individual Sites, either using the Central Administration’s granular backup/restore feature or with the PowerShell cmdlets. In this article I will offer the details for both methods. Let’s get right to it.

Backup Up Site Collection Using Central Administration

Go to Central Administration -> Backup and Restore -> Granular Backup -> Perform a site collection backup.

Backup Site Collection Using PowerShell

Use the following PowerShell syntax to backup a Site Collection.

backup-spsite -identity Site_URL -path \\server\share\filename.bak

For example:

backup-spsite -identity http://seattlepro.com -path \\SharePoint\Backups\SeattlePro.bak

Restore a Site Collection Using Central Administration

There is no option in Central Administration to perform a granular restore of a Site Collection. You must use PowerShell to restore a Site Collection.

Restore a Site Collection Using PowerShell

To restore a Site Collection use the restore-spsite cmdlet. This will allow you to restore Site Collections that were backed up either using Central Administration’s Perform a site collection backup link, or were backed up using backup-spsite cmdlet. Here’s the syntax.

restore-spsite -identity Site_URL -path \\server\share\filename.bak

For example:

restore-spsite -identity http://seattlepro.com -path \\SharePoint\Backups\SeattlePro.bak

Export a Site Using Central Administration

Go to Central Administration -> Backup and Restore -> Granular Backup -> Export a site or list.

Export a Site Using PowerShell

To export a SharePoint 2010 Site, Library or a List, use the export-spweb cmdlet. Here’s the syntax.

export-spweb -identity Site_URL -path \\server\share\filename.cmp

For example:

export-spweb -identity http://extranet.seattlepro.com/microsoft -path \\SharePoint\Backups\Extranet.cmp

Import a Site Using PowerShell

Use import-spweb cmdlet to restore a SharePoint 2010 site, library or a list that was exported either in Central Administration with export site or list option, or with export-spweb cmdlet.

To import a site called SeattlePro located at http://extranet.microsoft.com/seattlepro first make sure that the site exists with the same template that was exported (e.g. a Team Site template). You can’t use a blank template to import a site that used a Team Site template. If import fails, look in the import log file. It will tell you which template the exported site used.

Cannot import site. The exported site is based on the template CMSPUBLISHING#0 but the destination site is based on the template STS#0. You can import sites only into sites that are based on same template as the exported site.

You can lookup information about the template numbers here. CMSPUBLISHING#0 is a Publishing Site template, while STS#0 is a Team Site template. Recreate the site with the same template and then import an exported site using this PowerShell cmdlet.

import-spweb -identity URL_for_Imported_Site -path \\servername\sharename\filename.cmp

For example:

import-spweb -identity http://extranet.seattlepro.com/microsoft -path \\SharePoint\Backups\Microsoft.cmp

Granular Backup Job Status

To check the status of your backup job, go to Central Administration -> Backup and Restore -> Granular Backup ->Check granular backup job status, or use the following URL.

http://Server:Port#/_admin/SiteBackupOrExportStatus.aspx

For example:

http://SharePoint:5678/_admin/SiteBackupOrExportStatus.aspx

Summary

To restore a site collection that was backed up with either Central Administration’s “Perform a site collection backup” option, or using backup-spsite cmdlet, use restore-spsite cmdlet.

To restore a Site, Library or a List that was exported either in Central Administration with “Export a site or list” option, or with export-spweb cmdlet, use import-spweb cmdlet.


Copyright ©2010 Zubair Alexander. All rights reserved.

November 18, 2010

Missing Save Site as Template Option in SharePoint 2010

by @ 10:08 am. Filed under SharePoint, Tips & Tricks

If you are trying to save a site in SharePoint Server 2010 and you don’t see the option for “Save site as template” it is likely because the site has the publishing feature turned on. You have a couple of options to save a site as a template if the site uses the publishing feature.

Option 1

Use the following syntax to save a site as a template, even if it has the publishing feature turned on:

http://site/subsite/_layouts/savetmpl.aspx

For example, http://www.seattlepro.com/training/_layouts/_savetmpl.aspx.

Option 2

1. Turn the publishing feature off. Go to Site Actions –> Site Settings –> Modify All Site Settings –> Site Administration –> Site Features. Deactivate SharePoint Server Publishing.

2. Save the site as a template.

3. If you create a site based on this template, just make sure you turn on the publishing feature after the site is created.

The option to Save site as template is available in the Site Actions section of Site Settings.

November 11, 2010

Operating System Market Share

by @ 9:23 pm. Filed under Apple/Macintosh, Linux/UNIX, News, Windows 7, Windows Vista, Windows XP

According to netmarket.com, here is the latest operating system market share breakdown. If it weren’t for Mac’s 5% market share, Windows (91.09%) would pretty much be the only OS used around the world. With all the press Linux gets, it’s practically non-existent at 0.86% and has almost the same market share as Android (0.27%)…..less than 1%. Keep in mind, Android is used on mobile devices and is not a desktop OS.

Out of the Windows operating systems, Windows XP is still the most widely used OS. However, Windows 7 is moving up pretty quickly and have already moved ahead of Windows Vista.

Windows XP = 60.03%

Windows 7 = 17.10%

Windows Vista = 13.35%

Mac OS X 10.6 = 2.72%

Mac OS X 10.5 = 1.67%

Java ME = 0.95%

Other = 4.02%

 

Contact E-mail | Terms of Use | Privacy Policy

Copyright © 2013 Zubair Alexander. All rights reserved.

Internal Links

Search Blog

Categories

Archives

November 2010
M T W T F S S
« Oct   Dec »
1234567
891011121314
15161718192021
22232425262728
2930  

RSS Feeds

TechGalaxy Visitors

24 queries. 0.504 seconds