<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Prashant Jadhav</title>
	<atom:link href="http://prashantlink.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://prashantlink.wordpress.com</link>
	<description>Microsoft Sharepoint, Web 2.0, Elearning, MLearning</description>
	<lastBuildDate>Tue, 04 Nov 2008 04:42:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='prashantlink.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Prashant Jadhav</title>
		<link>http://prashantlink.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://prashantlink.wordpress.com/osd.xml" title="Prashant Jadhav" />
	<atom:link rel='hub' href='http://prashantlink.wordpress.com/?pushpress=hub'/>
		<item>
		<title>What Great .NET Developers Ought To Know</title>
		<link>http://prashantlink.wordpress.com/2008/11/04/what-great-net-developers-ought-to-know/</link>
		<comments>http://prashantlink.wordpress.com/2008/11/04/what-great-net-developers-ought-to-know/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 04:42:11 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Microsoft Sharepoint]]></category>
		<category><![CDATA[.NET Developers]]></category>
		<category><![CDATA[Developers]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=96</guid>
		<description><![CDATA[Everyone who writes code Describe the difference between a Thread and a Process? What is a Windows Service and how does its lifecycle differ from a &#8220;standard&#8221; EXE? What is the maximum amount of memory any single process on Windows can address? Is this different than the maximum virtual memory for the system? How would [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=96&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Everyone who writes code</strong></p>
<ul>
<li>Describe the difference between a Thread and a Process?</li>
<li>What is a Windows Service and how does its lifecycle differ from a &#8220;standard&#8221; EXE?</li>
<li>What is the maximum amount of memory any single process on Windows can address? Is this different than the maximum virtual memory for the system? How would this affect a system design?</li>
<li>What is the difference between an EXE and a DLL?</li>
<li>What is strong-typing versus weak-typing? Which is preferred? Why?</li>
<li>Corillian&#8217;s product is a &#8220;Component Container.&#8221; Name at least 3 component containers that ship now with the Windows Server Family.</li>
<li>What is a PID? How is it useful when troubleshooting a system?</li>
<li>How many processes can listen on a single TCP/IP port?</li>
<li>What is the GAC? What problem does it solve?</li>
</ul>
<p><strong>Mid-Level .NET Developer</strong></p>
<ul>
<li>Describe the difference between Interface-oriented, Object-oriented and Aspect-oriented programming.</li>
<li>Describe what an Interface is and how it’s different from a Class.</li>
<li>What is Reflection?</li>
<li>What is the difference between XML Web Services using ASMX and .NET Remoting using SOAP?</li>
<li>Are the type system represented by XmlSchema and the CLS isomorphic?</li>
<li>Conceptually, what is the difference between early-binding and late-binding?</li>
<li>Is using Assembly.Load a static reference or dynamic reference?</li>
<li>When would using Assembly.LoadFrom or Assembly.LoadFile be appropriate?</li>
<li>What is an Asssembly Qualified Name? Is it a filename? How is it different?</li>
<li>Is this valid? Assembly.Load(&#8220;foo.dll&#8221;);</li>
<li>How is a strongly-named assembly different from one that isn’t strongly-named?</li>
<li>Can DateTimes be null?</li>
<li>What is the JIT? What is NGEN? What are limitations and benefits of each?</li>
<li>How does the generational garbage collector in the .NET CLR manage object lifetime? What is non-deterministic finalization?</li>
<li>What is the difference between Finalize() and Dispose()?</li>
<li>How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?</li>
<li>What does this useful command line do? tasklist /m &#8220;mscor*&#8221;</li>
<li>What is the difference between in-proc and out-of-proc?</li>
<li>What technology enables out-of-proc communication in .NET?</li>
<li>When you’re running a component within ASP.NET, what process is it running within on Windows XP? Windows 2000? Windows 2003?</li>
</ul>
<p><strong>Senior Developers/Architects</strong></p>
<ul>
<li>What’s wrong with a line like this? DateTime.Parse(myString);</li>
<li>What are PDBs? Where must they be located for debugging to work?</li>
<li>What is cyclomatic complexity and why is it important?</li>
<li>Write a standard lock() plus “double check” to create a critical section around a variable access.</li>
<li>What is FullTrust? Do GAC’ed assemblies have FullTrust?</li>
<li>What benefit does your code receive if you decorate it with attributes demanding specific Security permissions?</li>
<li>What does this do? gacutil /l | find /i &#8220;Corillian&#8221;</li>
<li>What does this do? sn -t foo.dll</li>
<li>What ports must be open for DCOM over a firewall? What is the purpose of Port 135?</li>
<li>Contrast OOP and SOA. What are tenets of each?</li>
<li>How does the XmlSerializer work? What ACL permissions does a process using it require?</li>
<li>Why is catch(Exception) almost always a bad idea?</li>
<li>What is the difference between Debug.Write and Trace.Write? When should each be used?</li>
<li>What is the difference between a Debug and Release build? Is there a significant speed difference? Why or why not?</li>
<li>Does JITting occur per-assembly or per-method? How does this affect the working set?</li>
<li>Contrast the use of an abstract base class against an interface?</li>
<li>What is the difference between a.Equals(b) and a == b?</li>
<li>In the context of a comparison, what is object identity versus object equivalence?</li>
<li>How would one do a deep copy in .NET?</li>
<li>Explain current thinking around IClonable.</li>
<li>What is boxing?</li>
<li>Is string a value type or a reference type?</li>
<li>What is the significance of the &#8220;PropertySpecified&#8221; pattern used by the XmlSerializer? What problem does it attempt to solve?</li>
<li>Why are out parameters a bad idea in .NET? Are they?</li>
<li>Can attributes be placed on specific parameters to a method? Why is this useful?</li>
</ul>
<p><strong>C# Component Developers</strong></p>
<ul>
<li>Juxtapose the use of override with new. What is shadowing?</li>
<li>Explain the use of virtual, sealed, override, and abstract.</li>
<li>Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d</li>
<li>Explain the differences between public, protected, private and internal.</li>
<li>What benefit do you get from using a Primary Interop Assembly (PIA)?</li>
<li>By what mechanism does NUnit know what methods to test?</li>
<li>What is the difference between: catch(Exception e){throw e;} and catch(Exception e){throw;}</li>
<li>What is the difference between typeof(foo) and myFoo.GetType()?</li>
<li>Explain what’s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?</li>
<li>What is <em>this</em>? Can this be used within a static method?</li>
</ul>
<p><strong>ASP.NET (UI) Developers</strong></p>
<ul>
<li>Describe how a browser-based Form POST becomes a Server-Side event like Button1_OnClick.</li>
<li>What is a PostBack?</li>
<li>What is ViewState? How is it encoded? Is it encrypted? Who uses ViewState?</li>
<li>What is the &lt;machinekey&gt; element and what two ASP.NET technologies is it used for?</li>
<li>What three Session State providers are available in ASP.NET 1.1? What are the pros and cons of each?</li>
<li>What is Web Gardening? How would using it affect a design?</li>
<li>Given one ASP.NET application, how many application objects does it have on a single proc box? A dual? A dual with Web Gardening enabled? How would this affect a design?</li>
<li>Are threads reused in ASP.NET between reqeusts? Does every HttpRequest get its own thread? Should you use Thread Local storage with ASP.NET?</li>
<li>Is the [ThreadStatic] attribute useful in ASP.NET? Are there side effects? Good or bad?</li>
<li>Give an example of how using an HttpHandler could simplify an existing design that serves Check Images from an .aspx page.</li>
<li>What kinds of events can an HttpModule subscribe to? What influence can they have on an implementation? What can be done without recompiling the ASP.NET Application?</li>
<li>Describe ways to present an arbitrary endpoint (URL) and route requests to that endpoint to ASP.NET.</li>
<li>Explain how cookies work. Give an example of Cookie abuse.</li>
<li>Explain the importance of HttpRequest.ValidateInput()?</li>
<li>What kind of data is passed via HTTP Headers?</li>
<li>Juxtapose the HTTP verbs GET and POST. What is HEAD?</li>
<li>Name and describe at least a half dozen HTTP Status Codes and what they express to the requesting client.</li>
<li>How does if-not-modified-since work? How can it be programmatically implemented with ASP.NET?<br />
Explain &lt;@OutputCache%&gt; and the usage of VaryByParam, VaryByHeader.</li>
<li>How does VaryByCustom work?</li>
<li>How would one implement ASP.NET HTML output caching, caching outgoing versions of pages generated via all values of q= except where q=5 (as in <a href="http://localhost/page.aspx?q=5"><strong><span style="color:#72412c;">http://localhost/page.aspx?q=5</span></strong></a>)?</li>
</ul>
<p><strong>Developers using XML</strong></p>
<ul>
<li>What is the purpose of XML Namespaces?</li>
<li>When is the DOM appropriate for use? When is it not? Are there size limitations?</li>
<li>What is the WS-I Basic Profile and why is it important?</li>
<li>Write a small XML document that uses a default namespace and a qualified (prefixed) namespace. Include elements from both namespace.</li>
<li>What is the one fundamental difference between Elements and Attributes?</li>
<li>What is the difference between Well-Formed XML and Valid XML?</li>
<li>How would you validate XML using .NET?</li>
<li>Why is this almost always a bad idea? When is it a good idea? myXmlDocument.SelectNodes(&#8220;//mynode&#8221;);</li>
<li>Describe the difference between pull-style parsers (XmlReader) and eventing-readers (Sax)</li>
<li>What is the difference between XPathDocument and XmlDocument? Describe situations where one should be used over the other.</li>
<li>What is the difference between an XML &#8220;Fragment&#8221; and an XML &#8220;Document.&#8221;</li>
<li>What does it meant to say “the canonical” form of XML?</li>
<li>Why is the XML InfoSet specification different from the Xml DOM? What does the InfoSet attempt to solve?</li>
<li>Contrast DTDs versus XSDs. What are their similarities and differences? Which is preferred and why?</li>
<li>Does System.Xml support DTDs? How?</li>
<li>Can any XML Schema be represented as an object graph? Vice versa?</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=96&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/11/04/what-great-net-developers-ought-to-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>What SharePoint Consultants Ought to Know</title>
		<link>http://prashantlink.wordpress.com/2008/11/04/what-sharepoint-consultants-ought-to-know/</link>
		<comments>http://prashantlink.wordpress.com/2008/11/04/what-sharepoint-consultants-ought-to-know/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 04:39:36 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Microsoft Sharepoint]]></category>
		<category><![CDATA[SharePoint consultant]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=94</guid>
		<description><![CDATA[Everyone who can spell SharePoint what is SharePoint? what is the difference between SharePoint Portal Server and Windows SharePoint Services? what is a document library? what is a meeting workspace? what is a document workspace? what is a web part? Mid-level SharePoint Consultant what is the difference between a document library and a form library? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=94&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em><strong>Everyone who can spell SharePoint</strong></em><em></em></p>
<ul>
<li>what is SharePoint?</li>
<li>what is the difference between SharePoint Portal Server and Windows SharePoint Services?</li>
<li>what is a document library?</li>
<li>what is a meeting workspace?</li>
<li>what is a document workspace?</li>
<li>what is a web part?</li>
</ul>
<p><em><strong>Mid-level SharePoint Consultant</strong></em></p>
<ul>
<li>what is the difference between a document library and a form library?</li>
<li>what is a web part zone?</li>
<li>how is security managed in SharePoint?</li>
<li>how are web parts developed?</li>
<li>what is a site definition?</li>
<li>what is a template?</li>
<li>how do you install web parts?</li>
<li>what is the difference between a site and a web?</li>
<li>what are the differences between web part page gallery, site gallery, virtual server gallery and online gallery?</li>
<li>what is the GAC?</li>
<li>what is a DWP?</li>
<li>what is CAML?</li>
<li>what are themes?</li>
<li>what is presence?</li>
<li>can web parts be connected? if so, how?</li>
<li>what is a personal view and what is a shared view?</li>
<li>what is an STP file?</li>
<li>what is an FWP file?</li>
<li>can you upload MP3&#8242;s to SharePoint?</li>
<li>how does SharePoint support MS Outlook integration?</li>
<li>how can you extend lists in SharePoint?</li>
<li>explain the document versioning in SharePoint document libraries</li>
</ul>
<p><em><strong>Senior SharePoint Consultant</strong></em></p>
<ul>
<li>where are web part resources contained?</li>
<li>what are the different installation methods for deploying web parts? and what are the pros/cons?</li>
<li>what is a ghosted/unghosted page?</li>
<li>how is site data stored?</li>
<li>where is metadata for a web stored?</li>
<li>what is an audience and describe the use?</li>
<li>what are the trust levels and what is the default trust associated with SharePoint?</li>
<li>what are the two logging mechanisms for usage statistics?</li>
<li>what functionality does owssup.dll provide for client side activities?</li>
<li>what is the difference between a site owner and a site administrator?</li>
<li>what is STSAdm and what can it be used for?</li>
<li>can WSS search subsites?</li>
<li>can you register alerts for users?</li>
<li>are PDFs searchable?</li>
</ul>
<p><em><strong>SharePoint Architect</strong></em></p>
<ul>
<li>what is a SharePoint farm?</li>
<li>describe a large deployment</li>
<li>how can you synchronize custom Active Directory attributes to SharePoint?</li>
<li>if it is anticipated that our organization would need to store 1 terrabyte of documents, what is the recommended configuration and storage requirement?</li>
<li>describe the implementation of SharePoint and Project Server</li>
<li>what are the BKMs for workflow and SharePoint?</li>
<li>explain how you would deploy SharePoint on an extranet</li>
<li>what is the BKM for maximum number of virtual servers configured for SharePoint on a single box?</li>
<li>what are the migration strategies for moving sites around?</li>
<li>what are the archiving strategies?</li>
<li>describe the search strategies</li>
<li>can you implement forms-based authentication with SharePoint?</li>
<li>describe how single sign-on works</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=94&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/11/04/what-sharepoint-consultants-ought-to-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>Free SharePoint Web Parts</title>
		<link>http://prashantlink.wordpress.com/2008/11/04/free-sharepoint-web-parts/</link>
		<comments>http://prashantlink.wordpress.com/2008/11/04/free-sharepoint-web-parts/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 03:14:01 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Microsoft Sharepoint]]></category>
		<category><![CDATA[Free Web Parts]]></category>
		<category><![CDATA[free webparts]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Web Parts]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=92</guid>
		<description><![CDATA[Free SharePoint Web Parts (3rd Party) Konrad Brunner &#8211; UGS&#8217;s Web Parts (broken link 8/25) Document Library Browser v1.2 (Stramit) Sig Weber&#8217;s Playground of Web Parts Jan Tielens&#8217; SmartPart SharePointCustomization&#8217;s Webparts Jan&#8217;s Essential Web Parts (Navigation, MyAlerts, Breadcrumbs, WhatsNew) Program&#8217;s Unlimited &#8211; Calendar Webpart Web Part ToolKit (BlueDogLimited ) CSeg &#8211; SharePoint List Rollup (csegRollUp [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=92&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">Free SharePoint Web Parts (3rd Party)</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.ugs.ch/evis5/pub/ps/cs/wss/default.aspx"><span style="color:blue;font-family:Verdana;">Konrad Brunner &#8211; UGS&#8217;s</span></a><a href="http://www.ugs.ch/evis5/pub/ps/cs/wss/default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ugs.ch/evis5/pub/ps/cs/wss/default.aspx"><span style="color:blue;font-family:Verdana;">Web Parts (broken link 8/25)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blog.spsclerics.com/articles/9253.aspx"><span style="color:blue;font-family:Verdana;">Document Library Browser</span></a><a href="http://blog.spsclerics.com/articles/9253.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blog.spsclerics.com/articles/9253.aspx"><span style="color:blue;font-family:Verdana;">v1.2 (Stramit)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://playground.doesntexist.org/"><span style="color:blue;font-family:Verdana;">Sig Weber&#8217;s Playground of Web</span></a><a href="http://playground.doesntexist.org/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://playground.doesntexist.org/"><span style="color:blue;font-family:Verdana;">Parts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/belux/nl/msdn/community/columns/u2u/smartpart.mspx#What%20is%20the%20SmartPart?"><span style="color:blue;font-family:Verdana;">Jan</span></a><a href="http://www.microsoft.com/belux/nl/msdn/community/columns/u2u/smartpart.mspx#What%20is%20the%20SmartPart?"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/belux/nl/msdn/community/columns/u2u/smartpart.mspx#What%20is%20the%20SmartPart?"><span style="color:blue;font-family:Verdana;">Tielens&#8217; SmartPart</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointcustomization.com/resources/webparts.htm"><span style="color:blue;font-family:Verdana;">SharePointCustomization&#8217;s</span></a><a href="http://www.sharepointcustomization.com/resources/webparts.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointcustomization.com/resources/webparts.htm"><span style="color:blue;font-family:Verdana;">Webparts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx"><span style="color:blue;font-family:Verdana;">Jan&#8217;s Essential</span></a><a href="http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/jan/archive/2004/03/11/88118.aspx"><span style="color:blue;font-family:Verdana;">Web Parts (Navigation, MyAlerts, Breadcrumbs, WhatsNew)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://programsunlimited.com/webparts.htm"><span style="color:blue;font-family:Verdana;">Program&#8217;s Unlimited &#8211; Calendar</span></a><a href="http://programsunlimited.com/webparts.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://programsunlimited.com/webparts.htm"><span style="color:blue;font-family:Verdana;">Webpart</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;">Web</span></a><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;">Part ToolKit (BlueDogLimited )</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/SharePointCsegRollUpVersion2.aspx"><span style="color:blue;font-family:Verdana;">CSeg &#8211; SharePoint</span></a><a href="http://www.ideseg.com/SharePointCsegRollUpVersion2.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/SharePointCsegRollUpVersion2.aspx"><span style="color:blue;font-family:Verdana;">List Rollup (csegRollUp version 2)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://fluidnature.com/index.php?p=2"><span style="color:blue;font-family:Verdana;">Image Web Part (FluidNature)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.u2u.info/SharePoint/Lists/Smart%20Parts%20User%20Controls/AllItems.aspx"><span style="color:blue;font-family:Verdana;">SmartPart</span></a><a href="http://www.u2u.info/SharePoint/Lists/Smart%20Parts%20User%20Controls/AllItems.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.u2u.info/SharePoint/Lists/Smart%20Parts%20User%20Controls/AllItems.aspx"><span style="color:blue;font-family:Verdana;">User Controls</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=5451793d-288c-4fed-8e79-6c44ab0550e2"><span style="color:blue;font-family:Verdana;">Upload</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=5451793d-288c-4fed-8e79-6c44ab0550e2"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=5451793d-288c-4fed-8e79-6c44ab0550e2"><span style="color:blue;font-family:Verdana;">via FrontPage RPC</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=6aa7121a-afbb-413a-a418-83397a8b8c20"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=6aa7121a-afbb-413a-a418-83397a8b8c20"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=6aa7121a-afbb-413a-a418-83397a8b8c20"><span style="color:blue;font-family:Verdana;">List Browser/Copier</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=d46d371b-6300-4f17-b888-bef44baed017"><span style="color:blue;font-family:Verdana;">What&#8217;s</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=d46d371b-6300-4f17-b888-bef44baed017"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=d46d371b-6300-4f17-b888-bef44baed017"><span style="color:blue;font-family:Verdana;">New Web Part (Fitz)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blog.u2u.info/DottextWeb/patrick/archive/2005/03/20/1469.aspx"><span style="color:blue;font-family:Verdana;">SmartPart</span></a><a href="http://blog.u2u.info/DottextWeb/patrick/archive/2005/03/20/1469.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blog.u2u.info/DottextWeb/patrick/archive/2005/03/20/1469.aspx"><span style="color:blue;font-family:Verdana;">Sample: WSS Cross Site Search</span></a><a href="http://blog.u2u.info/DottextWeb/patrick/archive/2005/03/20/1469.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.waka.dk/Blog/PermaLink,guid,8578905c-a9ec-44a7-b770-7a168ce5fc9b.aspx"><span style="color:blue;font-family:Verdana;">Style</span></a><a href="http://www.waka.dk/Blog/PermaLink,guid,8578905c-a9ec-44a7-b770-7a168ce5fc9b.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.waka.dk/Blog/PermaLink,guid,8578905c-a9ec-44a7-b770-7a168ce5fc9b.aspx"><span style="color:blue;font-family:Verdana;">Viewer Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/SharePointCsegSearchUpdateAndTIP.aspx"><span style="color:blue;font-family:Verdana;">cseg Search</span></a><a href="http://www.ideseg.com/SharePointCsegSearchUpdateAndTIP.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/SharePointCsegSearchUpdateAndTIP.aspx"><span style="color:blue;font-family:Verdana;">1.2 (Google-like)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.smilinggoat.net/stuff.aspx"><span style="color:blue;font-family:Verdana;">Flash Movie, DocLib Utils/Explorer,</span></a><a href="http://www.smilinggoat.net/stuff.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.smilinggoat.net/stuff.aspx"><span style="color:blue;font-family:Verdana;">FeedReader, My Workspaces Web Parts (SmilingGoat)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.waka.dk/Blog/PermaLink,guid,27c4f6d6-0ba9-4cc5-8958-336998b32afb.aspx"><span style="color:blue;font-family:Verdana;">ListCharts</span></a><a href="http://www.waka.dk/Blog/PermaLink,guid,27c4f6d6-0ba9-4cc5-8958-336998b32afb.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.waka.dk/Blog/PermaLink,guid,27c4f6d6-0ba9-4cc5-8958-336998b32afb.aspx"><span style="color:blue;font-family:Verdana;">by Jesper Halvorsen</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.sqlxml.org/bryantlikes/articles/592.aspx"><span style="color:blue;font-family:Verdana;">Who&#8217;s Online Web</span></a><a href="http://blogs.sqlxml.org/bryantlikes/articles/592.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.sqlxml.org/bryantlikes/articles/592.aspx"><span style="color:blue;font-family:Verdana;">Part (HowTO by Bryant Likes)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.crsw.com/mark/articles/1009.aspx"><span style="color:blue;font-family:Verdana;">Google Search Web Part</span></a><a href="http://blogs.crsw.com/mark/articles/1009.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.crsw.com/mark/articles/1009.aspx"><span style="color:blue;font-family:Verdana;">(Mark Wagner)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/Downloads/pages/SyndicationGenerator.aspx"><span style="color:blue;font-family:Verdana;">SyndicationGenerator</span></a><a href="http://www.bluedoglimited.com/Downloads/pages/SyndicationGenerator.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/Downloads/pages/SyndicationGenerator.aspx"><span style="color:blue;font-family:Verdana;">(Maurice)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/soever/archive/2005/03/04/385523.aspx"><span style="color:blue;font-family:Verdana;">Macaw</span></a><a href="http://weblogs.asp.net/soever/archive/2005/03/04/385523.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/soever/archive/2005/03/04/385523.aspx"><span style="color:blue;font-family:Verdana;">Discussion Board</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=9dd391c8-6587-471f-9e69-1492f364a247"><span style="color:blue;font-family:Verdana;">Drop</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=9dd391c8-6587-471f-9e69-1492f364a247"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=9dd391c8-6587-471f-9e69-1492f364a247"><span style="color:blue;font-family:Verdana;">Down Navigator (McPherson)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=5d5e1a34-0b7b-4510-aa63-d6f8c9fe3a2d"><span style="color:blue;font-family:Verdana;">Finder</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=5d5e1a34-0b7b-4510-aa63-d6f8c9fe3a2d"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=5d5e1a34-0b7b-4510-aa63-d6f8c9fe3a2d"><span style="color:blue;font-family:Verdana;">Web Part (McPherson)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.molberg.dk/blogs/steen/default.aspx?BlogId=5"><span style="color:blue;font-family:Verdana;">Blogparts (Steen</span></a><a href="http://www.molberg.dk/blogs/steen/default.aspx?BlogId=5"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.molberg.dk/blogs/steen/default.aspx?BlogId=5"><span style="color:blue;font-family:Verdana;">Molberg)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://dev.collutions.com/Beta/pages/Web%20Parts.aspx"><span style="color:blue;font-family:Verdana;">cMySites</span></a><a href="http://dev.collutions.com/Beta/pages/Web%20Parts.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://dev.collutions.com/Beta/pages/Web%20Parts.aspx"><span style="color:blue;font-family:Verdana;">(Collutions)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://dev.collutions.com/Beta/pages/Web%20Parts.aspx"><span style="color:blue;font-family:Verdana;">cPageViewer</span></a><a href="http://dev.collutions.com/Beta/pages/Web%20Parts.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://dev.collutions.com/Beta/pages/Web%20Parts.aspx"><span style="color:blue;font-family:Verdana;">(Collutions)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://workspaces.gotdotnet.com/cBlog"><span style="color:blue;font-family:Verdana;">cBlog (custom site def by</span></a><a href="http://workspaces.gotdotnet.com/cBlog"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://workspaces.gotdotnet.com/cBlog"><span style="color:blue;font-family:Verdana;">Collutions)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25"><span style="color:blue;font-family:Verdana;">Avail</span></a><a href="http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25"><span style="color:blue;font-family:Verdana;">Lists</span></a><a href="http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.asaris-matrix.com/sweber/playground/downloads/forms/DispForm.aspx?ID=25"><span style="color:blue;font-family:Verdana;">Libraries (Sig Weber)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;">SharePoint RSS/ATOM</span></a><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;">reader</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/frontpage/downloads/addin/searchdetail.asp?a=701"><span style="color:blue;font-family:Verdana;">Chart</span></a><a href="http://www.microsoft.com/frontpage/downloads/addin/searchdetail.asp?a=701"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/frontpage/downloads/addin/searchdetail.asp?a=701"><span style="color:blue;font-family:Verdana;">Web Part (Microsoft)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.geekswithblogs.net/tariq/archive/2005/06/24/44702.aspx"><span style="color:blue;font-family:Verdana;">Rights</span></a><a href="http://www.geekswithblogs.net/tariq/archive/2005/06/24/44702.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.geekswithblogs.net/tariq/archive/2005/06/24/44702.aspx"><span style="color:blue;font-family:Verdana;">Checking Content</span></a><a href="http://www.geekswithblogs.net/tariq/archive/2005/06/24/44702.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.geekswithblogs.net/tariq/archive/2005/06/24/44702.aspx"><span style="color:blue;font-family:Verdana;">Editor WebPart (RCCEWebPart by Tariq)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.schaeflein.net/blog/SharePointVisionHelpingEndUsers.aspx"><span style="color:blue;font-family:Verdana;">Image</span></a><a href="http://www.schaeflein.net/blog/SharePointVisionHelpingEndUsers.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.schaeflein.net/blog/SharePointVisionHelpingEndUsers.aspx"><span style="color:blue;font-family:Verdana;">Upload Webpart (P. Schaeflein)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.schaeflein.net/blog/CustomizingTheQuickLaunchInAWSSTeamSite.aspx"><span style="color:blue;font-family:Verdana;">DocLib</span></a><a href="http://www.schaeflein.net/blog/CustomizingTheQuickLaunchInAWSSTeamSite.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.schaeflein.net/blog/CustomizingTheQuickLaunchInAWSSTeamSite.aspx"><span style="color:blue;font-family:Verdana;">Quick Launch (P. Schaeflein)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/SharePointCsegAlertsUserManagerAlertsWebpart.aspx"><span style="color:blue;font-family:Verdana;">csegAlerts</span></a><a href="http://www.ideseg.com/SharePointCsegAlertsUserManagerAlertsWebpart.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/SharePointCsegAlertsUserManagerAlertsWebpart.aspx"><span style="color:blue;font-family:Verdana;">user manager alerts webpart</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=413"><span style="color:blue;font-family:Verdana;">My</span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=413"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=413"><span style="color:blue;font-family:Verdana;">Sub Webs (Microsoft)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=376"><span style="color:blue;font-family:Verdana;">Rate</span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=376"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=376"><span style="color:blue;font-family:Verdana;">this Page Webpart (Microsoft)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=448"><span style="color:blue;font-family:Verdana;">Remote</span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=448"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=448"><span style="color:blue;font-family:Verdana;">Desktop Webpart (Microsoft)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/todd/archive/2005/08/16/654.aspx"><span style="color:blue;font-family:Verdana;">New Window for</span></a><a href="http://mindsharpblogs.com/todd/archive/2005/08/16/654.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/todd/archive/2005/08/16/654.aspx"><span style="color:blue;font-family:Verdana;">List Items (Todd&#8217;s Content Editor Web Part)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://james.milne.com/SPPageToolBar/Demo/"><span style="color:blue;font-family:Verdana;">SPPageToolBar (James Milne&#8217;s</span></a><a href="http://james.milne.com/SPPageToolBar/Demo/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://james.milne.com/SPPageToolBar/Demo/"><span style="color:blue;font-family:Verdana;">DVWP)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=750"><span style="color:blue;font-family:Verdana;">InstantFX</span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=750"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=750"><span style="color:blue;font-family:Verdana;">SE MP3 Player Maker</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=388"><span style="color:blue;font-family:Verdana;">Breadcrumb</span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=388"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=388"><span style="color:blue;font-family:Verdana;">Site Navigation Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/PermaLink,guid,78fc8fab-5eeb-4eb3-b333-d31fece87c1f.aspx"><span style="color:blue;font-family:Verdana;">csegScriptWebPart</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blog.spsclerics.com/articles/10915.aspx"><span style="color:blue;font-family:Verdana;">CheckPermsContent 1.0</span></a><a href="http://blog.spsclerics.com/articles/10915.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blog.spsclerics.com/articles/10915.aspx"><span style="color:blue;font-family:Verdana;">(Stramit)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=ef23da8a-72b6-4a04-b536-46da24b2605b"><span style="color:blue;font-family:Verdana;">Easy</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=ef23da8a-72b6-4a04-b536-46da24b2605b"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=ef23da8a-72b6-4a04-b536-46da24b2605b"><span style="color:blue;font-family:Verdana;">Tabs Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/smourier/archive/2004/07/13/181836.aspx"><span style="color:blue;font-family:Verdana;">ActiveX</span></a><a href="http://blogs.msdn.com/smourier/archive/2004/07/13/181836.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/smourier/archive/2004/07/13/181836.aspx"><span style="color:blue;font-family:Verdana;">Scripting Web Part (Simon Mourier)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/yazan/archive/2005/09/29/3692.aspx"><span style="color:blue;font-family:Verdana;">Yazan&#8217;s</span></a><a href="http://www.sharepointblogs.com/yazan/archive/2005/09/29/3692.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/yazan/archive/2005/09/29/3692.aspx"><span style="color:blue;font-family:Verdana;">List Manager</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;">Recycle Bin 1.0 New</span></a><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;">Improved</span></a><a href="http://blogs.msdn.com/cjohnson/archive/2005/10/06/477544.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://mindsharpblogs.com/todd/archive/2005/10/06/719.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://mindsharpblogs.com/todd/archive/2005/10/06/719.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/todd/archive/2005/10/06/719.aspx"><span style="color:blue;font-family:Verdana;">Recycle Bin &#8211; Client Side Alternative (Todd)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Development&amp;id=2aeb45ef-c623-4b79-b6cf-1e5354276422"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Development&amp;id=2aeb45ef-c623-4b79-b6cf-1e5354276422"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Development&amp;id=2aeb45ef-c623-4b79-b6cf-1e5354276422"><span style="color:blue;font-family:Verdana;">Scrollable Listings</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Development&amp;id=deb1636b-fc24-4802-ad24-f5bc838c5529"><span style="color:blue;font-family:Verdana;">News/Listing</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Development&amp;id=deb1636b-fc24-4802-ad24-f5bc838c5529"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Development&amp;id=deb1636b-fc24-4802-ad24-f5bc838c5529"><span style="color:blue;font-family:Verdana;">Paging Script (Ted Teng)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/SharePointCsegMiniWiki10MiniWikiWebpart.aspx"><span style="color:blue;font-family:Verdana;">csegMiniWiki</span></a><a href="http://www.ideseg.com/SharePointCsegMiniWiki10MiniWikiWebpart.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/SharePointCsegMiniWiki10MiniWikiWebpart.aspx"><span style="color:blue;font-family:Verdana;">for SharePoint</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2005/10/14/3885.aspx"><span style="color:blue;font-family:Verdana;">Date</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/10/14/3885.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/10/14/3885.aspx"><span style="color:blue;font-family:Verdana;">Time Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Sample%20Applications&amp;id=54145e1e-c334-41da-86f6-09ac26b156ab"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Sample%20Applications&amp;id=54145e1e-c334-41da-86f6-09ac26b156ab"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Sample%20Applications&amp;id=54145e1e-c334-41da-86f6-09ac26b156ab"><span style="color:blue;font-family:Verdana;">User List</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Sample%20Applications&amp;id=54145e1e-c334-41da-86f6-09ac26b156ab"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Sample%20Applications&amp;id=54145e1e-c334-41da-86f6-09ac26b156ab"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Sample%20Applications&amp;id=54145e1e-c334-41da-86f6-09ac26b156ab"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=Sharepoint&amp;category=Sample%20Applications&amp;id=54145e1e-c334-41da-86f6-09ac26b156ab"><span style="color:blue;font-family:Verdana;">Sample Web Part Code (Ingeborg Struijk)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2005/10/17/3917.aspx"><span style="color:blue;font-family:Verdana;">AD</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/10/17/3917.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/10/17/3917.aspx"><span style="color:blue;font-family:Verdana;">Management Web Part (Fabian)</span></a><span style="font-family:Verdana;"> </span></li>
<li><span style="font-family:Verdana;"><a href="http://armsinfragilehands.blogspot.com/2008/09/active-directory-management-webpart-for.html" target="_blank">AD Management Web Part (Holland Burke)</a></span></li>
<li><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Development&amp;id=edae9251-ac90-4ef4-8a4b-59d0e0ab9ae5"><span style="color:blue;font-family:Verdana;">CSS</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Development&amp;id=edae9251-ac90-4ef4-8a4b-59d0e0ab9ae5"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Development&amp;id=edae9251-ac90-4ef4-8a4b-59d0e0ab9ae5"><span style="color:blue;font-family:Verdana;">Class Inspector Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.reflectionit.nl/WebPart1.aspx"><span style="color:blue;font-family:Verdana;">Calculator</span></a><a href="http://www.reflectionit.nl/WebPart1.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.reflectionit.nl/WebPart1.aspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://www.reflectionit.nl/WebPart1.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.reflectionit.nl/WebPart1.aspx"><span style="color:blue;font-family:Verdana;">User Control</span></a><a href="http://www.reflectionit.nl/WebPart1.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.reflectionit.nl/WebPart1.aspx"><span style="color:blue;font-family:Verdana;">Container Web Parts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.sqlxml.org/bryantlikes/articles/628.aspx"><span style="color:blue;font-family:Verdana;">Reporting Services</span></a><a href="http://blogs.sqlxml.org/bryantlikes/articles/628.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.sqlxml.org/bryantlikes/articles/628.aspx"><span style="color:blue;font-family:Verdana;">Web Parts (Bryant Likes)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/images/StyleUnderCursor/StyleUnderCursor.zip"><span style="color:blue;font-family:Verdana;">StyleUnderCursor</span></a><a href="http://mindsharpblogs.com/images/StyleUnderCursor/StyleUnderCursor.zip"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/images/StyleUnderCursor/StyleUnderCursor.zip"><span style="color:blue;font-family:Verdana;">Web Part (T. Bleeker)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;">GhostHunter</span></a><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;">Web Part (bluedoglimited)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;">Inspector</span></a><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/Downloads/pages/Web%20Part%20Toolkit.aspx"><span style="color:blue;font-family:Verdana;">Web Part (bluedoglimited)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=38be67a5-2056-46a1-84b1-337ffb549c5c&amp;DisplayLang=en#overview"><span style="color:blue;font-family:Verdana;">Office</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=38be67a5-2056-46a1-84b1-337ffb549c5c&amp;DisplayLang=en#overview"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=38be67a5-2056-46a1-84b1-337ffb549c5c&amp;DisplayLang=en#overview"><span style="color:blue;font-family:Verdana;">2003 Add-in: Web Parts and Components (v2 &#8211; 10/17/2005)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://dotnetjunkies.com/WebLog/victorv/archive/2005/11/08/133629.aspx"><span style="color:blue;font-family:Verdana;">Macaw</span></a><a href="http://dotnetjunkies.com/WebLog/victorv/archive/2005/11/08/133629.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://dotnetjunkies.com/WebLog/victorv/archive/2005/11/08/133629.aspx"><span style="color:blue;font-family:Verdana;">TraceInfo Web Part (Victor Vogelpoel)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=e3c6f223-db62-4a94-aa1d-5ea2402a17e5"><span style="color:blue;font-family:Verdana;">Calendar</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=e3c6f223-db62-4a94-aa1d-5ea2402a17e5"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=e3c6f223-db62-4a94-aa1d-5ea2402a17e5"><span style="color:blue;font-family:Verdana;">Web Part (Custom)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://portal.sharepointsolutions.com/Downloads/default.aspx"><span style="color:blue;font-family:Verdana;">Portal Area</span></a><a href="http://portal.sharepointsolutions.com/Downloads/default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://portal.sharepointsolutions.com/Downloads/default.aspx"><span style="color:blue;font-family:Verdana;">Listings Rollup and RSS Syndicator Web Part (Tony Bierman)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.schaeflein.net/blog/2005/11/29/MilestoneCountdownWebPart.aspx"><span style="color:blue;font-family:Verdana;">Milestone</span></a><a href="http://www.schaeflein.net/blog/2005/11/29/MilestoneCountdownWebPart.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.schaeflein.net/blog/2005/11/29/MilestoneCountdownWebPart.aspx"><span style="color:blue;font-family:Verdana;">Countdown Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://bobmixon.xwiki.com/xwiki/bin/view/SharePoint/Quick_Launch_Web_Part"><span style="color:blue;font-family:Verdana;">Quick</span></a><a href="http://bobmixon.xwiki.com/xwiki/bin/view/SharePoint/Quick_Launch_Web_Part"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://bobmixon.xwiki.com/xwiki/bin/view/SharePoint/Quick_Launch_Web_Part"><span style="color:blue;font-family:Verdana;">Launch Web Part (Bob Mixon)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://sharepointsolutions.blogspot.com/2005/11/sharepoint-portal-area-listings-rollup.html"><span style="color:blue;font-family:Verdana;">SPS</span></a><a href="http://sharepointsolutions.blogspot.com/2005/11/sharepoint-portal-area-listings-rollup.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://sharepointsolutions.blogspot.com/2005/11/sharepoint-portal-area-listings-rollup.html"><span style="color:blue;font-family:Verdana;">Area Listings Rollup / RSS Syndication Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://bobmixon.xwiki.com/xwiki/bin/view/SharePoint/Dynamic_Page_Viewer_Web_Part"><span style="color:blue;font-family:Verdana;">Dynamic</span></a><a href="http://bobmixon.xwiki.com/xwiki/bin/view/SharePoint/Dynamic_Page_Viewer_Web_Part"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://bobmixon.xwiki.com/xwiki/bin/view/SharePoint/Dynamic_Page_Viewer_Web_Part"><span style="color:blue;font-family:Verdana;">Page Viewer Web Part (B. Mixon)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=ff4f5718-a0ca-4562-a204-ab3b19679832"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=ff4f5718-a0ca-4562-a204-ab3b19679832"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=ff4f5718-a0ca-4562-a204-ab3b19679832"><span style="color:blue;font-family:Verdana;">Folder Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://store.bamboosolutions.com/pc-20-5-hello-web-part.aspx"><span style="color:blue;font-family:Verdana;">Hello Web</span></a><a href="http://store.bamboosolutions.com/pc-20-5-hello-web-part.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://store.bamboosolutions.com/pc-20-5-hello-web-part.aspx"><span style="color:blue;font-family:Verdana;">Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/jan/archive/2006/02/01/437037.aspx"><span style="color:blue;font-family:Verdana;">SharePoint Web</span></a><a href="http://weblogs.asp.net/jan/archive/2006/02/01/437037.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/jan/archive/2006/02/01/437037.aspx"><span style="color:blue;font-family:Verdana;">Part Code Snippets for VS 2005</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://alex.angas.info/tech/wrap-up-web-part/"><span style="color:blue;font-family:Verdana;">Wrap Up Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.brightwork.com/webparts/index.htm"><span style="color:blue;font-family:Verdana;">My Alerts Web Part (via</span></a><a href="http://www.brightwork.com/webparts/index.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.brightwork.com/webparts/index.htm"><span style="color:blue;font-family:Verdana;">Brightwork &#8211; Registration Required)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/PermaLink,guid,c5d33f09-1d80-4038-ac95-82657564b48e.aspx"><span style="color:blue;font-family:Verdana;">csegRollUp</span></a><a href="http://www.ideseg.com/PermaLink,guid,c5d33f09-1d80-4038-ac95-82657564b48e.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/PermaLink,guid,c5d33f09-1d80-4038-ac95-82657564b48e.aspx"><span style="color:blue;font-family:Verdana;">3.1 (the sharepoint aggregator)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://sharepointsolutions.blogspot.com/2006/02/free-sharepoint-portal-ser_113980953585198810.html"><span style="color:blue;font-family:Verdana;">Events</span></a><a href="http://sharepointsolutions.blogspot.com/2006/02/free-sharepoint-portal-ser_113980953585198810.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://sharepointsolutions.blogspot.com/2006/02/free-sharepoint-portal-ser_113980953585198810.html"><span style="color:blue;font-family:Verdana;">for You Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=bc9b3526-decf-4057-a530-91840c0d5401&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=bc9b3526-decf-4057-a530-91840c0d5401&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=bc9b3526-decf-4057-a530-91840c0d5401&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Dynamics CRM 3.0 List Web Part [MSFT]</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/todd/archive/2006/03/17/1023.aspx"><span style="color:blue;font-family:Verdana;">Subwebs On</span></a><a href="http://mindsharpblogs.com/todd/archive/2006/03/17/1023.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/todd/archive/2006/03/17/1023.aspx"><span style="color:blue;font-family:Verdana;">The Quick Launch (DVWP)</span></a><a href="http://mindsharpblogs.com/todd/archive/2006/03/17/1023.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=A88DCEB5-6B53-416E-8B06-B8ED84827E97"><span style="color:blue;font-family:Verdana;">Tree</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=A88DCEB5-6B53-416E-8B06-B8ED84827E97"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=A88DCEB5-6B53-416E-8B06-B8ED84827E97"><span style="color:blue;font-family:Verdana;">Menu Web Part for SPS/WSS (gotdotnet)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=8437a203-f377-401c-b23d-ae59e6f05b80"><span style="color:blue;font-family:Verdana;">People</span></a><a href="http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=8437a203-f377-401c-b23d-ae59e6f05b80"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=8437a203-f377-401c-b23d-ae59e6f05b80"><span style="color:blue;font-family:Verdana;">Picker Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=ff4f5718-a0ca-4562-a204-ab3b19679832"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=ff4f5718-a0ca-4562-a204-ab3b19679832"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=ff4f5718-a0ca-4562-a204-ab3b19679832"><span style="color:blue;font-family:Verdana;">Folder Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.tamtam.nl/mart/PermaLink,guid,5a70299d-276e-4c2a-ab92-e03ad4b1dddf.aspx"><span style="color:blue;font-family:Verdana;">WikiSharePoint</span></a><a href="http://blogs.tamtam.nl/mart/PermaLink,guid,5a70299d-276e-4c2a-ab92-e03ad4b1dddf.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.tamtam.nl/mart/PermaLink,guid,5a70299d-276e-4c2a-ab92-e03ad4b1dddf.aspx"><span style="color:blue;font-family:Verdana;">version 1.0 (TamTam)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;">Windows SharePoint</span></a><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;">Services RSS (WSS-RSS)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/server/downloads/webparts/applications.asp"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/sharepoint/server/downloads/webparts/applications.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/server/downloads/webparts/applications.asp"><span style="color:blue;font-family:Verdana;">Web Parts for Microsoft Applications (10)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/tbaginski/archive/2005/07/18/2870.aspx"><span style="color:blue;font-family:Verdana;">Connected</span></a><a href="http://www.sharepointblogs.com/tbaginski/archive/2005/07/18/2870.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/tbaginski/archive/2005/07/18/2870.aspx"><span style="color:blue;font-family:Verdana;">Page Viewer Web Part (Todd)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Web%20Parts&amp;id=f1672147-e50f-44ba-abd0-785a18526e3f"><span style="color:blue;font-family:Verdana;">News/Group</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Web%20Parts&amp;id=f1672147-e50f-44ba-abd0-785a18526e3f"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03noauth.aspx?section=SharePoint&amp;category=Web%20Parts&amp;id=f1672147-e50f-44ba-abd0-785a18526e3f"><span style="color:blue;font-family:Verdana;">Listings/List Items Scroller Web Part (Ted Teng)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/PermaLink,guid,9644e808-8159-451b-8d8c-c22936277812.aspx"><span style="color:blue;font-family:Verdana;">InfoPath</span></a><a href="http://www.ideseg.com/PermaLink,guid,9644e808-8159-451b-8d8c-c22936277812.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/PermaLink,guid,9644e808-8159-451b-8d8c-c22936277812.aspx"><span style="color:blue;font-family:Verdana;">Viewer (CSeg)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/PermaLink,guid,a1980d2e-a570-49ab-a51e-d8499cab8722.aspx"><span style="color:blue;font-family:Verdana;">cSegSmallCalendar</span></a><a href="http://www.ideseg.com/PermaLink,guid,a1980d2e-a570-49ab-a51e-d8499cab8722.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/PermaLink,guid,a1980d2e-a570-49ab-a51e-d8499cab8722.aspx"><span style="color:blue;font-family:Verdana;">Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/bsimser/archive/2006/05/15/446555.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://weblogs.asp.net/bsimser/archive/2006/05/15/446555.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/bsimser/archive/2006/05/15/446555.aspx"><span style="color:blue;font-family:Verdana;">Forums Web Part (Simser)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.infosupport.com/porint/archive/2006/05/09/5864.aspx"><span style="color:blue;font-family:Verdana;">FlexListViewer:</span></a><a href="http://blogs.infosupport.com/porint/archive/2006/05/09/5864.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.infosupport.com/porint/archive/2006/05/09/5864.aspx"><span style="color:blue;font-family:Verdana;">Display other Site lists w/o FrontPage</span></a><a href="http://blogs.infosupport.com/porint/archive/2006/05/09/5864.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.ideseg.com/PermaLink,guid,866be80b-bbc2-43e7-84ae-8ccf65d6e4da.aspx"><span style="color:blue;font-family:Verdana;">cseg</span></a><a href="http://www.ideseg.com/PermaLink,guid,866be80b-bbc2-43e7-84ae-8ccf65d6e4da.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/PermaLink,guid,866be80b-bbc2-43e7-84ae-8ccf65d6e4da.aspx"><span style="color:blue;font-family:Verdana;">Web Part Suite</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.intranetjournal.com/articles/200512/ij_12_05_05a.html"><span style="color:blue;font-family:Verdana;">Countdown</span></a><a href="http://www.intranetjournal.com/articles/200512/ij_12_05_05a.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.intranetjournal.com/articles/200512/ij_12_05_05a.html"><span style="color:blue;font-family:Verdana;">Web Part (P. Schaeflein)</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">FrontPage Resources</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://groups.yahoo.com/group/frontpage/"><span style="color:blue;font-family:Verdana;">Tina Clarke&#8217;s FrontPage List</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">HowTo&#8217;s and Tips</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2004/07/13/621.aspx"><span style="color:blue;font-family:Verdana;">HOWTO:</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2004/07/13/621.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2004/07/13/621.aspx"><span style="color:blue;font-family:Verdana;">Access WebPart Maintenance</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;">HowTO:</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;">Setup Alerts for Portal Home Page Listings</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;">Taxonomy Changes!</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/04/27/1881.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.wssdemo.com/Pages/stats.aspx?menu=Articles"><span style="color:blue;font-family:Verdana;">HowTo: Using</span></a><a href="http://www.wssdemo.com/Pages/stats.aspx?menu=Articles"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.wssdemo.com/Pages/stats.aspx?menu=Articles"><span style="color:blue;font-family:Verdana;">LogParser 2.2 from the IIS resource kit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.msd2d.com/Content/Tip_viewitem_03.aspx?section=Sharepoint&amp;category=Administration&amp;id=9aa62437-5d7b-4ddd-b0d1-345376a30367"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://www.msd2d.com/Content/Tip_viewitem_03.aspx?section=Sharepoint&amp;category=Administration&amp;id=9aa62437-5d7b-4ddd-b0d1-345376a30367"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.msd2d.com/Content/Tip_viewitem_03.aspx?section=Sharepoint&amp;category=Administration&amp;id=9aa62437-5d7b-4ddd-b0d1-345376a30367"><span style="color:blue;font-family:Verdana;">Schedule backup with SPS Data Backup and Restore Utility</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/penny/articles/481.aspx"><span style="color:blue;font-family:Verdana;">HowTo: Find out what</span></a><a href="http://mindsharpblogs.com/penny/articles/481.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/penny/articles/481.aspx"><span style="color:blue;font-family:Verdana;">version of SharePoint are you running</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.officezealot.com/mauro/archive/2005/10/12/8267.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://blogs.officezealot.com/mauro/archive/2005/10/12/8267.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.officezealot.com/mauro/archive/2005/10/12/8267.aspx"><span style="color:blue;font-family:Verdana;">Increase the 255 Character Limit in Doc Libs</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/penny/articles/481.aspx"><span style="color:blue;font-family:Verdana;">HowTo: What Version of</span></a><a href="http://mindsharpblogs.com/penny/articles/481.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/penny/articles/481.aspx"><span style="color:blue;font-family:Verdana;">SharePoint is Running?</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/todd/archive/2005/10/25/801.aspx"><span style="color:blue;font-family:Verdana;">HowTo: Hide</span></a><a href="http://mindsharpblogs.com/todd/archive/2005/10/25/801.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/todd/archive/2005/10/25/801.aspx"><span style="color:blue;font-family:Verdana;">the Quick Launch Bar</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://pasteldelimon.blogspot.com/2005/06/breadcrumb-links-for-sps-areas.html"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://pasteldelimon.blogspot.com/2005/06/breadcrumb-links-for-sps-areas.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://pasteldelimon.blogspot.com/2005/06/breadcrumb-links-for-sps-areas.html"><span style="color:blue;font-family:Verdana;">BreadCrumbTrail for SPS Areas (By Manuel)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://thorprojects.com/blog/archive/2005/10/31/262.aspx"><span style="color:blue;font-family:Verdana;">HowTo: Technical</span></a><a href="http://thorprojects.com/blog/archive/2005/10/31/262.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://thorprojects.com/blog/archive/2005/10/31/262.aspx"><span style="color:blue;font-family:Verdana;">SharePoint (and .NET) Fundamentals</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=202"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=202"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=202"><span style="color:blue;font-family:Verdana;">Dealing with Orphaned Sites</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/james/archive/2005/03/25/429.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://mindsharpblogs.com/james/archive/2005/03/25/429.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/james/archive/2005/03/25/429.aspx"><span style="color:blue;font-family:Verdana;">SharePoint Stress Testing</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.developer.com/net/net/article.php/3559761"><span style="color:blue;font-family:Verdana;">HowTo: Build a</span></a><a href="http://www.developer.com/net/net/article.php/3559761"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.developer.com/net/net/article.php/3559761"><span style="color:blue;font-family:Verdana;">SharePoint Newsletter Generator</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2005/09/13/3477.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/09/13/3477.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/09/13/3477.aspx"><span style="color:blue;font-family:Verdana;">Synchronize document libraries with SyncToy 1.0</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/todd/archive/2005/11/11/853.aspx"><span style="color:blue;font-family:Verdana;">HowTo: Retain</span></a><a href="http://mindsharpblogs.com/todd/archive/2005/11/11/853.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/todd/archive/2005/11/11/853.aspx"><span style="color:blue;font-family:Verdana;">Lookup Column Data During List Migration</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/office/default.aspx?pull=/library/en-us/odc_sp2003_ta/html/officesharepointteambaseddev.asp"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://msdn.microsoft.com/office/default.aspx?pull=/library/en-us/odc_sp2003_ta/html/officesharepointteambaseddev.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/office/default.aspx?pull=/library/en-us/odc_sp2003_ta/html/officesharepointteambaseddev.asp"><span style="color:blue;font-family:Verdana;">Conduct Team-Based Development of WSS and SPS Apps</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://andrewconnell.com/blog/articles/UseVirtualPCsDifferencingDisksToYourAdvantage.aspx"><span style="color:blue;font-family:Verdana;">HOWTO:</span></a><a href="http://andrewconnell.com/blog/articles/UseVirtualPCsDifferencingDisksToYourAdvantage.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://andrewconnell.com/blog/articles/UseVirtualPCsDifferencingDisksToYourAdvantage.aspx"><span style="color:blue;font-family:Verdana;">Use Virtual PC&#8217;s Differencing Disks to your Advantage</span></a><a href="http://andrewconnell.com/blog/articles/UseVirtualPCsDifferencingDisksToYourAdvantage.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://mindsharpblogs.com/todd/archive/2005/05/03/467.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://mindsharpblogs.com/todd/archive/2005/05/03/467.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/todd/archive/2005/05/03/467.aspx"><span style="color:blue;font-family:Verdana;">SharePoint Impersonation (via Todd Bleeker)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.lcbridge.nl/vision/impersonation.htm"><span style="color:blue;font-family:Verdana;">HowTo: SharePoint</span></a><a href="http://www.lcbridge.nl/vision/impersonation.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.lcbridge.nl/vision/impersonation.htm"><span style="color:blue;font-family:Verdana;">Impersonation (via Lois</span></a><a href="http://www.lcbridge.nl/vision/impersonation.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.lcbridge.nl/vision/impersonation.htm"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://www.lcbridge.nl/vision/impersonation.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.lcbridge.nl/vision/impersonation.htm"><span style="color:blue;font-family:Verdana;">Clark)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=7"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=7"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=7"><span style="color:blue;font-family:Verdana;">SharePoint Impersonation (via Maurice)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.officezealot.com/mauro/archive/2005/12/27/8880.aspx"><span style="color:blue;font-family:Verdana;">Installing</span></a><a href="http://blogs.officezealot.com/mauro/archive/2005/12/27/8880.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.officezealot.com/mauro/archive/2005/12/27/8880.aspx"><span style="color:blue;font-family:Verdana;">Business Scorecard Manager with SQL Server 2005</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.technet.com/akieft/archive/2005/11/30/415336.aspx"><span style="color:blue;font-family:Verdana;">Tips from</span></a><a href="http://blogs.technet.com/akieft/archive/2005/11/30/415336.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.technet.com/akieft/archive/2005/11/30/415336.aspx"><span style="color:blue;font-family:Verdana;">working on the SharePoint Force</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://xgvb.blogspot.com/2006/01/how-to-reuse-modify-shared-page.html"><span style="color:blue;font-family:Verdana;">Context</span></a><a href="http://xgvb.blogspot.com/2006/01/how-to-reuse-modify-shared-page.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://xgvb.blogspot.com/2006/01/how-to-reuse-modify-shared-page.html"><span style="color:blue;font-family:Verdana;">Menus WSS 2003</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.infosupport.com/porint/archive/2005/12/27/3203.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://blogs.infosupport.com/porint/archive/2005/12/27/3203.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.infosupport.com/porint/archive/2005/12/27/3203.aspx"><span style="color:blue;font-family:Verdana;">Extend WSS Logging</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/bsimser/archive/2005/12/28/434127.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://weblogs.asp.net/bsimser/archive/2005/12/28/434127.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/bsimser/archive/2005/12/28/434127.aspx"><span style="color:blue;font-family:Verdana;">Using VS2005 with SharePoint</span></a><a href="http://weblogs.asp.net/bsimser/archive/2005/12/28/434127.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://blogs.msdn.com/mikefitz/archive/2005/03/16/397151.aspx"><span style="color:blue;font-family:Verdana;">Forms-Based</span></a><a href="http://blogs.msdn.com/mikefitz/archive/2005/03/16/397151.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/mikefitz/archive/2005/03/16/397151.aspx"><span style="color:blue;font-family:Verdana;">Authentication Solutions for WSS/SPS</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.officezealot.com/legault/archive/2006/02/02/9143.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://blogs.officezealot.com/legault/archive/2006/02/02/9143.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.officezealot.com/legault/archive/2006/02/02/9143.aspx"><span style="color:blue;font-family:Verdana;">Testing SharePoint Alerts in a Test Environment</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/dustin/archive/2006/02/03/5027.aspx"><span style="color:blue;font-family:Verdana;">SuperGeek</span></a><a href="http://www.sharepointblogs.com/dustin/archive/2006/02/03/5027.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/dustin/archive/2006/02/03/5027.aspx"><span style="color:blue;font-family:Verdana;">Tip: Open off-site links in a new window</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/prodtechnol/office/office2003/maintain/fp03sps.mspx"><span style="color:blue;font-family:Verdana;">FrontPage</span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/office2003/maintain/fp03sps.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/office2003/maintain/fp03sps.mspx"><span style="color:blue;font-family:Verdana;">2003 and SharePoint Portal Server 2003 Caveats!</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://andrewconnell.com/blog/articles/UseVirtualPCsDifferencingDisksToYourAdvantage.aspx"><span style="color:blue;font-family:Verdana;">Tips</span></a><a href="http://andrewconnell.com/blog/articles/UseVirtualPCsDifferencingDisksToYourAdvantage.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://andrewconnell.com/blog/articles/UseVirtualPCsDifferencingDisksToYourAdvantage.aspx"><span style="color:blue;font-family:Verdana;">for using Virtual PC</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/bsimser/archive/2006/02/09/437788.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://weblogs.asp.net/bsimser/archive/2006/02/09/437788.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/bsimser/archive/2006/02/09/437788.aspx"><span style="color:blue;font-family:Verdana;">Setting up your SharePoint Virtual Development Environment</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://perseus.franklins.net/msnewengland/vstips/webparts.html"><span style="color:blue;font-family:Verdana;">Looking at</span></a><a href="http://perseus.franklins.net/msnewengland/vstips/webparts.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://perseus.franklins.net/msnewengland/vstips/webparts.html"><span style="color:blue;font-family:Verdana;">Web Parts with Visual Studio 2005</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://perseus.franklins.net/msnewengland/vstips/morewebparts.html"><span style="color:blue;font-family:Verdana;">More</span></a><a href="http://perseus.franklins.net/msnewengland/vstips/morewebparts.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://perseus.franklins.net/msnewengland/vstips/morewebparts.html"><span style="color:blue;font-family:Verdana;">About Web Parts with ASP 2.0</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://spaces.msn.com/nickporter/Blog/cns!74ADCDB36B2CA33C!137.entry"><span style="color:blue;font-family:Verdana;">Synchronizing</span></a><a href="http://spaces.msn.com/nickporter/Blog/cns!74ADCDB36B2CA33C!137.entry"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://spaces.msn.com/nickporter/Blog/cns!74ADCDB36B2CA33C!137.entry"><span style="color:blue;font-family:Verdana;">a Remote Windows SharePoint Services Site via FrontPage</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://spaces.msn.com/nickporter/Blog/cns!74ADCDB36B2CA33C!136.entry"><span style="color:blue;font-family:Verdana;">Using</span></a><a href="http://spaces.msn.com/nickporter/Blog/cns!74ADCDB36B2CA33C!136.entry"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://spaces.msn.com/nickporter/Blog/cns!74ADCDB36B2CA33C!136.entry"><span style="color:blue;font-family:Verdana;">FrontPage 2003 to view Windows SharePoint Services usage data.</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://dev.collutions.com/blog/Pages/IDesignTimeHtmlProvider.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://dev.collutions.com/blog/Pages/IDesignTimeHtmlProvider.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://dev.collutions.com/blog/Pages/IDesignTimeHtmlProvider.aspx"><span style="color:blue;font-family:Verdana;">Implementing the IDesignTimeHtmlProvider Interface</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.devx.com/webdev/Article/30026"><span style="color:blue;font-family:Verdana;">HowTo: Master Advanced List</span></a><a href="http://www.devx.com/webdev/Article/30026"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.devx.com/webdev/Article/30026"><span style="color:blue;font-family:Verdana;">Editing in SharePoint</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.devx.com/dotnet/Article/26732/0"><span style="color:blue;font-family:Verdana;">HowTo: Wrapping Web Controls</span></a><a href="http://www.devx.com/dotnet/Article/26732/0"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.devx.com/dotnet/Article/26732/0"><span style="color:blue;font-family:Verdana;">into a Web Part</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://office.microsoft.com/en-us/assistance/HA100993571033.aspx"><span style="color:blue;font-family:Verdana;">Performance</span></a><a href="http://office.microsoft.com/en-us/assistance/HA100993571033.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://office.microsoft.com/en-us/assistance/HA100993571033.aspx"><span style="color:blue;font-family:Verdana;">Impact Results SQL Server 2000 vs SQL Server 2005 w/ SPS2003 SP2</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3d1fa469-0064-4054-9c1a-a6d8c8afce2b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Deployment</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3d1fa469-0064-4054-9c1a-a6d8c8afce2b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3d1fa469-0064-4054-9c1a-a6d8c8afce2b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">and Customization Best Practices for Windows SharePoint Services</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=42f2451e-9003-4ad4-a3e8-20b2d9e32763&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=42f2451e-9003-4ad4-a3e8-20b2d9e32763&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=42f2451e-9003-4ad4-a3e8-20b2d9e32763&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Organizational Issues White Paper</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=761f1eac-2eb4-428b-86f0-bbc995913771&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=761f1eac-2eb4-428b-86f0-bbc995913771&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=761f1eac-2eb4-428b-86f0-bbc995913771&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Step by Step</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=d46e9c6f-6f29-4bfc-969a-3fcfede2b066&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Opening</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=d46e9c6f-6f29-4bfc-969a-3fcfede2b066&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=d46e9c6f-6f29-4bfc-969a-3fcfede2b066&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Creating and Copying SharePoint Sites</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=29bf1ede-019e-4a9a-a771-9f8df1c4322b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=29bf1ede-019e-4a9a-a771-9f8df1c4322b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=29bf1ede-019e-4a9a-a771-9f8df1c4322b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Advanced Design Techniques</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.microsoft.fr/rlondner/articles/7089.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://blogs.microsoft.fr/rlondner/articles/7089.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.microsoft.fr/rlondner/articles/7089.aspx"><span style="color:blue;font-family:Verdana;">Impersonation using Com+ / Discussion of Methods</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/davbosch/archive/2006/03/12/550005.aspx"><span style="color:blue;font-family:Verdana;">ASP.NET</span></a><a href="http://blogs.msdn.com/davbosch/archive/2006/03/12/550005.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/davbosch/archive/2006/03/12/550005.aspx"><span style="color:blue;font-family:Verdana;">2.0: Development Resources and Security Guidance</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://support.microsoft.com/?id=831093"><span style="color:blue;font-family:Verdana;">HowTo: Using a URL parameter to</span></a><a href="http://support.microsoft.com/?id=831093"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://support.microsoft.com/?id=831093"><span style="color:blue;font-family:Verdana;">filter a Data View Web part</span></a><a href="http://support.microsoft.com/?id=831093"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=3114e58e-4a99-44f3-8fb3-e4c81a744f43&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">How</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=3114e58e-4a99-44f3-8fb3-e4c81a744f43&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=3114e58e-4a99-44f3-8fb3-e4c81a744f43&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Microsoft IT Manages SharePoint Disaster and Recovery</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msd2d.com/Content/Tip_viewitem_03NoAuth.aspx?section=Sharepoint&amp;id=38C24FC6-01E5-4784-891F-A7C52B132A44"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://msd2d.com/Content/Tip_viewitem_03NoAuth.aspx?section=Sharepoint&amp;id=38C24FC6-01E5-4784-891F-A7C52B132A44"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msd2d.com/Content/Tip_viewitem_03NoAuth.aspx?section=Sharepoint&amp;id=38C24FC6-01E5-4784-891F-A7C52B132A44"><span style="color:blue;font-family:Verdana;">Move SharePoint Subwebs using Smigrate</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blog.crowe.co.nz/archive/2005/08/10/198.aspx"><span style="color:blue;font-family:Verdana;">HowTo: Step/Step -</span></a><a href="http://blog.crowe.co.nz/archive/2005/08/10/198.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blog.crowe.co.nz/archive/2005/08/10/198.aspx"><span style="color:blue;font-family:Verdana;">Updating a WSS List from c#</span></a><a href="http://blog.crowe.co.nz/archive/2005/08/10/198.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.codeproject.com/cs/webservices/myservice.asp"><span style="color:blue;font-family:Verdana;">HowTo: Create</span></a><a href="http://www.codeproject.com/cs/webservices/myservice.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.codeproject.com/cs/webservices/myservice.asp"><span style="color:blue;font-family:Verdana;">Your First C# Web Service</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/erikaehrli/archive/2006/05/04/SharePointUploadHelper.aspx"><span style="color:blue;font-family:Verdana;">HowTo:</span></a><a href="http://blogs.msdn.com/erikaehrli/archive/2006/05/04/SharePointUploadHelper.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/erikaehrli/archive/2006/05/04/SharePointUploadHelper.aspx"><span style="color:blue;font-family:Verdana;">SharePoint 2003, Upload via Web service</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://glorix.blogspot.com/2006/05/usefull-sharepoint-sql-queries.html"><span style="color:blue;font-family:Verdana;">Useful</span></a><a href="http://glorix.blogspot.com/2006/05/usefull-sharepoint-sql-queries.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://glorix.blogspot.com/2006/05/usefull-sharepoint-sql-queries.html"><span style="color:blue;font-family:Verdana;">SharePoint SQL Queries</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://amargalla.com/blog/?p=63"><span style="color:blue;font-family:Verdana;">HowTo: Extracting dll’s out of the</span></a><a href="http://amargalla.com/blog/?p=63"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://amargalla.com/blog/?p=63"><span style="color:blue;font-family:Verdana;">GAC</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">KBAlertz &#8211; SharePoint</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.kbalertz.com/technology_336.aspx"><span style="color:blue;font-family:Verdana;">Windows SharePoint Services</span></a><a href="http://www.kbalertz.com/technology_336.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.kbalertz.com/technology_336.aspx"><span style="color:blue;font-family:Verdana;">KB Article(s)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.kbalertz.com/technology_330.aspx"><span style="color:blue;font-family:Verdana;">SharePoint Portal Server 2003</span></a><a href="http://www.kbalertz.com/technology_330.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.kbalertz.com/technology_330.aspx"><span style="color:blue;font-family:Verdana;">KB Article(s)</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">MOSS Tools</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.sharepointblogs.com/files/97/tbaginski/entry9293.aspx"><span style="color:blue;font-family:Verdana;">MOSS</span></a><a href="http://www.sharepointblogs.com/files/97/tbaginski/entry9293.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/files/97/tbaginski/entry9293.aspx"><span style="color:blue;font-family:Verdana;">Business Data Catalog (BDC) MetaData Manager</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">MSDN Technical Articles</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://msdn.microsoft.com/office/understanding/sharepoint/articles/default.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://msdn.microsoft.com/office/understanding/sharepoint/articles/default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/office/understanding/sharepoint/articles/default.aspx"><span style="color:blue;font-family:Verdana;">Portal Server Technical Articles (MSDN)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/office/understanding/frontpage/techarticles/default.aspx"><span style="color:blue;font-family:Verdana;">FrontPage</span></a><a href="http://msdn.microsoft.com/office/understanding/frontpage/techarticles/default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/office/understanding/frontpage/techarticles/default.aspx"><span style="color:blue;font-family:Verdana;">Technical Articles</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/office/understanding/infopath/techarticles/default.aspx"><span style="color:blue;font-family:Verdana;">InfoPath</span></a><a href="http://msdn.microsoft.com/office/understanding/infopath/techarticles/default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/office/understanding/infopath/techarticles/default.aspx"><span style="color:blue;font-family:Verdana;">Technical Articles</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spptsdk/html/tsptWebConfig_SV01081977.asp"><span style="color:blue;font-family:Verdana;">Customizing</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spptsdk/html/tsptWebConfig_SV01081977.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spptsdk/html/tsptWebConfig_SV01081977.asp"><span style="color:blue;font-family:Verdana;">the Message Text for Alerts</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spptsdk/html/tsptWebConfig_SV01081977.asp"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spptsdk/html/SPPTWSSServices_SV01072213.asp"><span style="color:blue;font-family:Verdana;">Programming</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spptsdk/html/SPPTWSSServices_SV01072213.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/spptsdk/html/SPPTWSSServices_SV01072213.asp"><span style="color:blue;font-family:Verdana;">Web Services for Microsoft Windows SharePoint Services</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/resources/documentation/wss/2/all/adminguide/en-us/stswp03.mspx"><span style="color:blue;font-family:Verdana;">Managing</span></a><a href="http://www.microsoft.com/resources/documentation/wss/2/all/adminguide/en-us/stswp03.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/resources/documentation/wss/2/all/adminguide/en-us/stswp03.mspx"><span style="color:blue;font-family:Verdana;">Web Parts on Virtual Servers</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/PAGPractices0001.asp"><span style="color:blue;font-family:Verdana;">Security</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/PAGPractices0001.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/PAGPractices0001.asp"><span style="color:blue;font-family:Verdana;">Practices: ASP.NET 2.0 Security Practices at a Glance</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/office/understanding/sharepoint/default.aspx?pull=/library/en-us/odc_sppt2003_bk/html/officesharepointreskitch37.asp"><span style="color:blue;font-family:Verdana;">Using</span></a><a href="http://msdn.microsoft.com/office/understanding/sharepoint/default.aspx?pull=/library/en-us/odc_sppt2003_bk/html/officesharepointreskitch37.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/office/understanding/sharepoint/default.aspx?pull=/library/en-us/odc_sppt2003_bk/html/officesharepointreskitch37.asp"><span style="color:blue;font-family:Verdana;">Visual Studio .NET to Create Web Parts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2006/03/10/wsstipstricks.aspx"><span style="color:blue;font-family:Verdana;">Tips</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/03/10/wsstipstricks.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/03/10/wsstipstricks.aspx"><span style="color:blue;font-family:Verdana;">and Tricks for Developing with Windows SharePoint Services</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">Office 2007</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://blogs.msdn.com/erikaehrli/archive/2006/01/23/office12bloggers.aspx"><span style="color:blue;font-family:Verdana;">Office</span></a><a href="http://blogs.msdn.com/erikaehrli/archive/2006/01/23/office12bloggers.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/erikaehrli/archive/2006/01/23/office12bloggers.aspx"><span style="color:blue;font-family:Verdana;">&#8220;12&#8243; bloggers list</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://jopx.blogspot.com/2006/05/office-2007-sharepoint-server-2007-and_24.html"><span style="color:blue;font-family:Verdana;">Office</span></a><a href="http://jopx.blogspot.com/2006/05/office-2007-sharepoint-server-2007-and_24.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://jopx.blogspot.com/2006/05/office-2007-sharepoint-server-2007-and_24.html"><span style="color:blue;font-family:Verdana;">2007 Links Galore (JOPX)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/andrew_may/archive/2006/05/26/SharePointContentTypesPosters.aspx"><span style="color:blue;font-family:Verdana;">Content</span></a><a href="http://blogs.msdn.com/andrew_may/archive/2006/05/26/SharePointContentTypesPosters.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/andrew_may/archive/2006/05/26/SharePointContentTypesPosters.aspx"><span style="color:blue;font-family:Verdana;">Type Technical Posters for Download</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7580.aspx"><span style="color:blue;font-family:Verdana;">Bill</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7580.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7580.aspx"><span style="color:blue;font-family:Verdana;">Gates &#8211; SharePoint Conference 2006</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7568.aspx"><span style="color:blue;font-family:Verdana;">2007</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7568.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7568.aspx"><span style="color:blue;font-family:Verdana;">Microsoft Office System Beta 2</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7570.aspx"><span style="color:blue;font-family:Verdana;">2007</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7570.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2006/05/25/7570.aspx"><span style="color:blue;font-family:Verdana;">Office System Reference Material</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/office/preview/programs/groove/demo.mspx?showIntro=n"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/office/preview/programs/groove/demo.mspx?showIntro=n"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/office/preview/programs/groove/demo.mspx?showIntro=n"><span style="color:blue;font-family:Verdana;">Office Groove 2007 Demo</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=38ca6b32-44be-4489-8526-f09c57cd13a5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">2007</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=38ca6b32-44be-4489-8526-f09c57cd13a5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=38ca6b32-44be-4489-8526-f09c57cd13a5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Office System Starter Kit: Enterprise Content Management Starter Kit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn2.microsoft.com/en-us/ms376609(MSDN.10).aspx"><span style="color:blue;font-family:Verdana;">MSDN: 2007</span></a><a href="http://msdn2.microsoft.com/en-us/ms376609(MSDN.10).aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn2.microsoft.com/en-us/ms376609(MSDN.10).aspx"><span style="color:blue;font-family:Verdana;">Microsoft Office System SDKs</span></a><a href="http://msdn2.microsoft.com/en-us/ms376609(MSDN.10).aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn2.microsoft.com/en-us/ms376609(MSDN.10).aspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://msdn2.microsoft.com/en-us/ms376609(MSDN.10).aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn2.microsoft.com/en-us/ms376609(MSDN.10).aspx"><span style="color:blue;font-family:Verdana;">Tech Articles</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">Other Tools</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C74D08BD-617E-43AC-B303-B6063B929BB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">BizTalk</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C74D08BD-617E-43AC-B303-B6063B929BB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C74D08BD-617E-43AC-B303-B6063B929BB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Server 2004 Orchestration Designer for Business Analysts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9bfa49bc-376b-4a54-95aa-73c9156706e7&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">IIS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9bfa49bc-376b-4a54-95aa-73c9156706e7&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9bfa49bc-376b-4a54-95aa-73c9156706e7&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Diagnostics Toolkit (x86)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/scriptcenter/scripts/default.mspx"><span style="color:blue;font-family:Verdana;">TechNet</span></a><a href="http://www.microsoft.com/technet/scriptcenter/scripts/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/scriptcenter/scripts/default.mspx"><span style="color:blue;font-family:Verdana;">Script Center</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-B4AD-4EAE-87CF-B14AE6A939B0&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">ILMerge</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-B4AD-4EAE-87CF-B14AE6A939B0&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-B4AD-4EAE-87CF-B14AE6A939B0&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">(Merges .NET Assemblies)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=d63c4804-528b-40e8-bd71-02148e49649e"><span style="color:blue;font-family:Verdana;">BizTalk</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=d63c4804-528b-40e8-bd71-02148e49649e"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=d63c4804-528b-40e8-bd71-02148e49649e"><span style="color:blue;font-family:Verdana;">Load Generation Tool</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=0ED13372-F3D2-40F0-BA5D-C880359A40F5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=0ED13372-F3D2-40F0-BA5D-C880359A40F5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=0ED13372-F3D2-40F0-BA5D-C880359A40F5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Office Live Communications Server 2005 Intelligent Instant Message Filter</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C74D08BD-617E-43AC-B303-B6063B929BB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">BizTalk</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C74D08BD-617E-43AC-B303-B6063B929BB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C74D08BD-617E-43AC-B303-B6063B929BB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Server 2004 Orchestration Designer for Business Analysts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.daemon-tools.cc/"><span style="color:blue;font-family:Verdana;">DAEMON Tools &#8211; virtual cd/dvd-rom</span></a><a href="http://www.daemon-tools.cc/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.daemon-tools.cc/"><span style="color:blue;font-family:Verdana;">emulator</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://home.snafu.de/tilman/xenulink.html"><span style="color:blue;font-family:Verdana;">XENU Link Checker</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://developer.mabwebdesign.com/cssoptimizer.html"><span style="color:blue;font-family:Verdana;">CSS Optimizer (For</span></a><a href="http://developer.mabwebdesign.com/cssoptimizer.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://developer.mabwebdesign.com/cssoptimizer.html"><span style="color:blue;font-family:Verdana;">MAC)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">IE</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Developer Toolbar Beta (9/16/05)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.iistoolshed.com/tools.aspx"><span style="color:blue;font-family:Verdana;">IIS Tools Galore!</span></a><a href="http://www.iistoolshed.com/tools.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.iistoolshed.com/tools.aspx"><span style="color:blue;font-family:Verdana;">(iistoolshed.com)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=09115420-8C9D-46B9-A9A5-9BFFCD237DA2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=09115420-8C9D-46B9-A9A5-9BFFCD237DA2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=09115420-8C9D-46B9-A9A5-9BFFCD237DA2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Server 2003 Performance Advisor</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.vmware.com/products/player/"><span style="color:blue;font-family:Verdana;">VMWare Player Beta</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1470e86b-7e05-4322-a677-95ab44f12d75&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1470e86b-7e05-4322-a677-95ab44f12d75&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1470e86b-7e05-4322-a677-95ab44f12d75&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">SQL Server 2005 Upgrade Advisor</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.devleap.com/romeopruno/archive/2005/12/01/6322.aspx"><span style="color:blue;font-family:Verdana;">Visual</span></a><a href="http://blogs.devleap.com/romeopruno/archive/2005/12/01/6322.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.devleap.com/romeopruno/archive/2005/12/01/6322.aspx"><span style="color:blue;font-family:Verdana;">Studio 2005 Starter Kits</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.everystockphoto.com/"><span style="color:blue;font-family:Verdana;">Stock Photography</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.hanselman.com/blog/ScottHanselmans2005UltimateDeveloperAndPowerUsersToolList.aspx"><span style="color:blue;font-family:Verdana;">Ultimate</span></a><a href="http://www.hanselman.com/blog/ScottHanselmans2005UltimateDeveloperAndPowerUsersToolList.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.hanselman.com/blog/ScottHanselmans2005UltimateDeveloperAndPowerUsersToolList.aspx"><span style="color:blue;font-family:Verdana;">Developer and Power Users Tool List</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://microsoftgadgets.com/livesdk/index.htm"><span style="color:blue;font-family:Verdana;">Live Gadget SDK version 0.5</span></a><a href="http://microsoftgadgets.com/livesdk/index.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://microsoftgadgets.com/livesdk/index.htm"><span style="color:blue;font-family:Verdana;">(Beta)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c16ae515-c8f4-47ef-a1e4-a8dcbacff8e3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c16ae515-c8f4-47ef-a1e4-a8dcbacff8e3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c16ae515-c8f4-47ef-a1e4-a8dcbacff8e3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Server 2003 Admin Pack for XP</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://technet2.microsoft.com/WindowsServer/f/?en/library/a8fbe0a6-5a30-4f43-b7ef-c4a5400b72511033.mspx"><span style="color:blue;font-family:Verdana;">Active</span></a><a href="http://technet2.microsoft.com/WindowsServer/f/?en/library/a8fbe0a6-5a30-4f43-b7ef-c4a5400b72511033.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://technet2.microsoft.com/WindowsServer/f/?en/library/a8fbe0a6-5a30-4f43-b7ef-c4a5400b72511033.mspx"><span style="color:blue;font-family:Verdana;">Directory Schema snap-in</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">SDKs &amp; Guides</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://msdn2.microsoft.com/en-us/library/ms441339.aspx">Windows SharePoint Services 3.0 SDK (April 2007)</a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=a637eff6-8224-4b19-a6a4-3e33fa13d230&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=a637eff6-8224-4b19-a6a4-3e33fa13d230&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=a637eff6-8224-4b19-a6a4-3e33fa13d230&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint Services Administrator&#8217;s Guide (1/20/2006)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=47405143-f586-4941-92f5-048bf00cf332&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=47405143-f586-4941-92f5-048bf00cf332&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=47405143-f586-4941-92f5-048bf00cf332&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003 Administrator&#8217;s Guide</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=aa3e7fe5-daee-4d10-980f-789b827967b0&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=aa3e7fe5-daee-4d10-980f-789b827967b0&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=aa3e7fe5-daee-4d10-980f-789b827967b0&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003 SDK (ver.Jan05)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=1C64AF62-C2E9-4CA3-A2A0-7D4319980011&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=1C64AF62-C2E9-4CA3-A2A0-7D4319980011&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=1C64AF62-C2E9-4CA3-A2A0-7D4319980011&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint Services SDK (ver.Mar05)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6257AD22-8D67-4CF0-B2D2-08E0CFE6C8CE&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6257AD22-8D67-4CF0-B2D2-08E0CFE6C8CE&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6257AD22-8D67-4CF0-B2D2-08E0CFE6C8CE&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Alerts Version 6.0 Software Development Kit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/resources.mspx"><span style="color:blue;font-family:Verdana;">Office</span></a><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/resources.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/resources.mspx"><span style="color:blue;font-family:Verdana;">Business Scorecards Accelerator Admin Guide</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=b189b0b9-d8c9-4149-8f88-685b509d48e5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=b189b0b9-d8c9-4149-8f88-685b509d48e5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=b189b0b9-d8c9-4149-8f88-685b509d48e5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows SharePoint Services Help</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=32ff7d19-9e25-44ce-8a8c-03e3eb5d726f&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">BizTalk</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=32ff7d19-9e25-44ce-8a8c-03e3eb5d726f&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=32ff7d19-9e25-44ce-8a8c-03e3eb5d726f&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Server 2004 Installation Guide</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1b0e29f6-f6e1-4b18-89fc-31d7cfd74e19&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">FabriKam</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1b0e29f6-f6e1-4b18-89fc-31d7cfd74e19&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=1b0e29f6-f6e1-4b18-89fc-31d7cfd74e19&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">– The Microsoft Office System Solutions Learning Platform</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AD196BCE-876B-44E0-9E90-2A0C34446826&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">The</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AD196BCE-876B-44E0-9E90-2A0C34446826&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=AD196BCE-876B-44E0-9E90-2A0C34446826&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Secure Access Using Smart Cards Planning Guide</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/prodtechnol/office/office2003/maintain/bureswss.mspx"><span style="color:blue;font-family:Verdana;">Backing</span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/office2003/maintain/bureswss.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/office2003/maintain/bureswss.mspx"><span style="color:blue;font-family:Verdana;">Up and Restoring Web Sites</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_deployingwebparts_msi.asp"><span style="color:blue;font-family:Verdana;">Using</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_deployingwebparts_msi.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_deployingwebparts_msi.asp"><span style="color:blue;font-family:Verdana;">Wppackager to Package and Deploy Web Parts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/spfromscratch/archive/2005/05/27/2030.aspx"><span style="color:blue;font-family:Verdana;">The</span></a><a href="http://www.sharepointblogs.com/spfromscratch/archive/2005/05/27/2030.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/spfromscratch/archive/2005/05/27/2030.aspx"><span style="color:blue;font-family:Verdana;">Strong Name Key Pair</span></a><a href="http://www.sharepointblogs.com/spfromscratch/archive/2005/05/27/2030.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.graphicalwonder.com/?p=10"><span style="color:blue;font-family:Verdana;">SharePoint Site Creation -</span></a><a href="http://www.graphicalwonder.com/?p=10"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.graphicalwonder.com/?p=10"><span style="color:blue;font-family:Verdana;">Step-by-Step (graphicalwonder.com)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=351F0616-93AA-4FE8-9238-D702F1BFBAB4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">InfoPath</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=351F0616-93AA-4FE8-9238-D702F1BFBAB4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=351F0616-93AA-4FE8-9238-D702F1BFBAB4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">2003 SDK</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;">Portal Server Backup SPSBACKUP (By DanielD</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;">Translated from German by</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1182.aspx"><span style="color:blue;font-family:Verdana;">Babelfish)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;">Portal Server Backup STSADM (By DanielD</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;">Translated from German by</span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://babelfish.altavista.com/babelfish/trurl_pagecontent?lp=de_en&amp;url=http%3A%2F%2Fweblogs.mysharepoint.de%2Fdanield%2Farticles%2F1181.aspx"><span style="color:blue;font-family:Verdana;">Babelfish)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;827754"><span style="color:blue;font-family:Verdana;">HowTO:</span></a><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;827754"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;827754"><span style="color:blue;font-family:Verdana;">Import User Profile Information of Enabled User Accounts from Active Directory</span></a><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;827754"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;827754"><span style="color:blue;font-family:Verdana;">to SPS 2003</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/technetmag/issues/2005/11/BePrepared/default.aspx"><span style="color:blue;font-family:Verdana;">Be</span></a><a href="http://www.microsoft.com/technet/technetmag/issues/2005/11/BePrepared/default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/technetmag/issues/2005/11/BePrepared/default.aspx"><span style="color:blue;font-family:Verdana;">Prepared: A Guide to SharePoint Disaster Prevention and Recovery</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://download.microsoft.com/download/0/d/f/0dfe488e-a335-4480-8a8a-b405e32f4368/SQL2005_Sys_Views.pdf"><span style="color:blue;font-family:Verdana;">SQL</span></a><a href="http://download.microsoft.com/download/0/d/f/0dfe488e-a335-4480-8a8a-b405e32f4368/SQL2005_Sys_Views.pdf"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://download.microsoft.com/download/0/d/f/0dfe488e-a335-4480-8a8a-b405e32f4368/SQL2005_Sys_Views.pdf"><span style="color:blue;font-family:Verdana;">Server 2005 System Views Poster</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://office.microsoft.com/en-us/assistance/HA100806971033.aspx"><span style="color:blue;font-family:Verdana;">SharePoint/SQL</span></a><a href="http://office.microsoft.com/en-us/assistance/HA100806971033.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://office.microsoft.com/en-us/assistance/HA100806971033.aspx"><span style="color:blue;font-family:Verdana;">Server 2005 and .NET 2.0 whitepaper</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=E5B34FDD-5E44-4001-849A-506B89AF988A&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Content</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=E5B34FDD-5E44-4001-849A-506B89AF988A&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=E5B34FDD-5E44-4001-849A-506B89AF988A&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Management Server 2002 Connector for SharePoint Evaluation Guide</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.devx.com/dotnet/Article/17518/0"><span style="color:blue;font-family:Verdana;">Developing Web Parts for</span></a><a href="http://www.devx.com/dotnet/Article/17518/0"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.devx.com/dotnet/Article/17518/0"><span style="color:blue;font-family:Verdana;">SharePoint Portal Server 2003 in .NET</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003 Discovery Kit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=7CDC1F2D-F550-49E0-9B74-318DA11BA1B4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=7CDC1F2D-F550-49E0-9B74-318DA11BA1B4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=7CDC1F2D-F550-49E0-9B74-318DA11BA1B4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Solution Accelerator for Intranets</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=D013465B-454A-4A18-8EC4-6A5A82C81FB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Planning</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=D013465B-454A-4A18-8EC4-6A5A82C81FB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=D013465B-454A-4A18-8EC4-6A5A82C81FB3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">and Designing for Geographically Dispersed Sites</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6D94E307-67D9-41AC-B2D6-0074D6286FA9&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">MOSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6D94E307-67D9-41AC-B2D6-0074D6286FA9&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6D94E307-67D9-41AC-B2D6-0074D6286FA9&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">2007 Beta SDK</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=05E0DD12-8394-402B-8936-A07FE8AFAFFD&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=05E0DD12-8394-402B-8936-A07FE8AFAFFD&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=05E0DD12-8394-402B-8936-A07FE8AFAFFD&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">V3 SDK</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4C5BF9DD-3EFB-451D-B213-98ED039190BF&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Deploying</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4C5BF9DD-3EFB-451D-B213-98ED039190BF&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4C5BF9DD-3EFB-451D-B213-98ED039190BF&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint Extranet Using ISA Server 2000/2004</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">SharePoint Newsgroups</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://groups.google.com/group/microsoft.public.sharepoint.windowsservices.development"><span style="color:blue;font-family:Verdana;">windowsservices</span></a><a href="http://groups.google.com/group/microsoft.public.sharepoint.windowsservices.development"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://groups.google.com/group/microsoft.public.sharepoint.windowsservices.development"><span style="color:blue;font-family:Verdana;">development</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://groups.google.com/group/microsoft.public.sharepoint.windowsservices"><span style="color:blue;font-family:Verdana;">windowsservices</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://groups.google.com/group/microsoft.public.sharepoint.portalserver"><span style="color:blue;font-family:Verdana;">portalserver</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://groups.google.com/group/microsoft.public.sharepoint.portalserver.development"><span style="color:blue;font-family:Verdana;">portalserver</span></a><a href="http://groups.google.com/group/microsoft.public.sharepoint.portalserver.development"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://groups.google.com/group/microsoft.public.sharepoint.portalserver.development"><span style="color:blue;font-family:Verdana;">development</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://groups.google.com/group/SharePoint-Discussion"><span style="color:blue;font-family:Verdana;">SharePoint-Discussion</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://groups.msn.com/technetmexico-Df-SharePoint"><span style="color:blue;font-family:Verdana;">SharePoint MSN Group by</span></a><a href="http://groups.msn.com/technetmexico-Df-SharePoint"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://groups.msn.com/technetmexico-Df-SharePoint"><span style="color:blue;font-family:Verdana;">Mexican SharePoint Fans</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">SharePoint Resources (Microsoft)</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/plan/default.mspx"><span style="color:blue;font-family:Verdana;">SPS</span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/plan/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/plan/default.mspx"><span style="color:blue;font-family:Verdana;">2003 &#8211; HowTo&#8217;s</span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/plan/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/plan/default.mspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/plan/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/plan/default.mspx"><span style="color:blue;font-family:Verdana;">WhitePapers</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/prodtechnol/sppt/webcasts/default.mspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/technet/prodtechnol/sppt/webcasts/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/sppt/webcasts/default.mspx"><span style="color:blue;font-family:Verdana;">Webcasts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/prodtechnol/sppt/reskit/default.mspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/technet/prodtechnol/sppt/reskit/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/sppt/reskit/default.mspx"><span style="color:blue;font-family:Verdana;">Resource Kit Chapters</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://office.microsoft.com/home/office.aspx?assetid=FX011209761033&amp;CTT=98"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://office.microsoft.com/home/office.aspx?assetid=FX011209761033&amp;CTT=98"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://office.microsoft.com/home/office.aspx?assetid=FX011209761033&amp;CTT=98"><span style="color:blue;font-family:Verdana;">Portal Server Technical Library</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/default.mspx"><span style="color:blue;font-family:Verdana;">SPS</span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/prodtechnol/office/sps2003/default.mspx"><span style="color:blue;font-family:Verdana;">2003 &#8211; Microsoft &#8220;One Stop Shop Link Fest&#8221;</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/office/understanding/officesystem/fabrikam/default.aspx"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://msdn.microsoft.com/office/understanding/officesystem/fabrikam/default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/office/understanding/officesystem/fabrikam/default.aspx"><span style="color:blue;font-family:Verdana;">Office System Solutions Learning Platform &#8211; FabriKam</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7cdc1f2d-f550-49e0-9b74-318da11ba1b4&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7cdc1f2d-f550-49e0-9b74-318da11ba1b4&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7cdc1f2d-f550-49e0-9b74-318da11ba1b4&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Solution Accelerator for Intranets</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/resources.mspx"><span style="color:blue;font-family:Verdana;">Office</span></a><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/resources.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/resources.mspx"><span style="color:blue;font-family:Verdana;">Business Scorecards Accelerator Support Resources</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://office.microsoft.com/en-us/assistance/CH011650191033.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://office.microsoft.com/en-us/assistance/CH011650191033.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://office.microsoft.com/en-us/assistance/CH011650191033.aspx"><span style="color:blue;font-family:Verdana;">Administrator Documentation and Resources</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.wssdemo.com/Pages/SiteTemplates.aspx?menu=Resources"><span style="color:blue;font-family:Verdana;">Free Site</span></a><a href="http://www.wssdemo.com/Pages/SiteTemplates.aspx?menu=Resources"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.wssdemo.com/Pages/SiteTemplates.aspx?menu=Resources"><span style="color:blue;font-family:Verdana;">Templates from Microsoft</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=48b2c899-db2c-4a93-aa95-af4a37fa8ae8&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Creating</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=48b2c899-db2c-4a93-aa95-af4a37fa8ae8&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=48b2c899-db2c-4a93-aa95-af4a37fa8ae8&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Custom Web Part Page Templates Sample</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=BCA45A99-E420-47FD-8AEA-A8743735C710&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SPS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=BCA45A99-E420-47FD-8AEA-A8743735C710&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=BCA45A99-E420-47FD-8AEA-A8743735C710&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">2003 Training Kit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=D6A10783-A4E4-4463-8444-F88BE48760B3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePointPSSearch</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=D6A10783-A4E4-4463-8444-F88BE48760B3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=D6A10783-A4E4-4463-8444-F88BE48760B3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SQL Syntax (Preview)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=29E1FC0C-7627-45ED-AB75-1C5080F6AC1D&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Spreadsheet</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=29E1FC0C-7627-45ED-AB75-1C5080F6AC1D&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=29E1FC0C-7627-45ED-AB75-1C5080F6AC1D&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">WP Solution Specification File Schema Reference</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/downloads/sharepnt.mspx"><span style="color:blue;font-family:Verdana;">_SharePoint</span></a><a href="http://www.microsoft.com/technet/downloads/sharepnt.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/downloads/sharepnt.mspx"><span style="color:blue;font-family:Verdana;">Downloads</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/office/sharepoint/prodinfo/cms2002connector.mspx"><span style="color:blue;font-family:Verdana;">Using</span></a><a href="http://www.microsoft.com/office/sharepoint/prodinfo/cms2002connector.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/office/sharepoint/prodinfo/cms2002connector.mspx"><span style="color:blue;font-family:Verdana;">CMS 2002 Connector for SharePoint</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/resources/casestudies/FindCaseStudyResults.aspx?ProTaxID=1902"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/resources/casestudies/FindCaseStudyResults.aspx?ProTaxID=1902"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/resources/casestudies/FindCaseStudyResults.aspx?ProTaxID=1902"><span style="color:blue;font-family:Verdana;">Case Studies (Microsoft)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/seminar/mmcfeed/mmcdisplayfeed.asp?lang=en&amp;product=103361&amp;audience=100402"><span style="color:blue;font-family:Verdana;">MSDN</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/seminar/mmcfeed/mmcdisplayfeed.asp?lang=en&amp;product=103361&amp;audience=100402"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/seminar/mmcfeed/mmcdisplayfeed.asp?lang=en&amp;product=103361&amp;audience=100402"><span style="color:blue;font-family:Verdana;">SharePoint Presentations</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://download.microsoft.com/download/2/1/7/217CC3F4-C2B5-4EEE-9FEE-8BC8024ED8BB/SayGoodbyeToPortalServers.pdf"><span style="color:blue;font-family:Verdana;">Forrester</span></a><a href="http://download.microsoft.com/download/2/1/7/217CC3F4-C2B5-4EEE-9FEE-8BC8024ED8BB/SayGoodbyeToPortalServers.pdf"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://download.microsoft.com/download/2/1/7/217CC3F4-C2B5-4EEE-9FEE-8BC8024ED8BB/SayGoodbyeToPortalServers.pdf"><span style="color:blue;font-family:Verdana;">Report (2005) &#8211; Microsoft Leading the way in Portal Popularity</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">SharePoint Resources (Non-MS)</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.gotdotnet.com/team/sharepoint"><span style="color:blue;font-family:Verdana;">GotDotNet &#8211; SharePoint</span></a><a href="http://www.gotdotnet.com/team/sharepoint"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/team/sharepoint"><span style="color:blue;font-family:Verdana;">Tips/Samples/Webcasts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/lamonth/articles/368827.aspx"><span style="color:blue;font-family:Verdana;">Lamont&#8217;s SharePoint</span></a><a href="http://blogs.msdn.com/lamonth/articles/368827.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/lamonth/articles/368827.aspx"><span style="color:blue;font-family:Verdana;">Resources</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointcustomization.com/default.aspx"><span style="color:blue;font-family:Verdana;">sharepointcustomization.com</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.spsfaq.com/"><span style="color:blue;font-family:Verdana;">SPSFAQ.COM</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointu.com/"><span style="color:blue;font-family:Verdana;">SharePoint University (Community Forums)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.brienposey.com/kb/sharepoint_portal_server.asp"><span style="color:blue;font-family:Verdana;">Brien Posey&#8217;s</span></a><a href="http://www.brienposey.com/kb/sharepoint_portal_server.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.brienposey.com/kb/sharepoint_portal_server.asp"><span style="color:blue;font-family:Verdana;">SharePoint KB Articles</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointcustomization.com/resources/webcasts.htm"><span style="color:blue;font-family:Verdana;">SharePointCustomization.com</span></a><a href="http://www.sharepointcustomization.com/resources/webcasts.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointcustomization.com/resources/webcasts.htm"><span style="color:blue;font-family:Verdana;">Webcasts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/team/sharepoint/archive.aspx"><span style="color:blue;font-family:Verdana;">GotDotNet -</span></a><a href="http://www.gotdotnet.com/team/sharepoint/archive.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/team/sharepoint/archive.aspx"><span style="color:blue;font-family:Verdana;">SharePoint archived posts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.devx.com/dotnet/Article/17518/0/page/1"><span style="color:blue;font-family:Verdana;">Developing Web Parts</span></a><a href="http://www.devx.com/dotnet/Article/17518/0/page/1"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.devx.com/dotnet/Article/17518/0/page/1"><span style="color:blue;font-family:Verdana;">for SharePoint Portal Server 2003 in .NET</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.worldwideweb.dk/index.asp?side=15"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.worldwideweb.dk/index.asp?side=15"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.worldwideweb.dk/index.asp?side=15"><span style="color:blue;font-family:Verdana;">Tips/Tricks/Resources (WorldWideWeb.DK)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://wss.collutions.com/default.aspx"><span style="color:blue;font-family:Verdana;">WSS FAQ &#8211; Home</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://wss.collutions.com/pages/VII%20-%20Documents%20and%20Web%20Sites.aspx"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://wss.collutions.com/pages/VII%20-%20Documents%20and%20Web%20Sites.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://wss.collutions.com/pages/VII%20-%20Documents%20and%20Web%20Sites.aspx"><span style="color:blue;font-family:Verdana;">FAQ &#8211; Documents and Sites Resource</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.heathersolomon.com/blog/articles/159.aspx"><span style="color:blue;font-family:Verdana;">Heather Solomon&#8217;s</span></a><a href="http://www.heathersolomon.com/blog/articles/159.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.heathersolomon.com/blog/articles/159.aspx"><span style="color:blue;font-family:Verdana;">Site Definition Mappings</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.tedpattison.net/Downloads.aspx"><span style="color:blue;font-family:Verdana;">Ted Pattison Group Tips/Sample</span></a><a href="http://www.tedpattison.net/Downloads.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.tedpattison.net/Downloads.aspx"><span style="color:blue;font-family:Verdana;">Code</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.theserverside.net/articles/showarticle.tss?id=WebParts2"><span style="color:blue;font-family:Verdana;">Making</span></a><a href="http://www.theserverside.net/articles/showarticle.tss?id=WebParts2"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.theserverside.net/articles/showarticle.tss?id=WebParts2"><span style="color:blue;font-family:Verdana;">SharePoint Webparts Interact</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://sharepointadvisor.com/doc/16570"><span style="color:blue;font-family:Verdana;">4 Guidelines to Drive SharePoint</span></a><a href="http://sharepointadvisor.com/doc/16570"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://sharepointadvisor.com/doc/16570"><span style="color:blue;font-family:Verdana;">User Adoption</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://jopx.blogspot.com/"><span style="color:blue;font-family:Verdana;">Commercial Listing of Web Parts (by JOPX)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://heathersolomon.com/blog/articles/148.aspx"><span style="color:blue;font-family:Verdana;">Heather Solomon&#8217;s</span></a><a href="http://heathersolomon.com/blog/articles/148.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://heathersolomon.com/blog/articles/148.aspx"><span style="color:blue;font-family:Verdana;">SharePoint Resource Page</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointshow.com/default.aspx"><span style="color:blue;font-family:Verdana;">The SharePoint Show</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/team/sharepoint/"><span style="color:blue;font-family:Verdana;">GotDotNet &#8211; SharePoint Products</span></a><a href="http://www.gotdotnet.com/team/sharepoint/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/team/sharepoint/"><span style="color:blue;font-family:Verdana;">and Technologies</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://sharepointcommunity.com/"><span style="color:blue;font-family:Verdana;">SharePointCommunity.com</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">SharePoint Service Packs</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FD3AB750-C622-4488-BD06-8F5D8347E3D2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FD3AB750-C622-4488-BD06-8F5D8347E3D2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FD3AB750-C622-4488-BD06-8F5D8347E3D2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003 Service Pack 1</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=875DA47E-89D5-4621-A319-A1F5BFEDF497&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=875DA47E-89D5-4621-A319-A1F5BFEDF497&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=875DA47E-89D5-4621-A319-A1F5BFEDF497&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint Services Service Pack 1</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=abba20f2-3625-4c9c-a412-ab9bbebdb5e8&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=abba20f2-3625-4c9c-a412-ab9bbebdb5e8&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=abba20f2-3625-4c9c-a412-ab9bbebdb5e8&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">2.0 SP2 Beta in Windows Server 2003 R2</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9c552114-dc9a-43ee-9281-b080b7c280b4&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9c552114-dc9a-43ee-9281-b080b7c280b4&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9c552114-dc9a-43ee-9281-b080b7c280b4&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">SharePoint Services Service Pack 2 (9/27/05)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=fa627eeb-b4fa-4b80-9416-fc97d1bf404b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=fa627eeb-b4fa-4b80-9416-fc97d1bf404b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=fa627eeb-b4fa-4b80-9416-fc97d1bf404b&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Language Template Pack SP2 (Requires WSS SP2)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=171dc9a7-b4ba-4759-bd64-6b7d851a97ef&amp;DisplayLang=en%60"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=171dc9a7-b4ba-4759-bd64-6b7d851a97ef&amp;DisplayLang=en%60"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=171dc9a7-b4ba-4759-bd64-6b7d851a97ef&amp;DisplayLang=en%60"><span style="color:blue;font-family:Verdana;">Portal Server 2003 Service Pack 2 (10/18/05)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6BB93661-0CE7-46CF-B8BB-55546B58A2F2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Security</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6BB93661-0CE7-46CF-B8BB-55546B58A2F2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=6BB93661-0CE7-46CF-B8BB-55546B58A2F2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Update for Windows SharePoint Services (KB887981)</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<p style="font-weight:bold;font-size:16pt;font-family:Verdana;margin:0;">SharePoint Tools</p>
<ul style="margin-top:0;margin-bottom:0;margin-left:1in;direction:ltr;unicode-bidi:embed;">
<li><a href="http://blogs.msdn.com/krichie/archive/2005/04/10/406889.aspx"><span style="color:blue;font-family:Verdana;">SPUserUtil</span></a><a href="http://blogs.msdn.com/krichie/archive/2005/04/10/406889.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/krichie/archive/2005/04/10/406889.aspx"><span style="color:blue;font-family:Verdana;">2.1 (By KRICHIE)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17C36612-632E-4C04-9382-987622ED1D64&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Software</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17C36612-632E-4C04-9382-987622ED1D64&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17C36612-632E-4C04-9382-987622ED1D64&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Update for Web Folders</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17F00F0D-659A-433C-BF0D-A7628B00FE17&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">IntelliSense</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17F00F0D-659A-433C-BF0D-A7628B00FE17&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17F00F0D-659A-433C-BF0D-A7628B00FE17&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">XML Files</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dcee9e09-448b-4386-b901-efea29cac808&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Visio</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dcee9e09-448b-4386-b901-efea29cac808&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=dcee9e09-448b-4386-b901-efea29cac808&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">IFilter 2003 Add-in: Text Search in Visio Files</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.paraesthesia.com/blog/comments.php?id=594_0_1_0_C"><span style="color:blue;font-family:Verdana;">SPS Portal</span></a><a href="http://www.paraesthesia.com/blog/comments.php?id=594_0_1_0_C"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.paraesthesia.com/blog/comments.php?id=594_0_1_0_C"><span style="color:blue;font-family:Verdana;">2003 Search Web Service Tester</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/ODC_WSSUsageEventLogging.asp"><span style="color:blue;font-family:Verdana;">Usage</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/ODC_WSSUsageEventLogging.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_SP2003_ta/html/ODC_WSSUsageEventLogging.asp"><span style="color:blue;font-family:Verdana;">Event Logging in Windows SharePoint Services</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8ed64398-4992-47cb-9075-afec32060986&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8ed64398-4992-47cb-9075-afec32060986&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8ed64398-4992-47cb-9075-afec32060986&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint Services: Usage Blob Parser</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.peterprovost.org/archive/2004/06/07/1348.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.peterprovost.org/archive/2004/06/07/1348.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.peterprovost.org/archive/2004/06/07/1348.aspx"><span style="color:blue;font-family:Verdana;">Portal Area Explorer</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://steve.wedevelop.net/archives/000243.html"><span style="color:blue;font-family:Verdana;">SharePointFav 1.1</span></a><a href="http://steve.wedevelop.net/archives/000243.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://steve.wedevelop.net/archives/000243.html"><span style="color:blue;font-family:Verdana;">(updated)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=c66726d9-feee-423d-847b-e15e58bebed4"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=c66726d9-feee-423d-847b-e15e58bebed4"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=c66726d9-feee-423d-847b-e15e58bebed4"><span style="color:blue;font-family:Verdana;">Site Permissions Manager</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://james.milne.com/SPSkin/"><span style="color:blue;font-family:Verdana;">James Milne&#8217;s SharePoint CSS Skinner!</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=a4cc28b4-e626-4d0c-beb0-4c94d5bef88b"><span style="color:blue;font-family:Verdana;">SharePad</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=a4cc28b4-e626-4d0c-beb0-4c94d5bef88b"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=a4cc28b4-e626-4d0c-beb0-4c94d5bef88b"><span style="color:blue;font-family:Verdana;">Reference Application for SharePoint Products and Technologies</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4B2C2F1B-D74A-482A-903A-45BB44C5DEC4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4B2C2F1B-D74A-482A-903A-45BB44C5DEC4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4B2C2F1B-D74A-482A-903A-45BB44C5DEC4&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint Services: Document Library Event Handler Toolkit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/Downloads/pages/DavCopy.aspx"><span style="color:blue;font-family:Verdana;">DAVCopy</span></a><a href="http://www.bluedoglimited.com/Downloads/pages/DavCopy.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/Downloads/pages/DavCopy.aspx"><span style="color:blue;font-family:Verdana;">(Maurice)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/Downloads/pages/BlogExtension.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.bluedoglimited.com/Downloads/pages/BlogExtension.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/Downloads/pages/BlogExtension.aspx"><span style="color:blue;font-family:Verdana;">BlogExtension (Maurice)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=0aeac9ba-3734-46d8-8250-d713295e210c"><span style="color:blue;font-family:Verdana;">Auto-Deployment</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=0aeac9ba-3734-46d8-8250-d713295e210c"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=0aeac9ba-3734-46d8-8250-d713295e210c"><span style="color:blue;font-family:Verdana;">of Sharepoint WebParts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://dev.collutions.com/Beta/pages/Utilities.aspx"><span style="color:blue;font-family:Verdana;">cPassword</span></a><a href="http://dev.collutions.com/Beta/pages/Utilities.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://dev.collutions.com/Beta/pages/Utilities.aspx"><span style="color:blue;font-family:Verdana;">(Collutions)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=09115420-8c9d-46b9-a9a5-9bffcd237da2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Windows</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=09115420-8c9d-46b9-a9a5-9bffcd237da2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=09115420-8c9d-46b9-a9a5-9bffcd237da2&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Server 2003 Performance Advisor</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/nigelbridport/archive/2004/12/16/317419.aspx"><span style="color:blue;font-family:Verdana;">Nigel&#8217;s</span></a><a href="http://blogs.msdn.com/nigelbridport/archive/2004/12/16/317419.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/nigelbridport/archive/2004/12/16/317419.aspx"><span style="color:blue;font-family:Verdana;">SPUM2003 X1.1 &#8211; (V1.0 will be SPUser.EXE)</span></a><a href="http://blogs.msdn.com/nigelbridport/archive/2004/12/16/317419.aspx"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://weblogs.mysharepoint.de/mgreth/archive/2005/06/24/1246.aspx"><span style="color:blue;font-family:Verdana;">M.</span></a><a href="http://weblogs.mysharepoint.de/mgreth/archive/2005/06/24/1246.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.mysharepoint.de/mgreth/archive/2005/06/24/1246.aspx"><span style="color:blue;font-family:Verdana;">Greth&#8217;s Password Changer (registration required)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=4b4aba06-b5f9-4dad-be9d-7b51ec2e5ac9"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=4b4aba06-b5f9-4dad-be9d-7b51ec2e5ac9"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=4b4aba06-b5f9-4dad-be9d-7b51ec2e5ac9"><span style="color:blue;font-family:Verdana;">Baseline Security Analyzer v2.0 (for IT Professionals)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=49159368-544b-4b09-8eed-4844b4e33d3d&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=49159368-544b-4b09-8eed-4844b4e33d3d&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=49159368-544b-4b09-8eed-4844b4e33d3d&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">SQL Server Report Pack for Microsoft Office SharePoint Portal Server 2003</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blog.spsclerics.com/archive/2005/04/25/685.aspx"><span style="color:blue;font-family:Verdana;">SharePoint Site</span></a><a href="http://blog.spsclerics.com/archive/2005/04/25/685.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blog.spsclerics.com/archive/2005/04/25/685.aspx"><span style="color:blue;font-family:Verdana;">Manager (Permissions Mgmt)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=724"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=724"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=724"><span style="color:blue;font-family:Verdana;">Utility Suite 2.0</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Workspaces/Workspace.aspx?id=0da873e9-3ab0-461d-8c3f-c5fb62230765"><span style="color:blue;font-family:Verdana;">Developer</span></a><a href="http://www.gotdotnet.com/Workspaces/Workspace.aspx?id=0da873e9-3ab0-461d-8c3f-c5fb62230765"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Workspaces/Workspace.aspx?id=0da873e9-3ab0-461d-8c3f-c5fb62230765"><span style="color:blue;font-family:Verdana;">Project Kick Start for SharePoint</span></a><a href="http://www.gotdotnet.com/Workspaces/Workspace.aspx?id=0da873e9-3ab0-461d-8c3f-c5fb62230765"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.citeknet.com/Products/tabid/54/ctl/Edit/mid/381/Downloads/tabid/53/Default.aspx"><span style="color:blue;font-family:Verdana;">Free</span></a><a href="http://www.citeknet.com/Products/tabid/54/ctl/Edit/mid/381/Downloads/tabid/53/Default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.citeknet.com/Products/tabid/54/ctl/Edit/mid/381/Downloads/tabid/53/Default.aspx"><span style="color:blue;font-family:Verdana;">ifilters!!! (citeknet.com)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/ryanrogers/archive/2005/07/25/443147.aspx"><span style="color:blue;font-family:Verdana;">SPSReport</span></a><a href="http://blogs.msdn.com/ryanrogers/archive/2005/07/25/443147.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/ryanrogers/archive/2005/07/25/443147.aspx"><span style="color:blue;font-family:Verdana;">Utility (Ryan Rogers)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepoint-france.com/Products/DocumentRecovery/Default.aspx"><span style="color:blue;font-family:Verdana;">Document</span></a><a href="http://www.sharepoint-france.com/Products/DocumentRecovery/Default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepoint-france.com/Products/DocumentRecovery/Default.aspx"><span style="color:blue;font-family:Verdana;">Recovery Tool (Free from S</span></a><a href="http://www.sharepoint-france.com/Products/DocumentRecovery/Default.aspx"><span style="color:blue;font-family:Verdana;">tephane Cordonnier &#8211; Unsupported by MS)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx"><span style="color:blue;font-family:Verdana;">Database Explorer</span></a><a href="http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx"><span style="color:blue;font-family:Verdana;">&amp;</span></a><a href="http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://mindsharpblogs.com/james/archive/2005/01/20/189.aspx"><span style="color:blue;font-family:Verdana;">SPExport (J Edelen)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=443"><span style="color:blue;font-family:Verdana;">STSADM</span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=443"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/sharepoint/downloads/components/detail.asp?a=443"><span style="color:blue;font-family:Verdana;">for Windows (Microsoft)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.aimingtech.com/av_ifilter/"><span style="color:blue;font-family:Verdana;">Audio Video IFilter &#8211; WMA, WMV, MP3</span></a><a href="http://www.aimingtech.com/av_ifilter/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.aimingtech.com/av_ifilter/"><span style="color:blue;font-family:Verdana;">IFilter for Microsoft Indexing Service</span></a><a href="http://www.aimingtech.com/av_ifilter/"><span style="color:blue;font-family:Verdana;"> </span></a></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0fda5912-c136-4b44-911a-011adfcc66e3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">WPPackager</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0fda5912-c136-4b44-911a-011adfcc66e3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0fda5912-c136-4b44-911a-011adfcc66e3&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">for Packaging and Deploying Web Parts</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CAC3E0D2-BEC1-494C-A74E-75936B88E3B5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Web</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CAC3E0D2-BEC1-494C-A74E-75936B88E3B5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=CAC3E0D2-BEC1-494C-A74E-75936B88E3B5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Part Templates for Visual Studio .NET</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/mkruger/archive/2005/08/03/3057.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/08/03/3057.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/mkruger/archive/2005/08/03/3057.aspx"><span style="color:blue;font-family:Verdana;">Site Templates (30 New Templates!)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=03607516-cbec-4724-b4a4-aa7f09304ba5&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003 Discovery Kit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=E7EEC77D-4365-4B66-8E8D-9D079C509679&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=E7EEC77D-4365-4B66-8E8D-9D079C509679&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=E7EEC77D-4365-4B66-8E8D-9D079C509679&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Language Template Pack</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a0cccb0d-d8a3-4efa-81ae-c666e50707a1&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a0cccb0d-d8a3-4efa-81ae-c666e50707a1&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=a0cccb0d-d8a3-4efa-81ae-c666e50707a1&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003 Word Breaker Update</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.80-20.com/complianceserver/?referral=mkruger"><span style="color:blue;font-family:Verdana;">80-20 Compliance</span></a><a href="http://www.80-20.com/complianceserver/?referral=mkruger"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.80-20.com/complianceserver/?referral=mkruger"><span style="color:blue;font-family:Verdana;">Server Beta (Records Management)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.tamtam.nl/mart/SharePointTipSynchronizeDocumentLibrariesWithSyncToy10.aspx"><span style="color:blue;font-family:Verdana;">SyncToy</span></a><a href="http://blogs.tamtam.nl/mart/SharePointTipSynchronizeDocumentLibrariesWithSyncToy10.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.tamtam.nl/mart/SharePointTipSynchronizeDocumentLibrariesWithSyncToy10.aspx"><span style="color:blue;font-family:Verdana;">for Windows XP</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.conchango.com/stuartpreston/files/spsbulkupload.zip"><span style="color:blue;font-family:Verdana;">spsbulkupload</span></a><a href="http://blogs.conchango.com/stuartpreston/files/spsbulkupload.zip"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.conchango.com/stuartpreston/files/spsbulkupload.zip"><span style="color:blue;font-family:Verdana;">(Stuart Preston)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.winapptechnology.com/products/free/freeopwp.asp"><span style="color:blue;font-family:Verdana;">Outlook Power</span></a><a href="http://www.winapptechnology.com/products/free/freeopwp.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.winapptechnology.com/products/free/freeopwp.asp"><span style="color:blue;font-family:Verdana;">Tool for SharePoint (By WinApp &#8211; Registration Required)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=6F86937B-533A-466D-A8E8-AFF85AD3D212&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Active</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=6F86937B-533A-466D-A8E8-AFF85AD3D212&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=6F86937B-533A-466D-A8E8-AFF85AD3D212&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Directory Migration Tool v3.0</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/bsimser/archive/2005/10/05/426720.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://weblogs.asp.net/bsimser/archive/2005/10/05/426720.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/bsimser/archive/2005/10/05/426720.aspx"><span style="color:blue;font-family:Verdana;">Builder (SharePoint XML editor by B Simser)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=8437a203-f377-401c-b23d-ae59e6f05b80"><span style="color:blue;font-family:Verdana;">SPS</span></a><a href="http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=8437a203-f377-401c-b23d-ae59e6f05b80"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/releases/viewuploads.aspx?id=8437a203-f377-401c-b23d-ae59e6f05b80"><span style="color:blue;font-family:Verdana;">Cross Forest People Picker</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=F59D4BEA-2A51-4D7B-B9D6-3B8639554992&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=F59D4BEA-2A51-4D7B-B9D6-3B8639554992&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=F59D4BEA-2A51-4D7B-B9D6-3B8639554992&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003 Sample: Back Up and Restore</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=204"><span style="color:blue;font-family:Verdana;">WSS</span></a><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=204"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.bluedoglimited.com/SharePointThoughts/ViewPost.aspx?ID=204"><span style="color:blue;font-family:Verdana;">URL Zone Administration Utility (T. Starr, MSFT)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;">SharePoint RSS/ATOM</span></a><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://x5.tsiokos.com/posts/2005/01/11/wss-rss/"><span style="color:blue;font-family:Verdana;">reader</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.citeknet.com/Products/IFilters/IFilterExplorer/tabid/62/Default.aspx"><span style="color:blue;font-family:Verdana;">iFilter</span></a><a href="http://www.citeknet.com/Products/IFilters/IFilterExplorer/tabid/62/Default.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.citeknet.com/Products/IFilters/IFilterExplorer/tabid/62/Default.aspx"><span style="color:blue;font-family:Verdana;">Explorer (By Citeknet)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=80fe54b2-d7d0-4cff-8d9d-19d79a7d21a6"><span style="color:blue;font-family:Verdana;">Report</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=80fe54b2-d7d0-4cff-8d9d-19d79a7d21a6"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=80fe54b2-d7d0-4cff-8d9d-19d79a7d21a6"><span style="color:blue;font-family:Verdana;">Pack Source Code &#8211; GotDotNet Workspace</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/PermaLink,guid,fd35fcfb-d51a-49dc-a26a-d62932a9e242.aspx"><span style="color:blue;font-family:Verdana;">CAML</span></a><a href="http://www.ideseg.com/PermaLink,guid,fd35fcfb-d51a-49dc-a26a-d62932a9e242.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/PermaLink,guid,fd35fcfb-d51a-49dc-a26a-d62932a9e242.aspx"><span style="color:blue;font-family:Verdana;">Editor by cSeg</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://spaces.msn.com/members/mzaki/Blog/cns!1pqtE4o_G0oXt4hywJe-Sjfg!496.entry"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://spaces.msn.com/members/mzaki/Blog/cns!1pqtE4o_G0oXt4hywJe-Sjfg!496.entry"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://spaces.msn.com/members/mzaki/Blog/cns!1pqtE4o_G0oXt4hywJe-Sjfg!496.entry"><span style="color:blue;font-family:Verdana;">Database Split</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://workspaces.gotdotnet.com/reghost"><span style="color:blue;font-family:Verdana;">ReGhost.NET (Alternative for</span></a><a href="http://workspaces.gotdotnet.com/reghost"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://workspaces.gotdotnet.com/reghost"><span style="color:blue;font-family:Verdana;">ReGhosting)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=0a5335fa-b50f-44f0-9f24-f236efec8655"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=0a5335fa-b50f-44f0-9f24-f236efec8655"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=0a5335fa-b50f-44f0-9f24-f236efec8655"><span style="color:blue;font-family:Verdana;">Advanced Search Tools (SAST)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=80fe54b2-d7d0-4cff-8d9d-19d79a7d21a6"><span style="color:blue;font-family:Verdana;">SQL</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=80fe54b2-d7d0-4cff-8d9d-19d79a7d21a6"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=80fe54b2-d7d0-4cff-8d9d-19d79a7d21a6"><span style="color:blue;font-family:Verdana;">Report Pack for SharePoint (gotdotnet)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=6eff7d8a-92ee-4525-a625-b592bb9d0c95"><span style="color:blue;font-family:Verdana;">ReGhost.NET</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=6eff7d8a-92ee-4525-a625-b592bb9d0c95"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=6eff7d8a-92ee-4525-a625-b592bb9d0c95"><span style="color:blue;font-family:Verdana;">- (A Ghost Hunter Alternative for SharePoint)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://weblogs.asp.net/soever/archive/2006/01/12/435105.aspx"><span style="color:blue;font-family:Verdana;">MacawSharePointSkinner</span></a><a href="http://weblogs.asp.net/soever/archive/2006/01/12/435105.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://weblogs.asp.net/soever/archive/2006/01/12/435105.aspx"><span style="color:blue;font-family:Verdana;">1.0.0.1</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://james.milne.com/SPStatus/download/files.htm"><span style="color:blue;font-family:Verdana;">SPSStatus 1.1 (Broken</span></a><a href="http://james.milne.com/SPStatus/download/files.htm"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://james.milne.com/SPStatus/download/files.htm"><span style="color:blue;font-family:Verdana;">Link Detector by J. Milne)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.tamtam.nl/mart/PermaLink,guid,e43c0a89-4052-4ad8-9906-561c0f3bddd2.aspx"><span style="color:blue;font-family:Verdana;">Visio</span></a><a href="http://blogs.tamtam.nl/mart/PermaLink,guid,e43c0a89-4052-4ad8-9906-561c0f3bddd2.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.tamtam.nl/mart/PermaLink,guid,e43c0a89-4052-4ad8-9906-561c0f3bddd2.aspx"><span style="color:blue;font-family:Verdana;">Template for Designing SharePoint Sites</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://sharepointmn.inetium.com/Shared%20Documents/WSSBackup.zip"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://sharepointmn.inetium.com/Shared%20Documents/WSSBackup.zip"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://sharepointmn.inetium.com/Shared%20Documents/WSSBackup.zip"><span style="color:blue;font-family:Verdana;">Site Collection Backup Script</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ideseg.com/PermaLink,guid,f99ea558-da49-4396-a728-6a0b8fe539a3.aspx"><span style="color:blue;font-family:Verdana;">SharePoint/Visual</span></a><a href="http://www.ideseg.com/PermaLink,guid,f99ea558-da49-4396-a728-6a0b8fe539a3.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ideseg.com/PermaLink,guid,f99ea558-da49-4396-a728-6a0b8fe539a3.aspx"><span style="color:blue;font-family:Verdana;">Studio 2005 Web Part template project</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=134ECBB0-C162-4D07-BEF3-0B602C4A79DD&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">MSG</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=134ECBB0-C162-4D07-BEF3-0B602C4A79DD&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=134ECBB0-C162-4D07-BEF3-0B602C4A79DD&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">iFilter</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.crsw.com/mark/articles/1100.aspx"><span style="color:blue;font-family:Verdana;">Web Part Package</span></a><a href="http://blogs.crsw.com/mark/articles/1100.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.crsw.com/mark/articles/1100.aspx"><span style="color:blue;font-family:Verdana;">Installer</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6e9925c4-91da-404a-86dd-78d51bcf0a51&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6e9925c4-91da-404a-86dd-78d51bcf0a51&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=6e9925c4-91da-404a-86dd-78d51bcf0a51&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Content Management Server 2002 Connector for SharePoint Technologies</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">MSXML</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">4.0 Service Pack 2 (Microsoft XML Core Services)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=2409d67b-40e5-4f95-b3db-75625092c17b"><span style="color:blue;font-family:Verdana;">Web</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=2409d67b-40e5-4f95-b3db-75625092c17b"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=2409d67b-40e5-4f95-b3db-75625092c17b"><span style="color:blue;font-family:Verdana;">Part Manager (gotdotnet)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=a462f5d0-da65-4983-a4eb-88f49e6c0744"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=a462f5d0-da65-4983-a4eb-88f49e6c0744"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=a462f5d0-da65-4983-a4eb-88f49e6c0744"><span style="color:blue;font-family:Verdana;">Site Reports (gotdotnet)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=d81722ce-408c-4fb6-a429-2a7ecd62f674&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">SQL</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=d81722ce-408c-4fb6-a429-2a7ecd62f674&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=d81722ce-408c-4fb6-a429-2a7ecd62f674&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Server 2005 Report Pack</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=BCEDDB1C-D210-42D4-91C1-20DF50F19738"><span style="color:blue;font-family:Verdana;">SPProfileUpdate</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.kwizcom.com/ContentPage.asp?PageId=165"><span style="color:blue;font-family:Verdana;">SharePoint Site</span></a><a href="http://www.kwizcom.com/ContentPage.asp?PageId=165"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.kwizcom.com/ContentPage.asp?PageId=165"><span style="color:blue;font-family:Verdana;">Template Language Converter</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.developpeur.org/pierre/archive/2006/03/17/18537.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://blogs.developpeur.org/pierre/archive/2006/03/17/18537.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.developpeur.org/pierre/archive/2006/03/17/18537.aspx"><span style="color:blue;font-family:Verdana;">Alerts Report (French)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.paraesthesia.com/blog/comments.php?id=594_0_1_0_C"><span style="color:blue;font-family:Verdana;">SPS2003</span></a><a href="http://www.paraesthesia.com/blog/comments.php?id=594_0_1_0_C"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.paraesthesia.com/blog/comments.php?id=594_0_1_0_C"><span style="color:blue;font-family:Verdana;">Search Web Service Tester (Travis)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.quest.com/discovery_wizard_for_sharepoint/"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.quest.com/discovery_wizard_for_sharepoint/"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.quest.com/discovery_wizard_for_sharepoint/"><span style="color:blue;font-family:Verdana;">Discovery Wizard (Quest)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/krichie/archive/2006/04/26/584663.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://blogs.msdn.com/krichie/archive/2006/04/26/584663.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/krichie/archive/2006/04/26/584663.aspx"><span style="color:blue;font-family:Verdana;">Utility Suite 2.5 (K.Richie)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.darkblueduck.com/"><span style="color:blue;font-family:Verdana;">SharePoint Recycle Bin (Darkblueduck)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.sharepointblogs.com/ssa/archive/2006/05/23/7486.aspx"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.sharepointblogs.com/ssa/archive/2006/05/23/7486.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.sharepointblogs.com/ssa/archive/2006/05/23/7486.aspx"><span style="color:blue;font-family:Verdana;">Document Puller</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=918f8c18-89dc-4b47-82ca-34b393ea70e1&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=918f8c18-89dc-4b47-82ca-34b393ea70e1&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=918f8c18-89dc-4b47-82ca-34b393ea70e1&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Configuration Analyzer v1.0</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://office.microsoft.com/templates/preview.aspx?AssetID=TC011307771033&amp;CTT=98"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://office.microsoft.com/templates/preview.aspx?AssetID=TC011307771033&amp;CTT=98"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://office.microsoft.com/templates/preview.aspx?AssetID=TC011307771033&amp;CTT=98"><span style="color:blue;font-family:Verdana;">Office SharePoint Portal Server deployment</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/default.mspx"><span style="color:blue;font-family:Verdana;">Office</span></a><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/default.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/office/solutions/accelerators/scorecards/default.mspx"><span style="color:blue;font-family:Verdana;">Business Scorecards Accelerator</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=3ac05dc0-ae2b-4d76-aa91-ae6a2a896d93&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=3ac05dc0-ae2b-4d76-aa91-ae6a2a896d93&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=3ac05dc0-ae2b-4d76-aa91-ae6a2a896d93&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Office Information Bridge Framework 1.5 Resource Kit</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.aisto.com/roeder/dotnet/"><span style="color:blue;font-family:Verdana;">Lutz Roeder&#8217;s Reflector</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=38be67a5-2056-46a1-84b1-337ffb549c5c&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Office</span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=38be67a5-2056-46a1-84b1-337ffb549c5c&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?familyid=38be67a5-2056-46a1-84b1-337ffb549c5c&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Web Components</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17f00f0d-659a-433c-bf0d-a7628b00fe17&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17f00f0d-659a-433c-bf0d-a7628b00fe17&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=17f00f0d-659a-433c-bf0d-a7628b00fe17&amp;DisplayLang=en"><span style="color:blue;font-family:Verdana;">Portal Server 2003: IntelliSense XML Files</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_webparttemplates.asp"><span style="color:blue;font-family:Verdana;">Web</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_webparttemplates.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_sp2003_ta/html/sharepoint_webparttemplates.asp"><span style="color:blue;font-family:Verdana;">Part Templates for Microsoft Visual Studio .NET</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/technet/security/tools/mbsahome.mspx"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://www.microsoft.com/technet/security/tools/mbsahome.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/technet/security/tools/mbsahome.mspx"><span style="color:blue;font-family:Verdana;">Baseline Security Analyzer V1.2.1 (Mar 05)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blogs.msdn.com/nigelbridport/archive/2004/11/30/272173.aspx"><span style="color:blue;font-family:Verdana;">Nigel</span></a><a href="http://blogs.msdn.com/nigelbridport/archive/2004/11/30/272173.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blogs.msdn.com/nigelbridport/archive/2004/11/30/272173.aspx"><span style="color:blue;font-family:Verdana;">Bridgeport&#8217;s User Manager</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=ef665f66-dd48-48c7-a503-b85b404cf6db"><span style="color:blue;font-family:Verdana;">Event</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=ef665f66-dd48-48c7-a503-b85b404cf6db"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=ef665f66-dd48-48c7-a503-b85b404cf6db"><span style="color:blue;font-family:Verdana;">Handler &#8211; JPEG Parser</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.adobe.com/images/pdficon.gif"><span style="color:blue;font-family:Verdana;">Adobe PDF Icon (Handy)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.ontolica.com/English/Products/SharePointExplorer/SharePointExplorerHome.html"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.ontolica.com/English/Products/SharePointExplorer/SharePointExplorerHome.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.ontolica.com/English/Products/SharePointExplorer/SharePointExplorerHome.html"><span style="color:blue;font-family:Verdana;">Explorer</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://channel9.msdn.com/wiki/default.aspx/Channel9.DesktopSearchIFilters"><span style="color:blue;font-family:Verdana;">Free</span></a><a href="http://channel9.msdn.com/wiki/default.aspx/Channel9.DesktopSearchIFilters"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://channel9.msdn.com/wiki/default.aspx/Channel9.DesktopSearchIFilters"><span style="color:blue;font-family:Verdana;">iFilters!</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Log</span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;displaylang=en"><span style="color:blue;font-family:Verdana;">Parser 2.2</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blog.u2u.info/DottextWeb/patrick/archive/2005/05/29/3522.aspx"><span style="color:blue;font-family:Verdana;">CAML</span></a><a href="http://blog.u2u.info/DottextWeb/patrick/archive/2005/05/29/3522.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blog.u2u.info/DottextWeb/patrick/archive/2005/05/29/3522.aspx"><span style="color:blue;font-family:Verdana;">Query Builder and Execution Tool (U2U)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/act/htm/actml_main.asp"><span style="color:blue;font-family:Verdana;">Microsoft</span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/act/htm/actml_main.asp"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/act/htm/actml_main.asp"><span style="color:blue;font-family:Verdana;">Application Center Test (ACT)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.softwareqatest.com/qatweb1.html"><span style="color:blue;font-family:Verdana;">Web Site Test Tools and Site</span></a><a href="http://www.softwareqatest.com/qatweb1.html"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.softwareqatest.com/qatweb1.html"><span style="color:blue;font-family:Verdana;">Management Tools</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=6996fb17-2a54-4607-983b-35c7697baa53"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=6996fb17-2a54-4607-983b-35c7697baa53"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/workspaces/workspace.aspx?id=6996fb17-2a54-4607-983b-35c7697baa53"><span style="color:blue;font-family:Verdana;">Import Export tools and other utilities</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=fe3d7179-c107-45cf-bd3c-893d2cbb68c5"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=fe3d7179-c107-45cf-bd3c-893d2cbb68c5"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=fe3d7179-c107-45cf-bd3c-893d2cbb68c5"><span style="color:blue;font-family:Verdana;">Query Builder Tool</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://blog.spsclerics.com/articles/607.aspx"><span style="color:blue;font-family:Verdana;">CAML Viewer 1.0</span></a><a href="http://blog.spsclerics.com/articles/607.aspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://blog.spsclerics.com/articles/607.aspx"><span style="color:blue;font-family:Verdana;">(Stramit)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://spaces.msn.com/members/mzaki/Blog/cns!1pqtE4o_G0oXt4hywJe-Sjfg!253.entry"><span style="color:blue;font-family:Verdana;">Sharepoint</span></a><a href="http://spaces.msn.com/members/mzaki/Blog/cns!1pqtE4o_G0oXt4hywJe-Sjfg!253.entry"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://spaces.msn.com/members/mzaki/Blog/cns!1pqtE4o_G0oXt4hywJe-Sjfg!253.entry"><span style="color:blue;font-family:Verdana;">Documents Mover (Mohamed Zaki)</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.microsoft.com/windows/ie/previous/webaccess/webdevaccess.mspx"><span style="color:blue;font-family:Verdana;">IE</span></a><a href="http://www.microsoft.com/windows/ie/previous/webaccess/webdevaccess.mspx"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.microsoft.com/windows/ie/previous/webaccess/webdevaccess.mspx"><span style="color:blue;font-family:Verdana;">Web Developer Accessories</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.theegroup.net/Document%20Library/eGroup.ListXmlViewer.zip"><span style="color:blue;font-family:Verdana;">SharePoint</span></a><a href="http://www.theegroup.net/Document%20Library/eGroup.ListXmlViewer.zip"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.theegroup.net/Document%20Library/eGroup.ListXmlViewer.zip"><span style="color:blue;font-family:Verdana;">List XML Viewer Utility</span></a><span style="font-family:Verdana;"> </span></li>
<li><a href="http://www.workspaces.gotdotnet.com/wssrss"><span style="color:blue;font-family:Verdana;">RSS Extensions for SharePoint</span></a><a href="http://www.workspaces.gotdotnet.com/wssrss"><span style="color:blue;font-family:Verdana;"> </span></a><a href="http://www.workspaces.gotdotnet.com/wssrss"><span style="color:blue;font-family:Verdana;">(D. Larson)</span></a><span style="font-family:Verdana;"> </span></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=92&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/11/04/free-sharepoint-web-parts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>The 2007 Office System and Web 2.0</title>
		<link>http://prashantlink.wordpress.com/2008/10/31/the-2007-office-system-and-web-20/</link>
		<comments>http://prashantlink.wordpress.com/2008/10/31/the-2007-office-system-and-web-20/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 01:33:21 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Web 2]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=87</guid>
		<description><![CDATA[The set of programs, servers, and services in the 2007 Office system represents a huge breakthrough in terms of organizational productivity, data integration, and solution platform capabilities. By employing many of the Web 2.0 principles and technologies described earlier, the 2007 Office system delivers out-of-the-box solutions that enable users to leverage business data and participate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=87&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">The set of programs, servers, and services in the 2007 Office system represents a huge breakthrough in terms of organizational productivity, data integration, and solution platform capabilities. By employing many of the Web 2.0 principles and technologies described earlier, the 2007 Office system delivers out-of-the-box solutions that enable users to leverage business data and participate in business processes through a number of easy-to-use interfaces. Whether the information and processes are exposed in commonly used tools such as Microsoft® Office Outlook®, Word, InfoPath®, or Excel®, or exposed through a Web browser connecting to a server running Microsoft Office SharePoint® Server 2007, the 2007 Office system ensures that users can participate at the appropriate time by using the tools that make the most sense. Further, it provides a modern business application platform that prepares organizations for future opportunities by enabling them to easily adapt to rapidly changing business demands and it unlocks the ROI of existing systems. </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Technology Investments</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Beyond providing rich out-of-the-box solutions and a critical mass of platform technologies, the 2007 Office system provides an infrastructure on which enterprises can build, deploy, and host user-driven business applications. By building on top of the 2007 Office system, enterprises can take advantage of the services and Web 2.0 characteristics of the 2007 Office system. The goal for this release is to give users the choice of tools and give developers and IT professionals a strong, enterprise-ready, secure and extensible platform.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">XML</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">XML is at the core of Office system 2007 spanning client and server technologies. the 2007 Office system introduces a new Open XML format that allows much easier programmatic access to Office files. Microsoft Office InfoPath uses XML for gathering information, with the flexibility to incorporate data from many sources in a single form. On the server side, XML surfaces in a variety of ways allowing enterprises to style the content in the format they want by using Extensible Stylesheet Language Transformations (XSLT).</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">XML Web Services</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">The 2007 Office system server technologies expose data and application interfaces through XML Web Services. By using tools and technologies such as Microsoft Office SharePoint Designer 2007, the XML Web Part, the Business Data Catalog, and Forms Services, XML Web Services can be consumed with ease. There has also been a significant amount of work done with the Office client applications to interact with the server technologies by using XML Web Services as well surfacing applications and content in the client to make it easier for users to participate.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Ajax</span></strong><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"></span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Microsoft was one of the pioneers of Ajax applications with Outlook Web Access (OWA) 2000. Ajax development techniques have been used throughout the 2007 Office system server technologies to provide a rich, interactive browser experience. Ajax techniques have been used extensively in Office SharePoint Server features such as Excel Services and InfoPath Forms Services, OWA, and Communicator Web Access (CWA). Customers can also leverage these techniques and behaviors in their own solutions. For more information, please refer to the Basic Building Blocks: A Rich User Experience section in this white paper.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">RSS</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Office SharePoint Server 2007 exposes RSS feeds for data. For example, tasks, blogs, document libraries, contacts, and even search queries can be RSS enabled. On the client, Outlook 2007 includes a new feature for RSS aggregation that is integrated with Windows® Internet Explorer RSS capabilities.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Enterprise</span></strong><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> Search</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Office SharePoint Server 2007 delivers a single search engine for all content types so users can find database entries, documents, Web pages, file shares, people, and more. Extensibility ensures that specific data types are well indexed and that results are displayed in a mode appropriate to your business.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Metadata Services</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">The 2007 Office system boasts a number of powerful metadata technologies that allow companies to more effectively categorize and reuse a wide variety of information. Content types in Office SharePoint Server 2007 and Microsoft Windows SharePoint Services (SharePoint Products and Technologies) allow document contents and behaviors to be specified. The Business Data Catalog allows business entities such as purchase orders and invoices in back-end databases to be defined once and then surfaced in search results, portals, and lists. Other technologies such as data connection libraries make finding important data sources possible for all types of users.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Collaborative Workspaces</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Office SharePoint Server delivers an enterprise-grade, template-based workspace environment that is manageable, flexible, and powerful. Users can easily create workspaces with the right set of tools for the job by simply selecting the right template.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Common Web Application Framework</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Office SharePoint Server provides a single infrastructure for business productivity Web applications for the enterprise. Through its extensive use of Web 2.0 patterns and technologies, it allows enterprises to quickly develop, deploy, and host applications; these applications then inherit the Web 2.0 characteristics themselves, creating an ever richer user experience. Beyond providing a strong self-provisioning platform, Office SharePoint Server provides rich out-of-the-box functionality in areas such as Enterprise Content Management (ECM), Portal, Enterprise Search, Forms, and Business Intelligence. Deep integration with ASP.NET 2.0 makes Office SharePoint Server a natural extension of the ASP.NET platform and enables skill transfer and software reuse. For more information on how Office SharePoint Server provides a common Web application framework for organizations looking to host rich business applications, refer to the SharePoint Products and Technologies section in the Appendix.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Workflow</span></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">While workflow is not ordinarily included in most descriptions of Web 2.0, we feel workflow is important to include in any discussion of enterprise business applications because it represents such a necessary enabling technology, streamlining how groups work together in an organization. Based on the Windows Workflow Foundation, workflow in the 2007 Office system is hosted on the server and integrates with the Office clients to allow complex business processes to be captured and repeated. Built-in workflows support common tasks while extensibility by designers or professional developers ensures flexibility, fast deployment, and future headroom.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=87&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/10/31/the-2007-office-system-and-web-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>The Elements of Web 2.0</title>
		<link>http://prashantlink.wordpress.com/2008/10/31/the-elements-of-web-20/</link>
		<comments>http://prashantlink.wordpress.com/2008/10/31/the-elements-of-web-20/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 01:27:06 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Web 2]]></category>
		<category><![CDATA[Elements]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=83</guid>
		<description><![CDATA[Properly understood and deployed, Web 2.0 technologies, methods, and patterns can be adopted by the enterprise to great effect. They can boost overall organizational productivity and create a much stronger customer and partner connection. To capitalize on this opportunity, enterprises require an agile infrastructure with the tools and out-of-the-box solutions that allow users to interact [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=83&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Properly understood and deployed, Web 2.0 technologies, methods, and patterns can be adopted by the enterprise to great effect. They can boost overall organizational productivity and create a much stronger customer and partner connection. To capitalize on this opportunity, enterprises require an agile infrastructure with the tools and out-of-the-box solutions that allow users to interact with content, applications, and people in powerful new ways. In this section, we focus on a few of the key concepts that make this possible:</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Rich User Experience</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Providing users with a single place to do work increases productivity, minimizes training costs, and encourages deeper adoption and usage. Context shifts, which occur when users must switch between many different sites and applications to accomplish a task, can kill productivity and ruin any user experience. Whether they are customers, partners, or employees, users want the right tools at their fingertips at the right time. They want to access information and applications whether they are connected or disconnected, whether they are using a mobile device or a laptop, or whether they are using a thin client or a smart client. In the enterprise, a rich Web experience often means allowing users to use programs they already know to interact with new hosted services. It also means allowing them to take content offline or on the road. A rich, dynamic, responsive user interface enables people to drive the business, rather than limit them to the constraints of fixed applications and screens.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Data-Driven Architecture</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Data is the fuel that powers all information technology. The new breed of applications uses technologies such as XML and Web services to allow systems of all types to exchange data with greatly reduced integration complexity. Enterprises can use these technologies to access the critical business data that exists in many different formats and locations such as line-of-business (LOB) systems, Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) databases, documents, Web sites, content management systems, and archives. Metadata techniques can be used to help describe that data, making integration easier, making data more relevant to users, and streamlining reuse across many applications. Users can combine data and processes from different systems in their own “mash-ups,” creating entirely new applications.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">User-Driven Business Applications</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">With a Web 2.0 platform, users can create applications specific to their own needs. The shift of application development to the edge of the network is perhaps the most dramatic change for many organizations used to top-down solution models. However, the new models acknowledge that organizations simply cannot anticipate all of the creative solutions that occur at the edge in business units. On the Internet, these edge-created applications have been dubbed “mash-ups.” In the enterprise, they are often called composite applications. </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">However, many current composite application strategies fall short by focusing on simply resurfacing applications in a new user interface (UI) and failing to provide true user enablement. To capitalize on the user-driven application opportunity, enterprises will provide departments and users with a managed environment and familiar tools that allow them to easily customize or create their own workspaces and solutions. A flexible infrastructure that provides management and control while scaling from power-user configuration to professional developer solutions is the critical enabler for this opportunity.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">User Participation</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Today businesses understand that individual productivity is only part of the picture. Organizational productivity is the result of users collaborating and sharing content with one another. Enterprises can boost organizational productivity by making participation in Web communities as seamless and easy as possible. This approach can help not only new Web applications but existing applications as well. Many large system deployments such as ERP and CRM have been plagued by low user adoption, resulting in low-quality information in the system and robbing companies of expected return on investments. By making input easier and streamlining reporting and analysis, this new breed of application drives user adoption and unlocks the value of existing systems.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Collective Intelligence</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Enterprises with large employee, partner, and customer bases are beginning to realize the value of collective intelligence: the knowledge found in employees’ heads and in the databases and unstructured documents found across the organization. Search and collaboration are at the heart of this opportunity. When people can quickly find critical information and subject-matter experts, and then work seamlessly together, productivity can soar. New technologies such as dynamic workspaces, wikis, and enterprise search for people and data deliver a platform for collaborating on complex and creative tasks. Increased access to information enables valuable analysis, while easy publishing of insights ensures that others can benefit from these insights. The result is a positive feedback loop that amplifies the power of many people working together.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Low Cost Deployment and Management</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">The concepts behind Web 2.0 strike a new balance between the control and administrative ease of centralized systems and the flexibility and user empowerment of distributed systems. Web applications are by nature centrally deployed, so central services can manage applications and entire desktops automatically. While this style has always appealed to central IT organizations, it now becomes more appealing to users because they can reassemble the services available to them in the ways that suit them best. It also offers the potential to host or outsource applications and still manage them by allowing users to “pull” the applications to their desktop.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -12pt 3pt 0;"><a name="_Toc147161238"></a><a name="_Toc151972595"></a><span><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Technology Components</span></strong></span><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Beyond these high-level concepts, Web 2.0 includes some key technologies that successful companies should evaluate as a central part of their infrastructure. </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">XML </span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">XML is a self-describing data format that is easily understood by many applications and systems. XML provides the ability to define specific vocabularies to describe your organization’s information, enabling nearly seamless data interchange. For example, if every system throughout your organization and partner value chain describes purchase orders by using the same language and format, all the systems and applications that process expense-related information can seamlessly share data, vastly reducing integration complexity. </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">XML Web Services</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">XML Web services are interoperable software components that support computer-to-computer interaction over a network. XML Web Services can expose content and application interfaces to other systems, enabling dynamic scenarios such as mash-up or composite applications. Web services are a core component of solutions that integrate multiple applications, platforms, and databases.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Ajax</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Ajax</span><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;"> is a term coined in recent years that stands for Asynchronous JavaScript and XML. Ajax development techniques can be used to build Web applications that function like desktop applications, without the slow, tedious page refreshes of early Web applications. This ultimately results in a much smoother user experience, which boosts productivity and user acceptance. </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Rich Site Summary/Really Simple Syndication (RSS)</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">As its name implies, RSS delivers content through the use of syndication services, which provide an easy way to broadly publish information inside and outside of the organization. With the exploding amount of content and applications, syndication is an important step in obtaining maximum exposure and stickiness. </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Search</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">As demonstrated by the Internet search engines, search has become a first-class entry point for many types of tasks and is often the user’s first tool when trying to answer questions. Organizations can capitalize on this natural behavior by providing users with high-quality enterprise search results that are relevant and include multiple data types such as databases, documents, and people in a single search.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Metadata Services</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Metadata is literally “data about data.” It is a set of information that describes the rest of the information in an organization. It may describe business entities such as purchase orders, invoices, and expense reports, or it may describe database records and document structures to make them more reusable. Metadata helps with discovery of data sources and enables data reuse across applications and services by providing a common, central description of data structures and their behavior.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Collaborative Workspaces</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0 0 6pt;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Collaborative workspaces are places for groups to meet, talk, share information, and keep a record of members and activities. They provide a selection of configurable tools for storage, communication, display, item tracking, and so forth. These dynamic workspaces allow new group members to quickly come up to speed and provide the ongoing context tasks for projects.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:12pt -11.85pt 6pt 0;"><strong><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Common Web Application Framework</span></strong><strong></strong></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;color:black;line-height:150%;font-family:Verdana;">Due to its sheer size, the Internet is rife with different application frameworks. Enterprises, however, cannot afford this kind of infrastructure fragmentation. To maximize return on investment (ROI), enterprises must standardize on a common Web application framework for easy application creation and deployment. A strong building-block approach to application design allows users to quickly create business applications based on reusable components. </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=83&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/10/31/the-elements-of-web-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint 2007 native Web Services</title>
		<link>http://prashantlink.wordpress.com/2008/10/31/sharepoint-2007-native-web-services/</link>
		<comments>http://prashantlink.wordpress.com/2008/10/31/sharepoint-2007-native-web-services/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 01:16:32 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Microsoft Sharepoint]]></category>
		<category><![CDATA[native]]></category>
		<category><![CDATA[Web Service]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=81</guid>
		<description><![CDATA[Web Services Administration Web Service Alerts Web Service Authentication Web Service Copy Web Service Document Workspace Web Service Forms Web Service Imaging Web Service List Data Retrieval Web Service Lists Web Service Meetings Web Service People Web Service Permissions Web Service SharePoint Directory Management Web Service Site Data Web Service Sites Web Service Search Web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=81&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<dl>
<div class="title"><strong>Web Services</strong></div>
<div>
<dl>
<dt><a id="ctl00_rs1_mainContentContainer_ctl00" href="http://msdn.microsoft.com/en-us/library/administration.aspx"><span style="color:#0033cc;">Administration Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl01" href="http://msdn.microsoft.com/en-us/library/alerts.aspx"><span style="color:#0033cc;">Alerts Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl02" href="http://msdn.microsoft.com/en-us/library/authentication.aspx"><span style="color:#0033cc;">Authentication Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl03" href="http://msdn.microsoft.com/en-us/library/copy.aspx"><span style="color:#0033cc;">Copy Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl04" href="http://msdn.microsoft.com/en-us/library/ms774834.aspx"><span style="color:#0033cc;">Document Workspace Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl05" href="http://msdn.microsoft.com/en-us/library/forms.aspx"><span style="color:#0033cc;">Forms Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl06" href="http://msdn.microsoft.com/en-us/library/imaging.aspx"><span style="color:#0033cc;">Imaging Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl07" href="http://msdn.microsoft.com/en-us/library/ms774413.aspx"><span style="color:#0033cc;">List Data Retrieval Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl08" href="http://msdn.microsoft.com/en-us/library/lists.aspx"><span style="color:#0033cc;">Lists Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl09" href="http://msdn.microsoft.com/en-us/library/ms774629.aspx"><span style="color:#0033cc;">Meetings Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl10" href="http://msdn.microsoft.com/en-us/library/people.aspx"><span style="color:#0033cc;">People Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl11" href="http://msdn.microsoft.com/en-us/library/permissions.aspx"><span style="color:#0033cc;">Permissions Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl12" href="http://msdn.microsoft.com/en-us/library/websvcsharepointdirectorymanagementservice.aspx"><span style="color:#0033cc;">SharePoint Directory Management Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl13" href="http://msdn.microsoft.com/en-us/library/ms774821.aspx"><span style="color:#0033cc;">Site Data Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl14" href="http://msdn.microsoft.com/en-us/library/sites.aspx"><span style="color:#0033cc;">Sites Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl15" href="http://msdn.microsoft.com/en-us/library/search.aspx"><span style="color:#0033cc;">Search Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl16" href="http://msdn.microsoft.com/en-us/library/ms772647.aspx"><span style="color:#0033cc;">Users and Groups Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl17" href="http://msdn.microsoft.com/en-us/library/ms772545.aspx"><span style="color:#0033cc;">Versions Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl18" href="http://msdn.microsoft.com/en-us/library/views.aspx"><span style="color:#0033cc;">Views Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl19" href="http://msdn.microsoft.com/en-us/library/ms774569.aspx"><span style="color:#0033cc;">Web Part Pages Web Service</span></a> </dt>
<dt><a id="ctl00_rs1_mainContentContainer_ctl20" href="http://msdn.microsoft.com/en-us/library/webs.aspx"><span style="color:#0033cc;">Webs Web Service</span></a></dt>
</dl>
</div>
</dl>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=81&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/10/31/sharepoint-2007-native-web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Office SharePoint Server 2007 and Related Technologies pricing</title>
		<link>http://prashantlink.wordpress.com/2008/10/31/microsoft-office-sharepoint-server-2007-and-related-technologies-pricing/</link>
		<comments>http://prashantlink.wordpress.com/2008/10/31/microsoft-office-sharepoint-server-2007-and-related-technologies-pricing/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 00:33:42 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Microsoft Sharepoint]]></category>
		<category><![CDATA[Price]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[SharePoint Server 2007]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=74</guid>
		<description><![CDATA[Servers Estimated Price Office SharePoint Server 2007 $4424 Office SharePoint Server 2007 for Search Standard $8213 Office SharePoint Server 2007 for Search Enterprise $57,670 Office Forms Server 2007 $4424   Client Access Licenses Estimated Price Office SharePoint Server 2007 Standard CAL $94 Office SharePoint Server 2007 Enterprise CAL1 $75 Office Forms Server 2007 CAL $54 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=74&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<table class="MsoNormalTable" style="width:90%;border-collapse:collapse;margin:auto auto auto 1.2pt;" border="1" cellspacing="0" cellpadding="0" width="90%">
<tbody>
<tr>
<td style="background:#f2a31b;width:75%;border:windowtext 1pt solid;padding:3pt 6pt;" width="75%" valign="bottom">
<p class="MsoNormal" style="margin:3pt;"><strong><span style="font-size:9pt;color:white;font-family:Verdana;">Servers</span></strong></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:windowtext 1pt solid;background:#f2a31b;border-left:#d4d0c8;width:25%;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" width="25%" valign="bottom">
<p class="MsoNormal" style="margin:3pt;"><strong><span style="font-size:9pt;color:white;font-family:Verdana;">Estimated Price</span></strong></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office SharePoint Server 2007</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$4424</span></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office SharePoint Server 2007 for Search Standard</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$8213</span></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office SharePoint Server 2007 for Search Enterprise</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$57,670</span></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office Forms Server 2007</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$4424</span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="line-height:19.2pt;margin:0;"><span style="display:none;font-size:9pt;color:#484848;font-family:Verdana;"> </span></p>
<table class="MsoNormalTable" style="width:90%;border-collapse:collapse;margin:auto auto auto 1.2pt;" border="1" cellspacing="0" cellpadding="0" width="90%">
<tbody>
<tr>
<td style="background:#f2a31b;width:75%;border:windowtext 1pt solid;padding:3pt 6pt;" width="75%" valign="bottom">
<p class="MsoNormal" style="margin:3pt;"><strong><span style="font-size:9pt;color:white;font-family:Verdana;">Client Access Licenses</span></strong></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:windowtext 1pt solid;background:#f2a31b;border-left:#d4d0c8;width:25%;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" width="25%" valign="bottom">
<p class="MsoNormal" style="margin:3pt;"><strong><span style="font-size:9pt;color:white;font-family:Verdana;">Estimated Price</span></strong></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office SharePoint Server 2007 Standard CAL</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$94</span></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office SharePoint Server 2007 Enterprise CAL<sup>1</sup></span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$75</span></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office Forms Server 2007 CAL</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$54</span></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office SharePoint Designer 2007</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$187</span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="line-height:19.2pt;margin:0;"><span style="display:none;font-size:9pt;color:#484848;font-family:Verdana;"> </span></p>
<table class="MsoNormalTable" style="width:90%;border-collapse:collapse;margin:auto auto auto 1.2pt;" border="1" cellspacing="0" cellpadding="0" width="90%">
<tbody>
<tr>
<td style="background:#f2a31b;width:75%;border:windowtext 1pt solid;padding:3pt 6pt;" width="75%" valign="bottom">
<p class="MsoNormal" style="margin:3pt;"><strong><span style="font-size:9pt;color:white;font-family:Verdana;">Internet Facing Sites</span></strong></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:windowtext 1pt solid;background:#f2a31b;border-left:#d4d0c8;width:25%;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" width="25%" valign="bottom">
<p class="MsoNormal" style="margin:3pt;"><strong><span style="font-size:9pt;color:white;font-family:Verdana;">Estimated Price</span></strong></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office SharePoint Server 2007 for Internet sites</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;background-color:transparent;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$40,943 </span></p>
</td>
</tr>
<tr>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:windowtext 1pt solid;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">Office Forms Server 2007 for Internet sites</span></p>
</td>
<td style="border-right:windowtext 1pt solid;border-top:#d4d0c8;background:#f2f2f2;border-left:#d4d0c8;border-bottom:windowtext 1pt solid;padding:3pt 6pt;" valign="top">
<p class="MsoNormal" style="margin:3pt;"><span style="font-size:9pt;font-family:Verdana;">$22,118 </span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="line-height:19.2pt;margin:13.5pt 0;"><span style="font-size:9pt;color:#484848;font-family:Verdana;">To be licensed for the Enterprise Edition functionality of Office SharePoint Server 2007, both the Standard and Enterprise client access licenses are required. </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=74&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/10/31/microsoft-office-sharepoint-server-2007-and-related-technologies-pricing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>Office 2003 and SharePoint 2007 &#8211; comparision</title>
		<link>http://prashantlink.wordpress.com/2008/10/31/office-2003-and-sharepoint-2007-comparision/</link>
		<comments>http://prashantlink.wordpress.com/2008/10/31/office-2003-and-sharepoint-2007-comparision/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 00:25:51 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Microsoft Sharepoint]]></category>
		<category><![CDATA[comparision]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Office 2003]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[SharePoint Server 2007]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=72</guid>
		<description><![CDATA[In my previous post I mentioned that if you are going to use SharePoint 2007 you really should use Office 2007 with it. In this post I will try to describe differences between various versions so you can know what to expect on your implementation. Every project is different, and you will encounter numerous combinations [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=72&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="line-height:150%;text-align:justify;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">In my previous post I mentioned that if you are going to use SharePoint 2007 you really should use Office 2007 with it. In this post I will try to describe differences between various versions so you can know what to expect on your implementation.</span></p>
<p style="line-height:150%;text-align:justify;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Every project is different, and you will encounter numerous combinations of Microsoft software installed. Some large corporations we work with, are still using Office 2000 and Office XP. The majority of enterprise accounts are still using Office 2003 on Windows XP. (I cannot find any hard figures on this though).</span></p>
<p style="line-height:150%;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Scenario 1</span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"></span></p>
<p style="line-height:150%;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Client platform</span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">: Office 2007<br />
<strong>Server Platform</strong>: SharePoint Portal Server 2003</span></p>
<p style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">You might have a customer that moved to Office 2007 but who is still using SharePoint 2003. There might be a number of reasons for this. Your customer probably has a very customized  SharePoint 2003 and have decided not to upgrade it because it the solution work fine.</span></p>
<table class="MsoNormalTable" style="width:100%;" border="0" cellspacing="1" cellpadding="0" width="100%">
<tbody>
<tr>
<td style="background:black;width:58.04%;border:#d4d0c8;padding:.75pt;" width="58%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;color:white;line-height:150%;font-family:Verdana;">Feature</span></p>
</td>
<td style="background:black;width:41.48%;border:#d4d0c8;padding:.75pt;" width="41%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><strong><span style="font-size:10pt;color:white;line-height:150%;font-family:Verdana;">Office 2007 with SharePoint Portal Server 2003</span></strong><span style="font-size:10pt;color:white;line-height:150%;font-family:Verdana;"></span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;width:58.04%;border:windowtext 1pt solid;padding:.75pt;" width="58%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Saving documents to SharePoint sites</span></p>
</td>
<td style="background:gainsboro;width:41.48%;border:windowtext 1pt solid;padding:.75pt;" width="41%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;width:58.04%;border:windowtext 1pt solid;padding:.75pt;" width="58%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Editing documents stored to a SharePoint site</span></p>
</td>
<td style="background:gainsboro;width:41.48%;border:windowtext 1pt solid;padding:.75pt;" width="41%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No<br />
(Edition only works for the Office 2003 formats. You cannot save a DOCX back to SharePoint 2003)</span></td>
</tr>
<tr>
<td style="background:gainsboro;width:58.04%;border:windowtext 1pt solid;padding:.75pt;" width="58%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Check-out/in, version history</span></p>
</td>
<td style="background:gainsboro;width:41.48%;border:windowtext 1pt solid;padding:.75pt;" width="41%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;width:58.04%;border:windowtext 1pt solid;padding:.75pt;" width="58%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Updating properties</span></p>
</td>
<td style="background:gainsboro;width:41.48%;border:windowtext 1pt solid;padding:.75pt;" width="41%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes<br />
(it works but not as elegant as on SharePoint 2007)</span></td>
</tr>
</tbody>
</table>
<p style="line-height:150%;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> You will also experience the following server limitations: </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:10pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &quot;">         </span></span></span><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Inability to index new document formats </span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 12pt .75in;"><span style="font-size:10pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &quot;">         </span></span></span><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Problems with using Address Books </span></p>
<p style="line-height:150%;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Scenario 2</span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"></span></p>
<p style="line-height:150%;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Server Platform: </span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Office SharePoint Server 2007</span></p>
<p style="line-height:150%;text-align:justify;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">In most cases you will run into this scenario. Your customer decided to implement SharePoint 2007, but they will still be using Office 2003. Here are differences between Office 2003 and Office 2007 when working with data from SharePoint sites.</span></p>
<table class="MsoNormalTable" style="width:100%;border:windowtext 1pt solid;" border="1" cellspacing="1" cellpadding="0" width="100%">
<tbody>
<tr>
<td style="background:black;width:50%;border:windowtext 1pt solid;padding:.75pt;" width="50%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;color:white;line-height:150%;font-family:Verdana;">Application / Feature</span></p>
</td>
<td style="background:black;width:25%;border:windowtext 1pt solid;padding:.75pt;" width="25%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;color:white;line-height:150%;font-family:Verdana;">Office 2003</span></p>
</td>
<td style="background:black;width:25%;border:windowtext 1pt solid;padding:.75pt;" width="25%" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;color:white;line-height:150%;font-family:Verdana;">Office 2007</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Saving and editing Office 2003 files from SharePoint sites</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Saving and editing Office 2007 files from SharePoint sites</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes<br />
You must install Compatibility Pack.</span></td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Check-out/in, version history</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Start a workflow</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gray;border:windowtext 1pt solid;padding:.75pt;" colspan="3" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Word</span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"></span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Updating properties</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes<br />
Improved in Word 2007.</span></td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Inserting document properties for (DOC/DOCX)</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No<br />
(DOC file format)</span></td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes<br />
(DOCX file format)</span></td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Automatically updating server properties that were inserted to document body (DOC/DOCX)</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Write a blog post</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Compare versions of a SharePoint document</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No / Yes<br />
(Very limited)</span></td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gray;border:windowtext 1pt solid;padding:.75pt;" colspan="3" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Outlook</span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"></span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Synchronize tasks/discussion boards to Outlook</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Synchronizing calendars to Outlook</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No / Yes<br />
(One-way sync only; from SharePoint to Outlook)</span></td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Synchronizing contacts to Outlook</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No / Yes<br />
(One-way sync only; from SharePoint to Outlook)</span></td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Synchronize document libraries to Outlook</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gray;border:windowtext 1pt solid;padding:.75pt;" colspan="3" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Excel</span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"></span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Publishing Excel files as web pages</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
<tr>
<td style="background:gray;border:windowtext 1pt solid;padding:.75pt;" colspan="3" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;">PowerPoint</span></strong><span style="font-size:10pt;line-height:150%;font-family:Verdana;"></span></p>
</td>
</tr>
<tr>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Working with Slide Library</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">No</span></p>
</td>
<td style="background:gainsboro;border:windowtext 1pt solid;padding:.75pt;" valign="top">
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Yes</span></p>
</td>
</tr>
</tbody>
</table>
<p style="line-height:150%;text-align:justify;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">Bear in mind that some customers will note be willing to upgrade to the new platform. During your project ask what are the key features they want to use to check if these are available for their Office version</span><span style="font-size:small;font-family:Times New Roman;">.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=72&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/10/31/office-2003-and-sharepoint-2007-comparision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>Web 2.0 : Your corporate intranet ?</title>
		<link>http://prashantlink.wordpress.com/2008/10/31/web-20-your-corporate-intranet/</link>
		<comments>http://prashantlink.wordpress.com/2008/10/31/web-20-your-corporate-intranet/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 00:14:45 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Microsoft Sharepoint]]></category>
		<category><![CDATA[Web 2]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[intranet portal]]></category>
		<category><![CDATA[intranet solution]]></category>
		<category><![CDATA[SharePoint 2007]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[wikis]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=70</guid>
		<description><![CDATA[When talking about intranet portals from end users perspective, the most important “feature” for them is content. Yes, a Silverlight photo gallery is very cool but employees are visiting intranet to find more information about company, to perform their jobs better etc…   While consulting customers on intranet solution architecture, I always advise them Web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=70&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">When talking about intranet portals from end users perspective, the most important “feature” for them is content. Yes, a Silverlight photo gallery is very cool but employees are visiting intranet to find more information about company, to perform their jobs better etc…</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">While consulting customers on intranet solution architecture, I always advise them Web 2.0 concepts. When you are building intranet solution on SharePoint 2007 (or any other CMS solution); you should allow maximum number of employees to create content. In such a case your intranet site will become like Wikipedia. The key for Wikipedia’s success was the ability to have virtually unlimited number of authors from all over the globe.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">You might ask: “How many is many, and how many is too many?“ Well, it all depends on your company’s profile and internal organization, but anyone who has a computer and knows how to use Word is a potential contributor to an intranet site.</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">What are key benefits of this Web2.0/open approach? Instead of having just a small percentage of employees contributing, you will allow anyone that has something to say to be creative. On some sites like: policies, procedures, quality control, legal, etc. you will retain control, but when we are talking about general news, projects, information, events – what could go wrong?</span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;"> </span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:10pt;line-height:150%;font-family:Verdana;">If you are using SharePoint 2007 as your intranet platform, you can enjoy benefits of SharePoint platform to establish content approval, versioning, alerts and identity integration to track all modifications. I already wrote about using blogs as infrastructure for your intranet portal, but you can also use wikis, integration with email or regular pages to achieve the same result.</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=70&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/10/31/web-20-your-corporate-intranet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>
	</item>
		<item>
		<title>Use of Web 2.0 in business emerge</title>
		<link>http://prashantlink.wordpress.com/2008/10/29/use-of-web-20-in-business-emerge/</link>
		<comments>http://prashantlink.wordpress.com/2008/10/29/use-of-web-20-in-business-emerge/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 04:00:39 +0000</pubDate>
		<dc:creator>prashantlink</dc:creator>
				<category><![CDATA[Web 2]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[trend]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://prashantlink.wordpress.com/?p=64</guid>
		<description><![CDATA[The last few weeks have seen a series of interesting new reports, studies, and papers on the past, present, and future of Web 2.0 concepts and applications as applied to businesses.  Most notable for many industry watchers have been fairly rigorous new works by McKinsey &#38; Company as well as Forrester, whom have each released [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=64&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The last few weeks have seen a series of interesting new reports, studies,  and papers on the past, present, and future of Web 2.0 concepts and applications  as applied to businesses.  Most notable for many industry watchers have been  fairly rigorous new works by McKinsey &amp; Company as well as Forrester, whom  have each released the results of broad surveys of executives in various  industries.  The focus of both surveys was to capture a picture of the  interests, activities, motivators for Web 2.0 adoption of several thousand  C-level executives in medium to large companies.</p>
<p>While both the McKinsey  study and Forrester  report have summaries online — and you can read a detailed breakdown of the  fascinating adoption numbers in Nick Carr&#8217;s excellent roll-up of  many of the key numbers in the reports — what stands out clearly from the  state of Web 2.0 in business last year is the almost surprisingly high levels  interest in some of the more advanced, and powerful, concepts in the Web 2.0 practice set.</p>
<p>Gartner, for its part, had its own take on things last year with their widely  covered hype cycle report on  Web 2.0, indicating the things like <em>collective intelligence </em>(ostensibly the core  principle of Web 2.0<em>) </em>would be a long term, transformational  business strategy that they felt at the time would take at least 5 to 10 years  for broad industry uptake.  However, the report from McKinsey intriguing  suggests something much different may be taking place.</p>
<p>The numbers McKinsey provides from actual business leaders seems to indicate  that broad, active interest in collective intelligence is rapidly forming in the  offices of many company&#8217;s CIOs, CTOs, and other executives.  McKinsey cites that  fully 48% of the nearly 3,000 leading executives surveyed are <em>actively  investing </em>in collective intelligence approaches.  What makes this  interesting is that this number is a good bit more than executives are currently  reporting that they are investing in other well known Web 2.0 approaches  including social networking, RSS, podcasting, and even wikis and blogs, which  come in about 1/3 lower in overall interest.  In fact, out of all the Web 2.0  trends surveyed, only Web services has a bigger footprint than collective  intelligence in terms of current investment.  This strongly suggests some kind  of sea change in business thinking since last year.</p>
<p>This is a fascinating outcome since at a grassroots level  in the enterprise, and certainly out on the Web, the rise of wikis and in  particular blogs, are a much more common phenomenon than apps that focus on  collective intelligence, the latter which would manifest itself as any software  which aggregates the combined user created input of employees and/or customers,  partners, and suppliers en masse to create better knowledge and decisions.  And  although both wikis and blogs both accumulate collective intelligence (albeit  relatively unstructured) via user participation — open group editing of content  in the case of wikis, and conversations via comments and trackbacks in blogs —  it&#8217;s probably the more formal, more structured, and centrally driven collective  intelligence model that respondents were likely referring to since blogs and  wikis were already represented in the survey.</p>
<p><strong>Collective intelligence leads blogs and wikis in terms of business  interest?</strong></p>
<p>Taking a look at these results in general reminds us that many of the  outcomes that Web 2.0 technologies enable — the free flow of information,  emergent structure, higher levels of social activity, and decentralized  do-it-yourself peer production — are sometimes subversive and even somewhat  disruptive to traditional corporate structures and management processes.   Because I suspect that a survey of these same items taken of the general user  community — and not management — would find a different set of answers, and one  that would likely emphasize the Web 2.0 platforms that are under more end user  control.  By this I mean the aforementioned blogs and wikis, but probably social  networking applications as well.</p>
<p style="text-align:center;"><a href="http://prashantlink.files.wordpress.com/2008/10/web2trendsinbusiness.png"><img class="size-full wp-image-66 aligncenter" title="web2trendsinbusiness" src="http://prashantlink.files.wordpress.com/2008/10/web2trendsinbusiness.png?w=700" alt=""   /></a></p>
<p>Why is this an important distinction?  This question takes us to the actual  changes that the consumer Web appears to be imposing increasingly on our  organization from the bottom up.  The diagram I have above shows which aspects  of Web 2.0 tools and technologies are primarily created and controlled with  relative democratization by users (which is why they&#8217;re called peers in this  case), and which ones are primarily enabled, in fact are made possible at all,  by centralized IT.  Web services, APIs, and mashups are classic examples of  centrally created things which need governance and management, not to mention  good design and architecture, something that is still just not very DIY, at  least yet.  On the other hand, blogs and wikis are simple, elemental Web 2.0  platforms for self-expression and participation and are as simple to create by  anyone — along with the latest best practices — as spending 30 seconds in the  setup pages of your favorite enterprise blog or wiki hosting site.</p>
<p>However, as we&#8217;ve seen with things like IBM&#8217;s promising QEDWiki platform that allows  wikis to be the front end of an SOA, the world of end-user powered Web 2.0  platforms like blogs/wikis and the world of enterprise IT infrastructure and SOA  — the latter which organizations world-wide have been pouring billions and  billions into the last few years — are not separate worlds at all.  In fact,  it&#8217;s increasingly apparent that the Web 2.0 technologies which emphasize the  most user control are also the very tools that can unleash the investments the  business world has been making in information technology for almost a decade,  particularly around interoperability and reuse based on the open Web services  model.  The best way to exploit and leverage our businesses is increasingly  likely to use the combined power, reach, and ease-of-use of platforms such as  blogs and wikis to tap into and make use of our vast, and all-too-often  underutilized islands of data and IT infrastructure.</p>
<p>And as I discussed in my previous post, effective Web 2.0 in the enterprise,  whether that&#8217;s basic Enterprise 2.0 or a much broader and expansive view of Web  2.0 design patterns and business models which I&#8217;ve called Product Development  2.0 for lack of a better term,  actually requires the active support of both  the users on the ground as well as the top levels of an organization to really  take off.  Business are structured much differently that the consumer Web and  major impediments to use of Web 2.0 production and consumption scenarios exist.   This include lack of good enterprise search, mountains of closed legacy systems,  the challenge of securing highly open, deeply integrated applications, and  conflicting data models (XML, relational data, rich media, and more.) These are  all challenges to the ultimate success of Web 2.0 in the enterprise, even to the  point that some organizations are increasingly at risk of IT users doing so much  themselves that the IT department can begin to lose control.  That is, unless  they jump into the trenches with their users and help guide the application of  Web 2.0 tools without significantly hindering forward progress.</p>
<p><strong>More and more Web 2.0 tools and techniques studies become available </strong></p>
<p>But the true story of what is happening is still very much emerging.  Fresh  results from organizations like Edelman, Dartmouth, and many others have all  been published recently.. To get a sense of the full body of knowledge on the  use of Web 2.0 platforms in business (as well as the curiousity driving it),  Bill Ives recently did an  excellent job summarizing many of the Web 2.0 related studies in the last  year alone.  Here&#8217;s the list, with thanks:</p>
<p><a href="http://insidethecubicle.blogs.com/blog/2007/01/internal_commun.html">Edelman  Internal Communications Channels Study (2006)</a></p>
<p><a href="http://www.makovsky.com/mak/corporatebloggingsurvey/Makovsky2006StateOfCorporateBloggingSurvey.pdf">Makovsky  2006 State of Corporate Blogging Survey (May 2006)</a></p>
<p><a href="http://www.scoutblogging.com/success_study/">Northeastern University  &amp; Backbone Media Blogging Success Study (November 2006)</a></p>
<p><a href="http://www.backbonemedia.com/blogsurvey/">Corporate Blogging Survey  2005: Is It Worth The Hype? (Backbone Media)</a></p>
<p><a href="http://www.porternovelli.com/site/pressrelease.aspx?pressrelease_id=123&amp;pgName=news">Cymfony  and Porter Novelli Corporate Blog Survey (July 2006)</a></p>
<p><a href="http://ipr.wieck.com/files/uploads/2006_IPRRC_Weblogs.pdf">Weblogs  and Employee Communication: Ethical Questions for Corporate Blogging (Institute  for Public Relations, June 2006)</a></p>
<p><a href="http://jcmc.indiana.edu/vol11/issue2/kelleher.html">Organizational  Blogs and the Human Voice: Relational Strategies and Relational Outcomes  (Journal of Computer-Mediated Communication, January 2006)</a></p>
<p><a href="http://www.amanet.org/press/amanews/2006/blogs_2006.htm">2006  Workplace E-Mail, Instant Messaging &amp; Blog Survey (American Management  Association and e-Policy Institute, July 2006)</a></p>
<p><a href="http://www.socialtext.net/bizblogs/index.cgi?fortune_500_business_blogging_wiki">Fortune  500 Business Blogging Wiki (Socialtext, last updated in October 2006)</a></p>
<p><a href="http://www.blogbusinesssummit.com/fortune500/index.php?title=Main_Page">Fortune  500 Blog Project Wiki (Directed by Teresa Valdez Klein of Blog Business Summit  and Easton Ellsworth of Know More Media)</a></p>
<p><a href="http://www.umassd.edu/cmr/studies/cmrblogstudy2.pdf">The Hype is  Real: Social Media Invades the Inc. 500 (University of Massachusetts Dartmouth  Center for Marketing Research, January 2007)</a></p>
<p><a href="http://jeffreyhill.typepad.com/voiceblog/files/MBADissertation.pdf">The  Voice of the Blog: The Attitudes and Experiences of Small Business Bloggers  Using Blogs as a Marketing and Communications Tool. (Jeffrey Hill, unpublished  master’s thesis, University of Liverpool, 2005)</a></p>
<p><a href="http://www.thenewpr.com/">NewPR Wiki (contains lists of corporate  blogs and executive bloggers, ongoing)</a></p>
<p><a href="http://www.socialtext.com/customerstories">Socialtext Customer  Stories (case studies of wiki use from companies such as Dresdner Kleinwort  Wasserstein, Nokia, Ziff Davis and Kodak, ongoing)</a></p>
<p>Note that with lack of well-known success stories or famous industry  examples, documents such as these become the meat upon which executive decision  makers feast to drive and justify their decisions on new technologies and  innovation in general, sometimes even betting their careers.  And while we don&#8217;t  have enough information yet to satisfy many that are on the fence, it&#8217;s clear  that the conventional wisdom is beginning to shift from the wait-and-see of 2006  to the beginning of the adoption cycle in earnest this year.</p>
<p>I cited the list of studies above both as useful information for readers here  but also as an example that further shows the contrast between studies like  McKinsey&#8217;s and the trends in the general public uptake of social media platforms  like blogs and wikis.  In particular, I&#8217;m referring to the wealth of studies  around the rise of social media in contrast with general, corporate collective  intelligence projects and initiatives, which doesn&#8217;t seem to have anywhere near  the same grassroots interest.  Finally and somewhat surprisingly, being another  example of the wide variety we&#8217;re finding in early results, even mashups — a  very exciting DIY  phenomenon on the Web — are not particularly well represented (10-20%  investment/interest) both in terms of studies of top down activity by business  executives or by the studies coming out.  It is better forms of  <em>collaboration</em>, <em>knowledge retention</em>, <em>organizational  intelligence</em>, and <em>open, interoperable IT systems</em> that currently  seem to rule the discussion of Web 2.0 for business at present.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/prashantlink.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/prashantlink.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/prashantlink.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/prashantlink.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/prashantlink.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/prashantlink.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/prashantlink.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/prashantlink.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/prashantlink.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/prashantlink.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/prashantlink.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/prashantlink.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/prashantlink.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/prashantlink.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=prashantlink.wordpress.com&amp;blog=5017664&amp;post=64&amp;subd=prashantlink&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://prashantlink.wordpress.com/2008/10/29/use-of-web-20-in-business-emerge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e18a4944ab3838306e6c78d0f03440f1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Prashant</media:title>
		</media:content>

		<media:content url="http://prashantlink.files.wordpress.com/2008/10/web2trendsinbusiness.png" medium="image">
			<media:title type="html">web2trendsinbusiness</media:title>
		</media:content>
	</item>
	</channel>
</rss>
