Skip to main content
Photography by Michael Angelo, angelo consulting Co.  IT Services, Network Design, file server installation, Office Automation, Computer hardware Upgrades, Network management, system backup and recovery, network security, Michael Angelo photographer art a

Michael Angelo Consulting Co. (609) 641-6392 | NJ Computer Networking and Repair

Go Search
Home
Photo Blog
Documents and Lists
Support
Photography
Help
Golf Courses
  
Michael Angelo Consulting Co. (609) 641-6392 | NJ Computer Networking and Repair > Sharepoint 2.0 Links  

Sharepoint 2.0 Links

Modify settings and columns
Links to good sharepoint tips I find on the WEB.  Some links take you away from this site.
  
View: 
EditCommentsFilter
 
Drag an item from s SharePoint calendar to your Outlook calendar to make a copy of the event in your calendar
Drag an item from the SharePoint calendar to your own personal calendar to make a copy of the event in your calendar.
 
Data Storage Design, Backup, and Restore for Windows SharePoint Services
This white paper describes the way the Internet Platform and Operations group at Microsoft configured Microsoft Windows SharePoint Services server farms to publicly host Windows SharePoint Services (Beta). This is the second of four papers that describe the Windows SharePoint Services Beta hosting experience.

The configuration and best practices outlined in this paper may be of use to anyone deploying Windows SharePoint Services (WSS) in a hosting scenario, for example, Internet service providers. This paper outlines the data storage solution — including the hardware environment and RAID configuration — and the database back up and restore procedures for this deployment. For more detailed descriptions and steps for backup and restore scenarios, see the Windows SharePoint Services Administrator's Guide.
 
Backup and Restore Options for Windows SharePoint Services
You can back up and restore data for Windows SharePoint Services by using the following methods:
 
Backing Up and Restoring Web Sites Created with Windows SharePoint Services
Summary
When considering what method to use for backing up or moving a Web site created with Windows® SharePoint™ Services, it is necessary to evaluate such factors as whether administrative access to the Web server is required, whether security and permissions are backed up and restored, and whether site structure and content are backed up and restored. Based on your unique requirements, this white paper will help you determine which tools you should use to make backing up and moving Web sites create with Windows SharePoint Services.

Included in this Document:

• Stand-alone and server farm environments
 
• Databases and Windows SharePoint Services
 
• Moving vs. backing up and restoring
 
• FrontPage 2003 backup and restore Web site features
 
Making Site Templates Available in Other Site Collections
Site templates are automatically available on the Template Selection page for all sites created in the same site collection. However, you can extend that availability to all site collections on the server by using the Windows SharePoint Services Stsadm.exe tool.

First create a new site template as outlined at the beginning of this section. Next, browse to the site template gallery by clicking Site Settings, and then click Go to Site Administration in the Administration section of the Site Settings page. Click Manage site template gallery in the Site Collection Galleries section of the Top-level Site Administration page to open the Site Template Catalog page. Click the name of the template you want to make available to all of the site collections on the server. When the File Download dialog box opens, click Save. Browse to the location on your hard drive or network drive to which you want to save the template, such as c:\sitename.stp, and then click Save. The template is now saved in the location you specified.
 
To add to the global catalog, you would run the command line:
 
stsadm -o addtemplate -filename template.fwp -title "Custom Template" -description "Template Description"
 
or  if you saved the file in c:\temp run the command line
 
stsadm -o addtemplate -filename c:\temp\template.fwp -title "Custom Template" -description "Template Description"
 
Now restart Internet Information Services (IIS) by typing iisreset at the command prompt. The site template is now available on the Template Selection pages in all of the site collections on the server.

Note: If you are creating a site from this template with code then you need to specify wild card inclusion with this command
 
stsadm -o addpath -url http://SERVERNAME/* -type wildcardinclusion
 
Customizing the Data View Web Part in FrontPage 2003
Learn how to customize lists in Microsoft Windows SharePoint Services by using the Data View Web Part in Microsoft Office FrontPage 2003.
 
Validating Form Fields Using JavaScript in FrontPage
Learn how validate HTML form fields using JavaScript in Microsoft Office FrontPage 2003. This article assumes a general understanding of HTML and JavaScript.
 
Use Windows SharePoint Services as a Platform for Building Collaborative Applications
This article discusses:
SharePoint architecture
Configuration and content databases
SharePoint integration with IIS 6.0 and ASP.NET
Site collections and virtual servers
Administration of WSS and SPS
 
Microsoft Outlook 2003 Integration with SharePoint Products and Technologies
This is a sample chapter from the Microsoft SharePoint Products and Technologies Resource Kit. You can obtain the complete resource kit (ISBN 0-7356-1881-X), which includes a companion CD-ROM, from Microsoft Press.
 
Collaborate with Office 2003 Editions and Windows SharePoint Services
On This Page
 Document Workspaces
 Meeting Workspaces
 Shared Workspace Task Pane
 InfoPath and SharePoint Integration
 Additional Features of Office 2003 Editions Programs
 
Collutions WEB Site
Best FAQ
 
Microsoft SharePoint Assistance Center
Assistance Center for Microsoft SharePoint Products and Technologies focuses on the Version 2003 Sharepoint products.
 
Windows Sharepoint V2 Administrators Guide
This is for Windows Sharepoint Services 2.0
 
Managing a Site Collection Web Part Gallery
Make a Web Part available in the Web Part gallery
On a top-level Web site, click Site Settings.
Under Administration, click Go to Site Administration.
Under Site Collection Galleries, click Manage Web Part gallery.
On the Web Part Gallery page, click New Web Part.
Select the check box next to the Web Parts you want to include in the gallery, and then click Populate Gallery.
 
SHAREPOINT PROGRAMMING
 
HOWTO: Change the ID of an IIS Website
Thursday, November 02, 2006
HOWTO: Change the ID of an IIS Website

Question:
Hello,

When I install Sharepoint Services, it creates a web site with an identifier. (Ex. ID 4).

I need to change that ID for another one. So I use this command :

cscript adsutil.vbs move w3svc/4 w3svc/4243.
It does the trick...

But, when I look in IIS I see that the site is stopped and I have this error in the event logs:

Event Type:           Error Event Source:         W3SVC Event Category:       None Event ID:             1007 Date:                 2006-10-25 Time:                 13:19:46 User:                 N/A Computer:             U1U206V Description: Cannot register the URL prefix 'http://*:24051/' for site '42'. The necessary network binding may already be in use. The site has been deactivated.  The data field contains the error number. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. Data: 0000: b7 00 07 80               ·..€ If I start the site manually, the site starts fine with no errors.

I just want to know if there's a way to not receive this error message when I change the ID of my site.

Can someone confirm that?

Or is there another way to do it to prevent errors?

Thx in advance for your help.

Answer:
The reason you get that error event when you MOVE a running website is due to how ADSUTIL.VBS MOVE works. You can treat the MOVE operation as a non-atomic COPY-then-DELETE... because it is designed to move arbitrary metabase nodes (for example, one vdir to another vdir in a different tree hierarchy).

Thus, when you use it to move from website ID 4 to website ID 42, what happens is this:

The entire metabase node under website ID 4 is copied to website node with ID 42

Since website ID 4 is running and website node with ID 42 is a website, website ID 42 also attempts to run

However, since both website nodes are duplicates and have the exact same bindings, the new website ID 42 cannot start due to duplicate bindings and trigger the error event

After website ID 42 finishes copying, node ID 4 is deleted

But website ID 42 has already failed to start; there is no state change here

The key is to STOP the source website ID prior to executing the MOVE. In that case, there will be no duplicate bindings simultaneously running during the COPY-the-DELETE, and one will not see the error event.



CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs STOP_SERVER W3SVC/4CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs MOVE W3SVC/4 W3SVC/42CSCRIPT %SYSTEMDRIVE%\Inetpub\AdminScripts\adsutil.vbs START_SERVER W3SVC/42//David


Posted by David Wang at 11/02/2006 12:05:00 AM