<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>sharepoint-2007 &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/sharepoint-2007/</link>
	<description>Feed of posts on WordPress.com tagged "sharepoint-2007"</description>
	<pubDate>Tue, 01 Dec 2009 20:23:12 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Sparklines in SharePoint (part II) - A homemade bar graph]]></title>
<link>http://pathtosharepoint.wordpress.com/2009/12/01/sparklines-in-sharepoint-part-ii-a-homemade-bar-graph/</link>
<pubDate>Tue, 01 Dec 2009 16:14:37 +0000</pubDate>
<dc:creator>Christophe</dc:creator>
<guid>http://pathtosharepoint.wordpress.com/2009/12/01/sparklines-in-sharepoint-part-ii-a-homemade-bar-graph/</guid>
<description><![CDATA[In my last post, I introduced sparklines and their applications. Today, let&#8217;s see on an exampl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright" title="BarGraph" src="http://pathtosharepoint.files.wordpress.com/2009/11/bar1.jpg?w=184&#038;h=153" alt="" width="184" height="153" /></p>
<p>In <a href="http://pathtosharepoint.wordpress.com/2009/11/25/sparklines-more-information-in-less-space/" target="_blank">my last post</a>, I introduced sparklines and their applications. Today, let&#8217;s see on an example how to build simple bar graphs in a SharePoint list.</p>
<p><strong>The scenario</strong><br />
In my example, I am tracking customer support calls over time. For each product or service, I want to monitor:<br />
- the number of calls (too many support calls will kill my margins).<br />
- the  trend: call numbers should decline, as I address initial issues and improve the Quality of my product/service.</p>
<p><a href="http://pathtosharepoint.wordpress.com/files/2009/11/table.jpg"><img class="alignnone size-full wp-image-1118" title="table" src="http://pathtosharepoint.wordpress.com/files/2009/11/table.jpg" alt="" width="490" height="132" /></a></p>
<p>While the above table contains all the data I need, it is not easy to read. By including sparklines next to the numbers, I&#8217;ll be able to visualize both the level and the trend, for each item (cf. first screenshot).<br />
Ideally, a visual signal (for example a change in color) would alert me when I pass a certain threshold, but we&#8217;ll leave this for another day.</p>
<p>For a homemade solution, the easiest type to build is a bar graph. With more advanced tools, like the <a href="http://omnipotent.net/jquery.sparkline/" target="_blank">jQuery sparkline plugin</a>, I could also opt for a line graph or a discrete chart, as shown in <a href="http://www.endusersharepoint.com/blog/wp-content/uploads/2009/11/2009-12-01-Sparklines-01.gif" target="_blank">this screenshot</a>.</p>
<p>The method to render the graphs is &#8211; once again &#8211; the HTML calculated column:<br />
1/ Use a calculated column to build a HTML string that describes the bar graph<br />
2/ Apply the &#8220;Text to HTML&#8221; script that will change the HTML string into actual HTML.</p>
<p>If you haven&#8217;t used the &#8220;HTML calculated column&#8221; method yet, you&#8217;ll need to learn it first (it&#8217;s really worth it if you are interested in visualization solutions). For the latest information on the HTML calculated column, start with <a href="http://pathtosharepoint.wordpress.com/2009/11/19/html-calculated-column-minor-update-and-some-advice/" target="_blank">this post</a>.</p>
<p>If you are already familiar with this method, you&#8217;ll find below the formulas needed to render the bar graphs. For a first pass, feel free to skip the tedious explanations and simply copy/paste the formulas for the <strong>HTMLstring</strong> and <strong>BarGraph</strong> columns.</p>
<p><strong>Single bar</strong></p>
<p>Let&#8217;s start with a single bar for January. Once we get that, we&#8217;ll just replicate it for each month.</p>
<p>To adjust the graph size, I need to know the maximum value for my table data. For this, I am adding to my list a column, called Max (see first screenshot). In my example, I have chosen a fixed value of 2000 for Max, but I could also have entered a formula based on the content of other columns.</p>
<p>I can now:<br />
- calculate the height of my bar: 20*Jan/Max pixels (the maximum height will be 20 px).<br />
- create my HTML element, a green bar with the appropriate height:</p>
<pre class="brush: xml;">
=&#34;&#60;b style='display:inline-block;background-color:chartreuse;margin-right:1px;width:4px;font-size:0px;height:&#34;&#38;(20*Jan/Max)&#38;&#34;px;' title='&#34;&#38;Jan&#38;&#34;'&#62;&#60;/b&#62;&#34;
</pre>
<p style="padding-left:30px;">Note: the tag name (here a &#8220;b&#8221; tag) doesn&#8217;t really matter as long as I can assign a background color.</p>
<p><strong>Multiple bars</strong></p>
<p>In theory, we would just need to repeat the above formula 12 times to get the chart for the whole year. Except that we hit a road block here: the complete formula will have a length of 12&#215;150 characters, plus a wrapping tag. That&#8217;s far too much for a calculated column, which will &#8220;only&#8221; accept 1000 characters.</p>
<p>As all bars follow the same pattern, I&#8217;ll use the following trick: store the recurring string in a separate calculated column, that I&#8217;ll call <strong>HTMLstring</strong>:</p>
<pre class="brush: xml;">
=&#34;&#60;/b&#62;&#60;b style='display:inline-block;background-color:chartreuse;margin-right:1px;width:4px;font-size:1px;height:&#34;
</pre>
<p> I can now use HTMLstring to write my complete formula for the <strong>BarGraph</strong> column:</p>
<pre class="brush: xml;">
=&#34;&#60;span style='white-space:nowrap;'&#62;&#60;b style='display:inline-block;height:20px;'&#62;&#34;&#38;HTMLstring&#38;(Jan*20/Max)&#38;&#34;px;' title='&#34;&#38;Jan&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Feb*20/Max)&#38;&#34;px;' title='&#34;&#38;Feb&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Mar*20/Max)&#38;&#34;px;' title='&#34;&#38;Mar&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Apr*20/Max)&#38;&#34;px;' title='&#34;&#38;Apr&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(May*20/Max)&#38;&#34;px;' title='&#34;&#38;May&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Jun*20/Max)&#38;&#34;px;' title='&#34;&#38;Jun&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Jul*20/Max)&#38;&#34;px;' title='&#34;&#38;Jul&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Aug*20/Max)&#38;&#34;px;' title='&#34;&#38;Aug&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Sep*20/Max)&#38;&#34;px;' title='&#34;&#38;Sep&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Oct*20/Max)&#38;&#34;px;' title='&#34;&#38;Oct&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Nov*20/Max)&#38;&#34;px;' title='&#34;&#38;Nov&#38;&#34;'&#62;&#34;&#38;HTMLstring&#38;(Dec*20/Max)&#38;&#34;px;' title='&#34;&#38;Dec&#38;&#34;'&#62;&#60;/b&#62;&#60;/span&#62;&#34;
</pre>
<p>The solution described in this post gives a nice result, you&#8217;ll notice that I have even included a hover effect that allows to read the values directly on the sparklines. However, there are a couple limitations. First, we need to build each graph by hand. Then, with those monster formulas, we quickly reach SharePoint&#8217;s limits - 1000 characters for the formula, 2000 characters for the calculated field. For the record, my above example consumes 665 characters for the formula, and ~1700 characters for the calculated field. Note that I chose on purpose very short column names for the months, to shorten my formula. This is also the reason why I chose &#8220;b&#8221; tags.</p>
<p><em>In Wednesday&#8217;s </em><a href="http://2009-12-04-charts-part-02.eventbrite.com/" target="_blank"><em>live online workshop</em></a><em>, you&#8217;ll have the opportunity to practice this method. We&#8217;ll also review other business scenarii, and learn other techniques allowing to build more advanced inline charts, for example using the jQuery sparklines plugin or the Google charts. To give you an idea of the result, check out </em><a href="http://www.endusersharepoint.com/2009/11/30/a-new-kind-of-sharepoint-chart-and-graph-solution/" target="_blank"><em>these screenshots</em></a><em> from Mark Miller.</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Moss 2007 - Failed to determine definition for Feature with ID]]></title>
<link>http://localgovernmentsharepoint.wordpress.com/2009/11/30/moss-2007-failed-to-determine-definition-for-feature-with-id/</link>
<pubDate>Mon, 30 Nov 2009 19:20:32 +0000</pubDate>
<dc:creator>Rob Ashcroft</dc:creator>
<guid>http://localgovernmentsharepoint.wordpress.com/2009/11/30/moss-2007-failed-to-determine-definition-for-feature-with-id/</guid>
<description><![CDATA[The root cause of this error is that the Features table in the content database has an entry with th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The root cause of this error is that the Features table in the content database has an entry with the given GUID, but the Objects table in the Config database does NOT have a corresponding object with that ID. </p>
<p>This gets caused by the following scenario: a solution with a feature gets deployed and activated to a site. The solution gets retracted without first deactivating the feature at the site level.  So, the site has an orphaned entry.</p>
<p>You can resolve this by running the stsadm -o deactivatefeature -id [guid from log] -url [each site it was activated on] -force.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Business Case for SharePoint:  Over $10,000.00 in Research for Free]]></title>
<link>http://trademarkatl.wordpress.com/2009/11/27/business-case-for-sharepoint-over-10000-00-in-research-for-free/</link>
<pubDate>Fri, 27 Nov 2009 19:28:36 +0000</pubDate>
<dc:creator>Mark Henderson</dc:creator>
<guid>http://trademarkatl.wordpress.com/2009/11/27/business-case-for-sharepoint-over-10000-00-in-research-for-free/</guid>
<description><![CDATA[As a Senior Consultant, I often serve in the role(s) of Business Analyst and Project Manager.  These]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>As a Senior Consultant, I often serve in the role(s) of Business Analyst and Project Manager.  These roles are frequently involved in the exercise of Package Evaluation and Selection.  This process involves collecting the business requirements for the problem at hand, reviewing available solutions, and then scoring their ability to satisfy the business requirements.  A valuable resource in this activity is the opinion/recommendation of independent third parties (such as Gartner, Forrester and IDC).  Because these companies spend considerable resources on keeping up with the latest solutions available, and look at many packages from several vendors, they charge a considerable amount for their results.</p>
<p>Since I specialize in the use of SharePoint, I always keep my eyes open for documentation that helps support the business case for SharePoint.  Whether you are currently in the process of creating a business case for a solution, or you have already made your selection and are in the process of implementing your solution, I think you will want to review/print/download the following research, to add to your toolbox and support your decision making process.</p>
<p>The links below contain the Title, Date and source of information, along with a brief summary.  In addition to these summary pieces of information about the report, there are direct links, each to the actual research itself.  Of course one link allows you to purchase the information (for as much as $2,000.00), whereas the other link takes you directly to the report, FREE of any charges.  Why would these reports be offered for free?  Vendors that are listed in the report pay the fees for reprints to be available free of charge and have secured all copyright and publishing privileges with the research firms to include the reports available for all audiences.  </p>
<p>NOTE:  All reports were researched and funded by the analyst firms themselves.</p>
<p>As you can see by the dates of the articles, most have been published/updated within the past month and are therefore very relevant. </p>
<p>So you decide, pay for all the research (make sure you have $10,819.00) or access for FREE!  I know you’ll make the right decision …</p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="133" valign="top"><strong>Title</strong></td>
<td colspan="2" width="414" valign="top">The Forrester Wave™: Collaboration Platforms, Q3 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Date</strong></td>
<td colspan="2" width="414" valign="top">August 9, 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="414" valign="top">This Forrester Wave evaluates 11 collaboration platform vendors and names Microsoft (MOSS 2007) a Leader.  Forrester reports that “while the primary initial use case for SharePoint is often document workspace functionality, the suite approach generally leads to broader adoption of functionality including search, portal, an application development platform, business intelligence in the form of PerformancePoint Services, and basic content management.”</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Source</strong></td>
<td width="65" valign="top"><strong>Cost</strong></td>
<td width="349" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="133" valign="top">Forrester Research</td>
<td width="65" valign="top"><strong><span style="color:#ff0000;">$1,749.00</span></strong></td>
<td width="349" valign="top"><a href="http://www.forrester.com/rb/Research/wave%26trade%3B_collaboration_platforms%2C_q3_2009/q/id/47748/t/2" target="_blank">Click HERE to Purchase</a></td>
</tr>
<tr>
<td width="133" valign="top">Novell</td>
<td width="65" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="349" valign="top"><a href="http://www.novell.com/rc/docrepository/public/1/basedocument.2009-08-06.0831403126/wave_collaboration_platforms_q3_2009_en.pdf" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="133" valign="top"><strong>Title</strong></td>
<td colspan="2" width="414" valign="top">Magic Quadrant for Enterprise Content Management &#8211; Gartner 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Date</strong></td>
<td colspan="2" width="414" valign="top">October 15, 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="414" valign="top">Gartner positions Microsoft (MOSS 2007) in the Leaders Quadrant in its Enterprise Content Management Magic Quadrant. This Magic Quadrant assessment takes into account vendors&#8217; current product offerings and overall strategies, as well as their planned initiatives and product road maps.</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Source</strong></td>
<td width="70" valign="top"><strong>Cost</strong></td>
<td width="344" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="70" valign="top"><strong><span style="color:#ff0000;">$1,995.00</span></strong></td>
<td width="344" valign="top"><a href="http://www.gartner.com/DisplayDocument?id=1207026" target="_blank">Click HERE to Purchase</a></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="70" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="344" valign="top"><a href="http://www.gartner.com/technology/media-products/reprints/microsoft/vol10/article3/article3.html" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="133" valign="top"><strong>Title</strong></td>
<td colspan="2" width="414" valign="top">Magic Quadrant for Horizontal Portals – Gartner 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Date</strong></td>
<td colspan="2" width="414" valign="top">September 17, 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="414" valign="top">Gartner positions Microsoft (MOSS 2007) in the Leaders Quadrant in its Magic Quadrant for Horizontal Portals. This report analyzes vendors with offerings in the horizontal portals space. Microsoft takes Gartner’s findings as further indication that the company is delivering on its commitment to provide a full, competitive and comprehensive portal solution.</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Source</strong></td>
<td width="65" valign="top"><strong>Cost</strong></td>
<td width="349" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="65" valign="top"><strong><span style="color:#ff0000;">$1,995.00</span></strong></td>
<td width="349" valign="top"><a href="http://www.gartner.com/DisplayDocument?id=1181615" target="_blank">Click HERE to Purchase</a></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="65" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="349" valign="top"><a href="http://www.gartner.com/technology/media-products/reprints/microsoft/vol10/article2/article2.html" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="133" valign="top"><strong>Title</strong></td>
<td colspan="2" width="414" valign="top">Magic Quadrant for Social Software in the Workplace – Gartner 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Date</strong></td>
<td colspan="2" width="414" valign="top">October 22, 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="414" valign="top">Gartner positions Microsoft (MOSS 2007) in the Leaders Quadrant in its Social Software in the Workplace Magic Quadrant. This Magic Quadrant evaluates social software products used primarily by internal employees and brings into sharp contrast the strategies and choices pursued by established large vendors and smaller specialist ones.</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Source</strong></td>
<td width="50" valign="top"><strong>Cost</strong></td>
<td width="364" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="50" valign="top"><strong><span style="color:#ff0000;">$1,995.00</span></strong></td>
<td width="364" valign="top"><a href="http://www.gartner.com/DisplayDocument?id=1213315" target="_blank">Click HERE to Purchase</a></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="50" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="364" valign="top"><a href="http://www.gartner.com/technology/media-products/reprints/microsoft/vol10/article4/article4.html" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="133" valign="top"><strong>Title</strong></td>
<td colspan="2" width="414" valign="top">Magic Quadrant for Web Content Management – Gartner 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Date</strong></td>
<td colspan="2" width="414" valign="top">August 5, 2009</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="414" valign="top">Gartner positions Microsoft (MOSS 2007) in the Challenger Quadrant in its Web Content Management Magic Quadrant. Use this Magic Quadrant to understand the fresh vitality in the WCM market and how Gartner rates the leading vendors and their packaged products. Gartner’s assessment takes into account the vendors&#8217; current product offerings and overall strategies, as well as their future initiatives and product road maps. Gartner also factors in how well vendors are driving market changes, or at least adapting to changing market requirements.</td>
</tr>
<tr>
<td width="133" valign="top"><strong>Source</strong></td>
<td width="50" valign="top"><strong>Cost</strong></td>
<td width="364" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="50" valign="top"><strong><span style="color:#ff0000;">$1,995.00</span></strong></td>
<td width="364" valign="top"><a href="http://www.gartner.com/DisplayDocument?id=1114412" target="_blank">Click HERE to Purchase</a></td>
</tr>
<tr>
<td width="133" valign="top">Gartner Research</td>
<td width="50" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="364" valign="top"><a href="http://mediaproducts.gartner.com/reprints/oracle/article91/article91.html" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="127" valign="top"><strong>Title</strong></td>
<td colspan="2" width="420" valign="top">Case Study: Pfizer Takes a Two-Pronged Approach to Content Management – Gartner 2009</td>
</tr>
<tr>
<td width="127" valign="top"><strong>Date</strong></td>
<td colspan="2" width="420" valign="top">March 13, 2009</td>
</tr>
<tr>
<td width="127" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="420" valign="top">This Case Study details how Pfizer standardized on a basic content services (BCS) offering for work in progress along with a robust enterprise content management (ECM) platform that addresses Food and Drug Administration (FDA)-mandated content applications. CIOs, business and IT leaders, and application manager executives should read this study to see how Pfizer dealt with governance issues, migration from legacy systems and the costs of maintaining two solutions.</td>
</tr>
<tr>
<td width="127" valign="top"><strong>Source</strong></td>
<td width="54" valign="top"><strong>Cost</strong></td>
<td width="366" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="127" valign="top">Gartner Research</td>
<td width="54" valign="top"><strong><span style="color:#ff0000;">$95.00</span></strong></td>
<td width="366" valign="top"><a href="http://www.gartner.com/DisplayDocument?ref=g_search&#38;id=912919" target="_blank">Click HERE to Purchase</a></td>
</tr>
<tr>
<td width="127" valign="top">Gartner Research</td>
<td width="54" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="366" valign="top"><a href="http://mediaproducts.gartner.com/reprints/microsoft/vol6/article13/article13.html" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="131" valign="top"><strong>Title</strong></td>
<td colspan="2" width="417" valign="top">Workflow Supplement Scenarios for Microsoft SharePoint</td>
</tr>
<tr>
<td width="131" valign="top"><strong>Date</strong></td>
<td colspan="2" width="417" valign="top">April 16, 2009</td>
</tr>
<tr>
<td width="131" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="417" valign="top">In this report Gartner discusses “several scenarios for better coordination of the interactions between people, process and content.”</td>
</tr>
<tr>
<td width="131" valign="top"><strong>Source</strong></td>
<td width="63" valign="top"><strong>Cost</strong></td>
<td width="354" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="131" valign="top">Gartner Research</td>
<td width="63" valign="top"><strong><span style="color:#ff0000;">$495.00</span></strong></td>
<td width="354" valign="top"><a href="http://www.gartner.com/DisplayDocument?doc_cd=166591" target="_blank">Click HERE to Purchase</a> </td>
</tr>
<tr>
<td width="131" valign="top">Gartner Research</td>
<td width="63" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="354" valign="top"><a href="http://mediaproducts.gartner.com/reprints/microsoft/vol11/article2/article2.html" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
<p></p>
<table border="1" cellspacing="0" cellpadding="0" width="547">
<tbody>
<tr>
<td width="126" valign="top"><strong>Title</strong></td>
<td colspan="2" width="422" valign="top">SharePoint 2010: Rethinking Information Work</td>
</tr>
<tr>
<td width="126" valign="top"><strong>Date</strong></td>
<td colspan="2" width="422" valign="top">November 2009</td>
</tr>
<tr>
<td width="126" valign="top"><strong>Summary</strong></td>
<td colspan="2" width="422" valign="top">IDC analysts provide a summary of SharePoint 2010 news announced at the 2009 SharePoint Conference in Las Vegas.</td>
</tr>
<tr>
<td width="126" valign="top"><strong>Source</strong></td>
<td width="63" valign="top"><strong>Cost</strong></td>
<td width="359" valign="top"><strong>Link</strong></td>
</tr>
<tr>
<td width="126" valign="top">IDC</td>
<td width="63" valign="top"><strong><span style="color:#ff0000;">$500.00</span></strong></td>
<td width="359" valign="top"><a href="http://www.idc.com/getdoc.jsp?sessionId=&#38;containerId=220660" target="_blank">Click HERE to Purchase</a></td>
</tr>
<tr>
<td width="126" valign="top">IDC</td>
<td width="63" valign="top"><strong><span style="color:#008000;">Free</span></strong></td>
<td width="359" valign="top"><a href="http://www.idc.com/downloads/IW20091021.pdf" target="_blank">Click HERE for FREE Access</a></td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Intranet und Internet (Extranet) mit Sharepoint ]]></title>
<link>http://portaleco.wordpress.com/2009/11/26/intranet-und-internet-extranet-mit-sharepoint/</link>
<pubDate>Thu, 26 Nov 2009 17:29:27 +0000</pubDate>
<dc:creator>portaleco</dc:creator>
<guid>http://portaleco.wordpress.com/2009/11/26/intranet-und-internet-extranet-mit-sharepoint/</guid>
<description><![CDATA[Sharepoint wird von Firmen und Organisationen meist nur für interne Benutzer im Intranet genutzt. Mi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sharepoint wird von Firmen und Organisationen meist nur für interne Benutzer im Intranet genutzt. Mitarbeiter sind dabei auch als Mitglieder im Sharepoint Portal registriert und haben Zugriff auf Inhalte und Funktionen für die sie zugelassen sind. Anfänger machen dabei meist den Fehler dass sie sehr viele Websites und Arbeitsbereiche  anlegen und die Zulassung individuell regeln. In kürzester Zeit entsteht dabei ein Verhau von Sicherheitszonen, deren Organisation den Benutzern kaum mehr vermittelt werden kann. Das führt zu Frust bei den Benutzern auch wenn Benutzer in Sharepoint die Teilnahme zu verschiedenen Websites des Sharepointportals individuell beantragen können. Grundsätzlich sollte man einige wenige Gruppen (&#60; 10) für Benutzer bilden und die Berechtigungen immer an die Gruppen und nicht an einzelne Teilnehmer vergeben.   Es empfiehlt sich ebenfalls die Zahl der Websites möglichst zu begrenzen. Es empfiehlt sich, in einer allgemein zugänglichen Übersichts -/Organisations Websites die Organisation des Sharepoint Portals mit Workspaces, Gruppen und Berechtigungen zu dokumentieren, damit Portalmitglieder wissen wo Informationen zu finden sind und welche Zugangsberechtigung vergeben werden.In Sharepoint kann man auch Berechtigungen u.a. für Listen und Dokumentenbibliotheken indivuell vergeben. Das sollte man aber auf ein absolutes Minimum begrenzen z.B. für Basisdaten, die im gesamten Portal verwendet werden.</p>
<p>Leider gibt es in Sharepoint keine Funktion, die es einem Teilnehmer erlaubt zu prüfen, welchen Gruppen er angehört. Hier hilft nur experimentelle Datenverarbeitung um herauszufinden für welche Bereiche im Portal und für welche Funktion man zugelassen ist. Man kann natürlich auch den Administrator fragen &#8211; aber auch für diesen steht keine vernünftige Funktion zur Verfügung und die Begeisterung des Administrators wird sich bei vielen Anfragen wohl in Grenzen halten..</p>
<p>Im Sharepoint ist es sehr einfach möglich, Anonymen Benutzern (im Internet) Zugriff als Leser oder Teilnehmer (kann Daten eingeben) auf Websites zu geben und kann damit die interne Organisation auf Kunden und Partner ausdehnen &#8211; das spart wirklich viel Arbeit und Geld wenn die Benutzer wissen wie man damit umgeht. Voraussetzung ist dabei aber immer, dass der Sharepoint Server in einer professinellen Netzwerkumgebung betrieben wird, damit der Zugriff von Externen auf die Firmendaten verhindert wird. Viele kleiner Firmen sind da aber überfordert. Eine recht elegante Lösung hierfür ist es, einen Sharepoint Server bei einem externen Service Provider zu nutzen. Man muss dann zwar die für die Öffentlichkeit oder externe Partner vorgesehene Daten vom internen Sharepoint Server auf den externen Sharepoint Server verschieben, hat dann aber eine hohe Sicherheit, dass interne Daten nicht versehentlich auf dem externen Server landen. Ich empfehle ein ähnliches Vorgehen auch bei Intra/Extra Sharepoint Servern. Mitarbeiter, die für die Freigabe von Daten zuständig sind, bekommen einen zweiten User ID für die externen Workspaces. Damit wird eine versehentliche Freigabe von internen Daten verhindert. Zur Erleichterung der Freigabe kann man in Sharepoint ja einen Workflow einrichten.</p>
<p>Ich halte eine solche recht umständliche Organisation bei Sharepoint für notwendig, da die Sicherheitsstruktur und die Vergabe von Rechten für die Benutzer nicht einsichtig sind und deshalb sehr schnell zu Problemen beim Datenschutz führen. Regelmäßig sollte die Sicherheitsinfrastruktur des Sharepoint Servers aber auch die Berechtigungen der Admistratoren und ihre Aktionen überprüft werden. Sharepoint bietet hierfür eine Reihe von Logging. und Berichtsfunktionen.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Missing Sites after attaching content database]]></title>
<link>http://spinspout.wordpress.com/2009/11/26/missing-sites-after-attaching-content-database/</link>
<pubDate>Thu, 26 Nov 2009 02:35:40 +0000</pubDate>
<dc:creator>Tom Shirley</dc:creator>
<guid>http://spinspout.wordpress.com/2009/11/26/missing-sites-after-attaching-content-database/</guid>
<description><![CDATA[Task You are trying to recover a subset of lost/corrupted SharePoint data from a SQL Database backup]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Task</strong></p>
<p>You are trying to recover a subset of lost/corrupted SharePoint data from a SQL Database backup and import it back into a Farm.</p>
<p>N.B. This procedure requires a second Farm to provide temporary access to the backup copy.</p>
<p><strong>Tip</strong></p>
<p>Ensure the second (staging) Farm matches the SharePoint version of the originating Farm. If there is a version mismatch, the addContentDB STSADM command will more than likely succeed without errors, however, browsing to any content throws 404 errors. Additionally, if you navigate to Applications Settings-&#62;Content Databases in Central Admin, the number of sites listed for your databases will be 0.</p>
<p><strong>Example</strong></p>
<p>A user had synced a Discussion Board from SharePoint in Outlook 2007 and mistakenly thought deleting an item in Outlook didn&#8217;t affect the corresponding item in SharePoint.<br />
Subsequently, the user deleted all discussion posts in their Outlook client. Realizing the mistake, they attempted to restore the items from their recycle bin in SharePoint. This action usually works fine, however the restore process for discussion items has a bug, [as of MOSS 2007 Infra update], where the restored items loose any relationships they had with other posts, resulting in a flat view of all posts.</p>
<p>A restore of content from a backup was necessary in this case. The procedure is fairly straight forward:</p>
<p>1)      Get a copy of the content database and restore to a new, temporary, database.</p>
<p>2)      Attach the backup database to a different SharePoint farm.</p>
<ol>
<li>You need a second farm as SharePoint won’t allow two content databases which contain duplicate Sites/GUIDS.</li>
<li>Ensure the secondary Farm matches the SharePoint version of the originating Farm. The version is display under Operations-&#62;Servers in Farm.</li>
<li>To Attach, run the STSADM command:</li>
</ol>
<p>stsadm -o addcontentdb -url http://moss -databasename MOSS_Content -databaseserver SQLServerName</p>
<p>3)      Export the content. In this example, a ‘save list as template’ was sufficient.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Sparklines, more information in less space]]></title>
<link>http://pathtosharepoint.wordpress.com/2009/11/25/sparklines-more-information-in-less-space/</link>
<pubDate>Wed, 25 Nov 2009 14:11:31 +0000</pubDate>
<dc:creator>Christophe</dc:creator>
<guid>http://pathtosharepoint.wordpress.com/2009/11/25/sparklines-more-information-in-less-space/</guid>
<description><![CDATA[For details on the upcoming Sparklines online workshop, see the end of this article, or click here. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em><a href="http://pathtosharepoint.wordpress.com/files/2009/11/bar1.jpg"><img class="alignright" style="margin-left:5px;margin-right:5px;" title="Bar" src="http://pathtosharepoint.wordpress.com/files/2009/11/bar1.jpg" alt="" width="184" height="153" /></a>For details on the upcoming Sparklines online workshop, see the end of this article, or </em><a href="http://2009-12-04-charts-part-02.eventbrite.com/" target="_blank"><em>click here</em></a><em>.</em></p>
<p><a href="http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR&#38;topic_id=1" target="_blank">Edward Tufte</a>, who coined the term &#8220;sparklines&#8221;, describes them as &#8220;data-intense, design-simple, word-sized graphics.&#8221;<br />
While traditional charts aggregate information from a full list, and are set off the flow of text, a sparkline pictures an individual item, and is directly embedded in the list.<br />
You&#8217;ll find a good introduction to sparklines on <a href="http://www.bonavistasystems.com/Products_SparkLiner_Overview.html" target="_blank">this page from BonaVista</a>.</p>
<p><img class="size-full wp-image-1102 alignright" title="GoogleFinance" src="http://pathtosharepoint.wordpress.com/files/2009/11/googlefinance.jpg" alt="" width="237" height="254" />The most common type is a line graph (hence the name), like in this screenshot from Google Finance. But sparklines come in various other shapes, as you can see from the (jQuery) samples on <a href="http://omnipotent.net/jquery.sparkline/" target="_blank">this page</a>.</p>
<p>For example, you&#8217;ll use:<br />
- line and bar graphs to track data against time<br />
- progress bar or bullet chart to assess data against thresholds or objectives<br />
- pies for categories (e.g. region, product line)<br />
- discrete charts for status (project phases, game results)</p>
<p>Sparklines apply to many situations:<br />
- enterprise dashboards (revenue, expenses, market share, all within one list)<br />
- healthcare (patient stats)<br />
- education (attendance rate, success rate)<br />
- project management (issues resolution, costs)<br />
- products/services dashboard (sales, support calls)<br />
- transportation (passenger traffic, delayed flights)<br />
- sports and games (won, lost or drawn)<br />
- website stats: pageviews, visitors (cf. Google Analytics)<br />
- <a href="http://nametrends.net/top.php?year=2008" target="_blank">baby name trends</a> for a given year<br />
- etc.</p>
<p>Sparklines can also be placed on supports other than lists, like maps, although I find this more difficult to read. Here is an example with the <a href="http://infosthetics.com/archives/subway_sparklines2.jpg" target="_blank">New-York subway</a>.</p>
<p><strong>How about SharePoint?</strong></p>
<p>I already published last year a tutorial showing how to include <a href="http://pathtosharepoint.wordpress.com/2008/12/08/sparklines-and-charts-in-sharepoint-lists/" target="_blank">Google sparklines in SharePoint lists</a>. The Google approach is very convenient, but has its downside. First, in your corporate environment, you may not have access to the Google charts website. Then, even if you can access it, you may not like the idea that your data goes public, as you send it on the Internet to get the charts in return. If so, you&#8217;ll have to find an in-house solution to build your sparklines.<br />
In a couple days, I&#8217;ll publish a tutorial to explain how to I created simple, homemade graphs for SharePoint lists (see screenshot below).</p>
<p><img class="alignleft size-full wp-image-1103" title="Bar" src="http://pathtosharepoint.wordpress.com/files/2009/11/bar.jpg" alt="" width="322" height="160" /><img class="size-full wp-image-1104 alignnone" title="Pie" src="http://pathtosharepoint.wordpress.com/files/2009/11/pie.jpg" alt="" width="175" height="144" /></p>
<p>If you are wondering how I built the pie charts, check out <a href="http://pathtosharepoint.com/Utilities/PieSprite50.png" target="_blank">this picture</a> for a clue. More details after Thanksgiving&#8230;</p>
<p>To apply the tutorials, you&#8217;ll need to know about the &#8220;HTML Calculated Column&#8221;. For a refresher on this method, start with <a href="http://pathtosharepoint.wordpress.com/2009/11/19/html-calculated-column-minor-update-and-some-advice/" target="_blank">the post I published last week</a>, and follow the links.</p>
<p>The above bar graphs and pies are basic solutions, but their great advantage is that they don&#8217;t have any external dependency.</p>
<p>If you are looking for more advanced charting capabilities, check out Gareth Watts&#8217; <a href="http://www.omnipotent.net/jquery.sparkline/" target="_blank">sparklines plugin</a> for jQuery. Back in March, I showed <a href="http://pathtosharepoint.wordpress.com/2009/03/02/live-demo-jquery-sparklines/" target="_blank">an example</a> combining this plugin with SharePoint.</p>
<p style="padding-left:30px;"><em>Inline charts are the central theme of our upcoming <strong><a href="http://2009-12-04-charts-part-02.eventbrite.com/" target="_blank">live online SharePoint workshop</a></strong>, scheduled on December 2nd at 1 pm (EST). Mark Miller and I will guide you through the steps to implement these customizations. Like for the other workshops, you&#8217;ll receive a SharePoint sandbox, where you can directly try out the solutions.</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SharePoint 2007 "Admin" pages]]></title>
<link>http://dystopiandesign.wordpress.com/2009/11/24/sharepoint-2007-admin-pages/</link>
<pubDate>Tue, 24 Nov 2009 20:15:31 +0000</pubDate>
<dc:creator>J</dc:creator>
<guid>http://dystopiandesign.wordpress.com/2009/11/24/sharepoint-2007-admin-pages/</guid>
<description><![CDATA[Microsoft highly recommends no modification of the application.master is is responsible for the look]]></description>
<content:encoded><![CDATA[Microsoft highly recommends no modification of the application.master is is responsible for the look]]></content:encoded>
</item>
<item>
<title><![CDATA[Frequently asked questions about SharePoint 2007]]></title>
<link>http://localgovernmentsharepoint.wordpress.com/2009/11/23/frequently-asked-questions-about-sharepoint-2007/</link>
<pubDate>Mon, 23 Nov 2009 21:52:02 +0000</pubDate>
<dc:creator>Rob Ashcroft</dc:creator>
<guid>http://localgovernmentsharepoint.wordpress.com/2009/11/23/frequently-asked-questions-about-sharepoint-2007/</guid>
<description><![CDATA[what is SharePoint? Portal Collaboration Software. what is the difference between SharePoint Portal ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is SharePoint?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Portal Collaboration Software.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is the difference between SharePoint Portal Server and Windows SharePoint Services?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">SharePoint Portal Server is the global portal offering features like global navigation and searching. Windows SharePoint Services is more content management based with document libraries and lists. You apply information to certain areas within your portal from Windows SharePoint Services or directly to portal areas.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a document library?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">A document library is where you upload your core documents. They consist of a row and column view with links to the documents. When the document is updated so is the link on your site. You can also track metadata on your documents. Metadata would consist of document properties.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a meeting workspace?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">A meeting workspace is a place to store information, attendees, and tasks related to a specific meeting.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a document workspace?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Document workspaces consist of information surrounding a single or multiple documents.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a web part?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Web parts consist of xml queries to full SharePoint lists or document libraries. You can also develop your own web parts and web part pages.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is the difference between a document library and a form library?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Document libraries consist of your core documents. An example would be a word document, excel, powerpoint, visio, pdf, etc… Form libraries consist of XML forms.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a web part zone?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Web part zones are what your web parts reside in and help categorize your web parts when designing a page.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">how is security managed in SharePoint?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Security can be handled at the machine, domain, or sharepoint level.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">how are web parts developed?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Web parts are developed in Visual Studio .Net. VS.Net offers many web part and page templates and can also be downloaded from the Microsoft site.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a site definition?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">It’s a methods for providing prepackaged site and list content.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a template?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">A template is a pre-defined set of functions or settings that can be used over time. There are many templates within SharePoint, Site Templates, Document Templates, Document Library and List Templates.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">how do you install web parts?</span></span></p>
<p><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Web Parts should be distributed as a .CAB (cabinet) file using the MSI Installer.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is CAML?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">CAML stands for Collaborative Application Markup Language and is an XML-based language that is used in Microsoft Windows SharePoint Services to define sites and lists, including, for example, fields, views, or forms, but CAML is also used to define tables in the Windows SharePoint Services database during site provisioning.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is a DWP?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">The file extension of a web part.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is the GAC?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Global Assembly Cache folder on the server hosting SharePoint. You place your assemblies there for web parts and services.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what are the differences between web part page gallery, site gallery, virtual server gallery and online gallery?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Web Part Page Gallery is the default gallery that comes installed with SharePoint. Site Gallery is specific to one site. Virtual Server gallery is specific to that virtual server and online gallery are downloadable web parts from Microsoft.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">what is the difference between a site and a web?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">The pages in a Web site generally cover one or more topics and are interconnected through hyperlinks. Most Web sites have a home page as their starting point. While a Web is simply a blank site with SharePoint functionality built in; meaning you have to create the site from the ground up.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What is Microsoft Windows SharePoint Services? How is it related to Microsoft Office SharePoint Server 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Windows SharePoint Services is the solution that enables you to create Web sites for information sharing and document collaboration. Windows SharePoint Services — a key piece of the information worker infrastructure delivered in Microsoft Windows Server 2003 — provides additional functionality to the Microsoft Office system and other desktop applications, and it serves as a platform for application development.</p>
<p>Office SharePoint Server 2007 builds on top of Windows SharePoint Services 3.0 to provide additional capabilities including collaboration, portal, search, enterprise content management, business process and forms, and business intelligence.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What is Microsoft SharePoint Portal Server?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">SharePoint Portal Server is a portal server that connects people, teams, and knowledge across business processes. SharePoint Portal Server integrates information from various systems into one secure solution through single sign-on and enterprise application integration capabilities. It provides flexible deployment and management tools, and facilitates end-to-end collaboration through data aggregation, organization, and searching. SharePoint Portal Server also enables users to quickly find relevant information through customization and personalization of portal content and layout as well as through audience targeting.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What is Microsoft Windows Services?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Microsoft Windows Services is the engine that allows administrators to create Web sites for information sharing and document collaboration. Windows SharePoint Services provides additional functionality to the Microsoft Office System and other desktop applications, as well as serving as a plat form for application development. SharePoint sites provide communities for team</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">collaboration, enabling users to work together on documents, tasks, and projects. The environment for easy and flexible deployment, administration, and application development.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What is the relationship between Microsoft SharePoint Portal Server and Microsoft Windows Services?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Microsoft SharePoint Products and Technologies (including SharePoint Portal Server and Windows SharePoint Services) deliver highly scalable collaboration solutions with flexible deployment and management tools. Windows SharePoint Services provides sites for team collaboration, while Share Point Portal Server connects these sites, people, and business processes—facilitating knowledge sharing and smart organizations. SharePoint Portal Server also extends the capabilities of Windows SharePoint Services by providing organizational and management tools for SharePoint sites, and by enabling teams to publish information to the entire organization.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Who is Office SharePoint Server 2007 designed for?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Office SharePoint Server 2007 can be used by information workers, IT administrators, and application developers.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are the main benefits of Office SharePoint Server 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Office SharePoint Server 2007 provides a single integrated platform to manage intranet, extranet, and Internet applications across the enterprise.</p>
<p>* Business users gain greater control over the storage, security, distribution, and management of their electronic content, with tools that are easy to use and tightly integrated into familiar, everyday applications.</p>
<p>* Organizations can accelerate shared business processes with customers and partners across organizational boundaries using InfoPath Forms Services–driven solutions.</p>
<p>* Information workers can find information and people efficiently and easily through the facilitated information-sharing functionality and simplified content publishing. In addition, access to back-end data is achieved easily through a browser, and views into this data can be personalized.</p>
<p>* Administrators have powerful tools at their fingertips that ease deployment, management, and system administration, so they can spend more time on strategic tasks.</p>
<p>* Developers have a rich platform to build a new class of applications, called Office Business Applications, that combine powerful developer functionality with the flexibility and ease of deployment of Office SharePoint Server 2007. Through the use of out-of-the-box application services, developers can build richer applications with less code.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What is the difference between Microsoft Office SharePoint Server 2007 for Internet sites and Microsoft Office SharePoint Server 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Microsoft Office SharePoint Server 2007 for Internet sites and Microsoft Office SharePoint Server 2007 have identical feature functionality. While the feature functionality is similar, the usage rights are different.</p>
<p>If you are creating an Internet, or Extranet, facing website, it is recommended that you use Microsoft Office SharePoint Server 2007 for Internet sites which does not require the purchase client access licenses. Websites hosted using an “Internet sites” edition can only be used for Internet facing websites and all content, information, and applications must be accessible to non-employees. Websites hosted using an “Internet sites” edition cannot be accessed by employees creating, sharing, or collaborating on content which is solely for internal use only, such as an Intranet Portal scenario. See the previous section on licensing for more information on the usage scenarios.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What suites of the 2007 Microsoft Office system work with Office SharePoint Server 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Office Outlook 2007 provides bidirectional offline synchronization with SharePoint document libraries, discussion groups, contacts, calendars, and tasks.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Microsoft Office Groove 2007, included as part of Microsoft Office Enterprise 2007, will enable bidirectional offline synchronization with SharePoint document libraries.</p>
<p>Features such as the document panel and the ability to publish to Excel Services will only be enabled when using Microsoft Office Professional Plus 2007or Office Enterprise 2007.</p>
<p>Excel Services will only work with documents saved in the new Office Excel 2007 file format (XLSX).</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How do I invite users to join a Windows SharePoint Services Site? Is the site secure?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">SharePoint-based Web sites can be password-protected to restrict access to registered users, who are invited to join via e-mail. In addition, the site administrator can restrict certain members&#8217; roles by assigning different permission levels to view post and edit.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can I post any kind of document?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">You can post documents in many formats, including .pdf, .htm and .doc. In addition, if you are using Microsoft Office XP, you can save documents directly to your Windows SharePoint Services site.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can I download information directly from a SharePoint site to a personal digital assistant (PDA)?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">No you cannot. However, you can exchange contact information lists with Microsoft Outlook.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How long does it take to set up the initial team Web site?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">It only takes a few minutes to create a complete Web site. Preformatted forms let you and your team members contribute to the site by filling out lists. Standard forms include announcements, events, contacts, tasks, surveys, discussions and links.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can I create custom templates?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Yes you can. You can have templates for business plans, doctor&#8217;s office, lawyer&#8217;s office etc.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How can I make my site public?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">By default, all sites are created private.If you want your site to be a public Web site, enable anonymous access for the entire site. Then you can give out your URL to anybody in your business card, e-mail or any other marketing material. The URL for your Web site will be:</p>
<p>http:// yoursitename.wss.bcentral.com</p>
<p>Hence, please take special care to name your site.</p>
<p>These Web sites are ideal for information and knowledge intensive sites and/or sites where you need to have shared Web workspace.</p>
<p>Remember: Under each parent Web site, you can create up to 10 sub-sites each with unique permissions, settings and security rights</p>
<p>.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How do the sub sites work?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">You can create a sub site for various categories. For example:</p>
<p>* Departments &#8211; finance, marketing, IT</p>
<p>* Products &#8211; electrical, mechanical, hydraulics</p>
<p>* Projects &#8211; Trey Research, Department of Transportation, FDA</p>
<p>* Team &#8211; Retention team, BPR team</p>
<p>* Clients &#8211; new clients, old clients</p>
<p>* Suppliers &#8211; Supplier 1, Supplier 2, Supplier 3</p>
<p>* Customers &#8211; Customer A, Customer B, Customer C</p>
<p>* Real estate &#8211; property A, property B</p>
<p>The URLs for each will be, for example:</p>
<p>*</p>
<p></span></span><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;">http://yoursitename.wss.bcentral.com/finance</span></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">*</p>
<p></span></span><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;">http://yoursitename.wss.bcentral.com/marketing</span></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;"><font face="Times New Roman" size="2"><font face="Times New Roman" size="2">You can keep track of permissions for each team separately so that access is restricted while</p>
<p></font></font></span><font face="Times New Roman" size="2">
<p>&#160;</p>
<p></font></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">maintaining global access to the parent site.</span></span></p>
<p><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How do I make my site non-restricted?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">If you want your site to have anonymous access enabled (i.e., you want to treat it like any site on the Internet that does not ask you to provide a user name and password to see the content of the site), follow these simple steps:</p>
<p># Login as an administrator</p>
<p># Click on site settings</p>
<p># Click on Go to Site Administration</p>
<p># Click on Manage anonymous access</p>
<p># Choose one of the three conditions on what Anonymous users can access:</p>
<p>** Entire Web site</p>
<p>** Lists and libraries</p>
<p>** Nothing</p>
<p>Default condition is nothing; your site has restricted access. The default conditions allow you to create a secure site for your Web site.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can I get domain name for my Web site?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Unfortunately, no. At this point, we don&#8217;t offer domain names for SharePoint sites. But very soon we will be making this available for all our SharePoint site customers. Please keep checking this page for further update on this. Meanwhile, we suggest you go ahead and set up your site and create content for it.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are picture libraries?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Picture libraries allow you to access a photo album and view it as a slide show or thumbnails or a film strip. You can have separate folder for each event, category, etc</p>
<p>What are the advantages of a hosted SharePoint vs. one that is on an in-house server?</p>
<p>* No hardware investment, i.e. lower costs</p>
<p>* No software to download &#8211; ready to start from the word go</p>
<p>* No IT resources &#8211; Anyone who has used a Web program like Hotmail can use it</p>
<p>* Faster deployment</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can I ask users outside of my organization to participate in my Windows SharePoint Services site?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Yes. You can manage this process using the Administration Site Settings. Simply add users via their e-mail alias and assign permissions such as Reader or Contributor.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Are there any IT requirements or downloads required to set up my SharePoint site?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">No. You do not need to download any code or plan for any IT support. Simply complete the on-line signup process and provide us your current and correct email address. Once you have successfully signed up and your site has been provisioned, we will send a confirmation to the email address you provided.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">I am located outside of the United States. Are there any restrictions or requirements for accessing the Windows SharePoint Services?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">No. There are no system or bandwidth limitations for international trial users. Additionally language packs have been installed which allow users to set up sub-webs in languages other than English. These include: Arabic, Danish, Dutch, Finnish, French, German, Hebrew, Italian, Japanese, Polish, Portuguese (Brazilian), Spanish and Swedish.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Are there any browser recommendations?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;"><font face="Times New Roman" size="2"><font face="Times New Roman" size="2">Yes. Microsoft recommends using the following browsers for viewing and editing Windows SharePoint Services sites: Microsoft Internet Explorer 5.01 with Service Pack 2, Microsoft Internet Explorer 5.5 with Service Pack 2, Internet Explorer 6, Netscape Navigator 6.2 or later.</p>
<p></font></font></span><font face="Times New Roman" size="2">
<p>&#160;</p>
<p></font></span><span style="font-family:CenturyGothic;color:#d4d4d4;font-size:xx-large;"><span style="font-family:CenturyGothic;color:#d4d4d4;font-size:xx-large;"></span></span></p>
<p><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What security levels are assigned to users?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Security levels are assigned by the administrator who is adding the user. There are four levels by default and additional levels can be composed as necessary.</p>
<p>* Reader &#8211; Has read-only access to the Web site.</p>
<p>* Contributor &#8211; Can add content to existing document libraries and lists.</p>
<p>* Web Designer &#8211; Can create lists and document libraries and customize pages in the Web site.</p>
<p>* Administrator &#8211; Has full control of the Web site.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How secure are Windows SharePoint Services sites hosted by Microsoft?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Microsoft Windows SharePoint Services Technical security measures provide firewall protection, intrusion detection, and web-publishing rules. The Microsoft operation center team tests and deploys software updates in order to maintain the highest level of security and software reliability. Software hot-fixes and service packs are tested and deployed based on their priority and level of risk. Security related hot-fixes are rapidly deployed into the environment to address current threats. A comprehensive software validation activity ensures software stability through regression testing prior to deployment.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What is the difference between an Internet and an intranet site?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">An internet site is a normal site that anyone on the internet can access (e.g.,</p>
<p>An intranet (or internal network), though hosted on the Web, can only be accessed by people who are members of the network. They need to have a login and password that was assigned to them when they were added to the site by the site administrator.</p>
<p></span></span><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;">www.msn.com</span></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">, </span></span><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;"><span style="font-family:Times New Roman;color:#0000ff;font-size:x-small;">www.microsoft.com</span></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">, etc.). You can set up a site for your company that can be accessed by anyone without any user name and password.</span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What is a workspace?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">A site or workspace is when you want a new place for collaborating on Web pages, lists and document libraries. For example, you might create a site to manage a new team or project, collaborate on a document or prepare for a meeting.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are the various kinds of roles the users can have?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">A user can be assigned one of the following roles</p>
<p>* Reader &#8211; Has read-only access to the Web site.</p>
<p>* Contributor &#8211; Can add content to existing document libraries and lists.</p>
<p>* Web Designer &#8211; Can create lists and document libraries and customize pages in the Web site.</p>
<p>* Administrator &#8211; Has full control of the Web site.</p>
<p>Can more than one person use the same login?</p>
<p>If the users sharing that login will have the same permissions and there is no fear of them sharing a password, then yes. Otherwise, this is discouraged.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How customizable is the user-to-user access?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">User permissions apply to an entire Web, not to documents themselves. However, you can have additional sub webs that can optionally have their own permissions. Each user can be given any of four default roles. Additional roles can be defined by the administrator.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can each user have access to their own calendar?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Yes there are two ways to do this,</p>
<p>* by creating a calendar for each user, or</p>
<p>* by creating a calendar with a view for each user</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How many files can I upload?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">There is no restriction in place except that any storage consumed beyond that provided by the base offering may have an additional monthly charge associated with them.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What types of files can I upload / post to the site?</p>
<p>The only files restricted are those ending with the following extensions: .asa, .asp, .ida, .idc, .idq. Microsoft reserves the right to add additional file types to this listing at any time. Also, no content that violates the terms of service may be uploaded or posted to the site.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can SharePoint be linked to an external data source?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">SharePoint data can be opened with Access and Excel as an external data source. Thus, SharePoint can be referenced as an external data source. SharePoint itself cannot reference an external data source.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can SharePoint be linked to a SQL database?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">This is possible via a custom application, but it not natively supported by SharePoint or SQL Server.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Can I customize my Windows SharePoint Services site?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">YES! Windows SharePoint Services makes updating sites and their content from the browser easier then ever.</p>
<p>SharePoint includes tools that let you create custom lists, calendars, page views, etc. You can apply a theme; add List, Survey and Document Library Web Parts to a page; create personal views; change logos; connect Web Parts and more.</p>
<p>To fully customize your site, you can use Microsoft FrontPage 2003. Specifically, you can use FrontPage themes and shared borders, and also use FrontPage to create photo galleries and top ten lists, utilize standard usage reports, and integrate automatic Web content.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Will Microsoft Office SharePoint Server 2007 run on a 64-bit version of Microsoft Windows?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Windows SharePoint Services 3.0, Office SharePoint Server 2007, Office Forms Server 2007, and Office SharePoint Server 2007 for Search will support 64-bit versions of Windows Server 2003.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How Office SharePoint Server 2007 can help you?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Office SharePoint Server 2007 can help us:</p>
<p>Manage content and streamline processes. Comprehensively manage and control unstructured content like Microsoft Office documents, Web pages, Portable Document Format file (PDF) files, and e-mail messages. Streamline business processes that are a drain on organizational productivity.</p>
<p>Improve business insight. Monitor your business, enable better-informed decisions, and respond proactively to business events.</p>
<p>Find and share information more simply. Find information and expertise wherever they are located. Share knowledge and simplify working with others within and across organizational boundaries.</p>
<p>Empower IT to make a strategic impact. Increase responsiveness of IT to business needs and reduce the number of platforms that have to be maintained by supporting all the intranet, extranet, and Web applications across the enterprise with one integrated platform.</p>
<p>Office SharePoint Server 2007 capabilities can help improve organizational effectiveness by connecting people, processes, and information.</p>
<p>Office SharePoint Server 2007 provides these capabilities in an integrated server offering, so your organization doesn&#8217;t have to integrate fragmented technology solutions itself.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are the features that the portal components of Office SharePoint Server 2007 include?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">The portal components of Office SharePoint Server 2007 include features that are especially useful for designing, deploying, and managing enterprise intranet portals, corporate Internet Web sites, and divisional portal sites. The portal components make it easier to connect to people within the organization who have the right skills, knowledge, and project experience.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are the advanced features of MOSS 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">* User Interface (UI) and navigation enhancements</p>
<p>* Document management enhancements</p>
<p>* The new Workflow engine</p>
<p>* Office 2007 Integration</p>
<p>* New Web Parts</p>
<p>* New Site-type templates</p>
<p>* Enhancements to List technology</p>
<p>* Web Content Management</p>
<p>* Business Data Catalog</p>
<p>* Search enhancements</p>
<p>* Report Center</p>
<p>* Records Management</p>
<p>* Business Intelligence and Excel Server</p>
<p>* Forms Server and InfoPath</p>
<p>* The “Features” feature</p>
<p>* Alternate authentication providers and Forms-based authentication</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are the features of the new Content management in Office SharePoint 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">The new and enhanced content management features in Office SharePoint Server 2007 fall within three areas:</p>
<p>* Document management</p>
<p>* Records management</p>
<p>* Web content management</p>
<p>Office SharePoint Server 2007 builds on the core document management functionality provided by Windows SharePoint Services 3.0, including check in and check out, versioning, metadata, and role-based granular access controls. Organizations can use this functionality to deliver enhanced authoring, business document processing, Web content management and publishing, records management, policy management, and support for multilingual publishing.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Does a SharePoint Web site include search functionality?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Yes. SharePoint Team Services provides a powerful text-based search feature that helps you find documents and information fast.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Write the features of the search component of Office SharePoint Server 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">The search component of Office SharePoint Server 2007 has been significantly enhanced by this release of SharePoint Products and Technologies. New features provide:</p>
<p>* A consistent and familiar search experience.</p>
<p>* Increased relevance of search results.</p>
<p>* New functions to search for people and expertise.</p>
<p>* Ability to index and search data in line-of-business applications and</p>
<p>* Improved manageability and extensibility.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are the benefits of Microsoft Office SharePoint Server 2007?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">* Provide a simple, familiar, and consistent user experience.</p>
<p>* Boost employee productivity by simplifying everyday business activities.</p>
<p>* Help meet regulatory requirements through comprehensive control over content.</p>
<p>* Effectively manage and repurpose content to gain increased business value.</p>
<p>* Simplify organization-wide access to both structured and unstructured information across disparate systems.</p>
<p>* Connect people with information and expertise.</p>
<p>* Accelerate shared business processes across organizational boundaries.</p>
<p>* Share business data without divulging sensitive information.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">* Enable people to make better-informed decisions by presenting business-critical information in one central location.</p>
<p>* Provide a single, integrated platform to manage intranet, extranet, and Internet applications across the enterprise.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Will SharePoint Portal Server and Team Services ever merge?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">The products will come together because they are both developed by the Office team.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What does partial trust mean the Web Part developer?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">If an assembly is installed into the BIN directory, the code must be ensured that provides error handling in the event that required permissions are not available. Otherwise, unhandled security exceptions may cause the Web Part to fail and may affect page rendering on the page where the Web Part appears.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How can I raise the trust level for assemblies installed in the BIN directory?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Windows SharePoint Services can use any of the following three options from ASP.NET and the CLR to provide assemblies installed in the BIN directory with sufficient permissions. The following table outlines the implications and requirements for each option.</p>
<p>Option Pros Cons Increase the trust level for the entire virtual server. For more information, see &#8220;Setting the trust level for a virtual server&#8221; Easy to implement. In a development environment, increasing the trust level allows you to test an assembly with increased permissions while allowing you to recompile assemblies directly into the BIN directory without resetting IIS. This option is least secure. This option affects all assemblies used by the virtual server.</p>
<p>There is no guarantee the destination server has the required trust level. Therefore, Web Parts may not work once installed on the destination server.</p>
<p>Create a custom policy file for your assemblies. For more information, see &#8220;How do I create a custom policy file?&#8221; Recommended approach.</p>
<p>This option is most secure.</p>
<p>An assembly can operate with a unique policy that meets the minimum permission requirements for the assembly.</p>
<p>By creating a custom security policy, you can ensure the destination server can run your Web Parts.</p>
<p>Requires the most configuration of all three options.</p>
<p>Install your assemblies in the GAC</p>
<p>Easy to implement.</p>
<p>This grants Full trust to your assembly without affecting the trust level of assemblies installed in the BIN directory.</p>
<p>This option is less secure.</p>
<p>Assemblies installed in the GAC are available to all virtual servers and applications on a server running Windows SharePoint Services. This could represent a potential security risk as it potentially grants a higher level of permission to your assembly across a larger scope than necessary</p>
<p>In a development environment, you must reset IIS every time you recompile assemblies.</p>
<p>Licensing issues may arise due to the global availability of your assembly.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Does SharePoint work with NFS?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Yes and no. It can crawl documents on an NFS volume, but the sharepoint database or logs cannot be stored there.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How is SharePoint Portal Server different from the Site Server?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Site Server has search capabilities but these are more advanced using SharePoint. SPS uses digital dashboard technology which provides a nice interface for creating web parts and showing them on dashboards (pages). SS doesn&#8217;t have anything as advanced as that. The biggest difference would be SPS document management features which also integrate with web folders and MS Office.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What would you like to see in the next version of SharePoint?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">A few suggestions:</p>
<p># SPS and STS on same machine</p>
<p># Tree view of Categories and Folders</p>
<p># General Discussion Web Part</p>
<p># Personalization of Dashboards</p>
<p># Role Customization</p>
<p># Email to say WHY a document has been rejected for Approval</p>
<p># More ways to customize the interface</p>
<p># Backup and restore an individual Workspaces</p>
<p># Filter for Visio</p>
<p># Better way to track activity on SPS</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Why Sharepoint is not a viable solution for enterprise wide deployments?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">Document management does not scale beyond a single server, but scales great within a single server. For example, a quad Xeon machine with 4GB of RAM works great for a document management server that has about 900,000 &#8211; 1,000,000 document, but if you need to store 50,000,000 document and want to have them all in one single workspace then it does not scale at all. If you need a scenario like this, you need to plan your deployment right and it should scale for you, it just does not right out of the box.</p>
<p>If you are using your server as a portal and search server most for the most part it scales great. You can have many different servers crawl content sources and have separate servers searching and serving the content.</p>
<p>If you have &#60; 750,000 documents per server and fewer than 4 content sources and fewer than 50,000 users, SPS should scale just fine for your needs with the proper planning.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">What are the actual advantages of SharePoint Portal Services (SPS) over SharePoint Team Services (STS)?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">SharePoint Portal Services (SPS) has MUCH better document management. It has check-in, check-out, versioning, approval, publishing, subscriptions, categories, etc. STS does not have these features, or they are very scaled back. SharePoint team Services (SPS) has a better search engine, and can crawl multiple content sources. STS cannot. STS is easier to manage and much better for a team environment where there is not much Document Management going on. SPS is better for an organization, or where Document Management is crucial.</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;">How Does SharePoint work?</p>
<p></span></span><span style="font-family:Times New Roman;font-size:x-small;"><span style="font-family:Times New Roman;font-size:x-small;"><font face="Times New Roman" size="2"><font face="Times New Roman" size="2">The browser sends a DAV packet to IIS asking to perform a document check in. PKMDASL.DLL, an ISAPI DLL, parses the packet and sees that it has the proprietary INVOKE command. Because of the existence of this command, the packet is passed off to msdmserv.exe, who in turn processes the packet and uses EXOLEDB to access the WSS, perform the operation and send the results back to the user in the form of XML.</p>
<p></font></font></span><font face="Times New Roman" size="2">
<p>&#160;</p>
<p></font></span><span style="font-family:Arial;font-size:xx-small;"></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SharePoint Skinner - Helps you brand your SharePoint Site]]></title>
<link>http://sharepointsthlm.wordpress.com/2009/11/22/sharepoint-skinner-helps-you-brand-your-sharepoint-site/</link>
<pubDate>Sun, 22 Nov 2009 13:02:17 +0000</pubDate>
<dc:creator>sharepointsthlm</dc:creator>
<guid>http://sharepointsthlm.wordpress.com/2009/11/22/sharepoint-skinner-helps-you-brand-your-sharepoint-site/</guid>
<description><![CDATA[SharePoint Skinner is a useful tool when you want to brand your SharePoint site. http://www.elumenot]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>SharePoint Skinner is a useful tool when you want to brand your SharePoint site.</p>
<p><a href="https://stomail2.connecta.se/owa/redir.aspx?C=4088139530a54fe79f7a1b46d36d8098&#38;URL=http%3a%2f%2fwww.elumenotion.com%2fBlog%2fLists%2fPosts%2fPost.aspx%3fID%3d94" target="_blank">http://www.elumenotion.com/Blog/Lists/Posts/Post.aspx?ID=94</a></p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Windows SharePoint Services 3.0 Tools: Visual Studio 2008 Extensions, Version 1.2]]></title>
<link>http://sharepointsthlm.wordpress.com/2009/11/22/windows-sharepoint-services-3-0-tools-visual-studio-2008-extensions-version-1-2/</link>
<pubDate>Sun, 22 Nov 2009 12:30:31 +0000</pubDate>
<dc:creator>sharepointsthlm</dc:creator>
<guid>http://sharepointsthlm.wordpress.com/2009/11/22/windows-sharepoint-services-3-0-tools-visual-studio-2008-extensions-version-1-2/</guid>
<description><![CDATA[Waiting for Microsoft to publish the Visual Studio 2010 SharePoint tools, we have to use Visual Stud]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Waiting for Microsoft to publish the Visual Studio 2010 SharePoint tools, we have to use Visual Studio 2008 extensions, Version 1.2 to make SharePoint development easier.</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7bf65b28-06e2-4e87-9bad-086e32185e68&#38;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=7bf65b28-06e2-4e87-9bad-086e32185e68&#38;displaylang=en</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Easy Tabs: multiple tab rows]]></title>
<link>http://pathtosharepoint.wordpress.com/2009/11/22/easy-tabs-multiple-tab-rows/</link>
<pubDate>Sun, 22 Nov 2009 07:37:22 +0000</pubDate>
<dc:creator>Christophe</dc:creator>
<guid>http://pathtosharepoint.wordpress.com/2009/11/22/easy-tabs-multiple-tab-rows/</guid>
<description><![CDATA[I am falling behind in my schedule, and several posts will only be published in the beginning of nex]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I am falling behind in my schedule, and several posts will only be published in the beginning of next year. However, I didn&#8217;t want to postpone this one as this is by far the number one request: how to split the tabs row, on my Easy Tabs solution.</p>
<p>This post explains how you can tweak the Easy Tabs v2 to achieve this. The option will be included in the next public release of the Easy Tabs Web Part.</p>
<p>To split the tabs row into two, follow these steps:</p>
<p>- include the <a href="http://www.pathtosharepoint.com/pages/easyTabs.aspx" target="_blank">Easy Tabs Web Part</a> in your page. This is a Content Editor Web Part that contains a script.</p>
<p>- edit it, using the <strong>source editor</strong> of the CEWP.</p>
<p>- find this line of code:<br />
activateTab(ActiveTab);</p>
<p>- replace it with:<br />
var splitdiv = document.createElement(&#8220;div&#8221;);<br />
var index = Math.floor(TabsTD.childNodes.length*0.5);<br />
TabsTD.insertBefore(splitdiv,TabsTD.childNodes[index]);<br />
activateTab(ActiveTab);</p>
<p>Basically, what we&#8217;re doing is simply add a &#8220;line break&#8221; in the middle of the tabs row (hence the 0.5 in the script).</p>
<p>You can of course add more than one line break, for example:<br />
var splitdiv1 = document.createElement(&#8220;div&#8221;);<br />
var index1 = Math.floor(TabsTD.childNodes.length*0.7);<br />
TabsTD.insertBefore(splitdiv1,TabsTD.childNodes[index1]);<br />
var splitdiv2 = document.createElement(&#8220;div&#8221;);<br />
var index2 = Math.floor(TabsTD.childNodes.length*0.3);<br />
TabsTD.insertBefore(splitdiv2,TabsTD.childNodes[index2]);<br />
activateTab(ActiveTab);</p>
<p>Adjust the split values (0.3 and 0.7 in the above example) to your own needs.</p>
<p>Hope this helps!</p>
<p><strong>Note:</strong> if you attended the Easy Tabs workshop, the split option is included in your Easy Tabs version (3.1). If you need more than two rows, here is a solution I have already posted on the <a href="http://www.endusersharepoint.com/STP/topic/easy-tabs-v31-splitting-the-tabs-into-3-rows" target="_blank">Stump the Panel</a> forum:</p>
<p>This is the current split function in v 3.1 (written in jQuery):<br />
//split<br />
if (ET001_split == &#8220;Yes&#8221;) {<br />
var splitindex = Math.floor($(ET001_TabContainer).children().length*0.5-1);<br />
$(ET001_TabContainer).children().eq(splitindex).after(&#8220;&#60;div style=&#8217;font-size:0px;&#8217;&#62;&#60;/div&#62;&#8221;);}</p>
<p>splitindex is the index at which the row will be split. If you have 16 tabs, then:<br />
splitindex = 7 (indexing starts at 0 in JavaScript)</p>
<p>You can change this calculation to include more splits, for example:<br />
//split<br />
if (ET001_split == &#8220;Yes&#8221;) {<br />
var splitindex = Math.floor($(ET001_TabContainer).children().length*0.3-1);<br />
$(ET001_TabContainer).children().eq(splitindex*2).after(&#8220;&#60;div style=&#8217;font-size:0px;&#8217;&#62;&#60;/div&#62;&#8221;);<br />
$(ET001_TabContainer).children().eq(splitindex).after(&#8220;&#60;div style=&#8217;font-size:0px;&#8217;&#62;&#60;/div&#62;&#8221;);}</p>
<p>Or you can force your own values:<br />
//split<br />
$(ET001_TabContainer).children().eq(5).after(&#8220;&#60;div style=&#8217;font-size:0px;&#8217;&#62;&#60;/div&#62;&#8221;);<br />
$(ET001_TabContainer).children().eq(11).after(&#8220;&#60;div style=&#8217;font-size:0px;&#8217;&#62;&#60;/div&#62;&#8221;);</p>
<p>And if your users ask for too many rows&#8230;switch to a Quick Menu Web Part!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SharePoint Saturdays]]></title>
<link>http://sharepointkb.wordpress.com/2009/11/20/sharepoint-saturdays/</link>
<pubDate>Fri, 20 Nov 2009 16:59:11 +0000</pubDate>
<dc:creator>rharbridge</dc:creator>
<guid>http://sharepointkb.wordpress.com/2009/11/20/sharepoint-saturdays/</guid>
<description><![CDATA[One other small update. I will be presenting at both SharePoint Saturday DC on December 5th and at S]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>One other small update. I will be presenting at both <a href="http://www.sharepointsaturday.org/dc/default.aspx">SharePoint Saturday DC</a> on December 5th and at <a href="http://www.sharepointsaturday.org/virginiabeach/default.aspx">SharePoint Saturday Virginia Beach</a> on January 9th. Closer to the dates or when I have something worth sharing from my slides I will post it here as well.</p>
<p>If anyone from the Toronto area wants to come<strong> I will be driving down</strong> both times I think, and so I have<strong> open spots in my car</strong> if you want to come <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Just email me harbrich &#60;{at}&#62; hotmail.com and we can work it out.</p>
<p>Take care,<br />
Richard Harbridge</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Canadian SharePoint User Groups Galore]]></title>
<link>http://sharepointkb.wordpress.com/2009/11/20/canadian-sharepoint-user-groups-galore/</link>
<pubDate>Fri, 20 Nov 2009 16:51:32 +0000</pubDate>
<dc:creator>rharbridge</dc:creator>
<guid>http://sharepointkb.wordpress.com/2009/11/20/canadian-sharepoint-user-groups-galore/</guid>
<description><![CDATA[There are more than a bazillion posts now out there about SharePoint and Office 2010. Yes I counted ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>There are more than a bazillion posts now out there about SharePoint and Office 2010. Yes I counted them. So I will just reference this address and tell you to visit it and get the beta&#8217;s and have fun: <a href="http://www.microsoft.com/2010/en/" target="_blank">http://www.microsoft.com/2010/en/</a>.</p>
<p>A whole slew of things are going on that are also exciting. In Canada we have two new user groups for SharePoint.</p>
<p>There is the Mississauga SharePoint User Group (<a href="http://www.mspug.ca" target="_blank">http://www.mspug.ca</a>) and the Calgary SharePoint User Group (<a href="http://www.calspug.com" target="_blank">http://www.calspug.com</a>).</p>
<p>Let&#8217;s not forget the other great SharePoint User Groups in Canada in fact here is a list of all of them!</p>
<ol>
<li>Toronto SharePoint User Group &#8211; <a href="http://www.tspug.com/" target="_blank">http://www.tspug.com/</a></li>
<li>Mississauga SharePoint User Group &#8211; <a href="http://www.mspug.ca/" target="_blank">http://www.mspug.ca/</a></li>
<li>Calgary SharePoint User Group &#8211; <a href="http://www.calspug.com/" target="_blank">http://www.calspug.com/</a></li>
<li>Quebec SharePoint User Group &#8211; <a href="http://www.sharepointquebec.org/" target="_blank">http://www.sharepointquebec.org/</a></li>
<li>Ottawa SharePoint User Group &#8211; <a href="http://sharepoint.microsoft.com/sharepoint/worldwide/ca/ottawa/" target="_blank">http://sharepoint.microsoft.com/sharepoint/worldwide/ca/ottawa/</a></li>
<li>Vancouver SharePoint User Group &#8211; <a href="http://www.vanspug.com/" target="_blank">http://www.vanspug.com/</a></li>
<li>Victoria SharePoint User Group &#8211; <a href="http://www.vsharepoint.com/" target="_blank">http://www.vsharepoint.com/</a></li>
<li>Winnipeg SharePoint User Group &#8211; <a href="http://www.sharepointgroups.org/wsug/" target="_blank">http://www.sharepointgroups.org/wsug/</a></li>
</ol>
<p>P.S &#8211; Microsoft please update your website here: <a href="http://sharepoint.microsoft.com/sharepointcanada/Community/Pages/default.aspx">http://sharepoint.microsoft.com/sharepointcanada/Community/Pages/default.aspx</a></p>
<p>Hope this helps someone and <strong>GET INVOLVED </strong>the SharePoint community is awesome!<br />
Richard Harbridge</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SPSaturday Phoenix SharePint Options]]></title>
<link>http://sharepointony.info/2009/11/19/spsaturday-phoenix-sharepint-options/</link>
<pubDate>Fri, 20 Nov 2009 00:47:48 +0000</pubDate>
<dc:creator>sharepoinTony</dc:creator>
<guid>http://sharepointony.info/2009/11/19/spsaturday-phoenix-sharepint-options/</guid>
<description><![CDATA[Taking it upon myself to research online a bit, I found the following locations to be potential loca]]></description>
<content:encoded><![CDATA[Taking it upon myself to research online a bit, I found the following locations to be potential loca]]></content:encoded>
</item>
<item>
<title><![CDATA[extending the 50 site limit to the SharePoint Portal navigation]]></title>
<link>http://localgovernmentsharepoint.wordpress.com/2009/11/19/extending-the-50-site-limit-to-the-sharepoint-portal-navigation/</link>
<pubDate>Thu, 19 Nov 2009 21:37:34 +0000</pubDate>
<dc:creator>Rob Ashcroft</dc:creator>
<guid>http://localgovernmentsharepoint.wordpress.com/2009/11/19/extending-the-50-site-limit-to-the-sharepoint-portal-navigation/</guid>
<description><![CDATA[Today while at work I was working to clean up our intranet&#8217;s site directory in SharePoint. I n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Today while at work I was working to clean up our intranet&#8217;s site directory in SharePoint.</p>
<p>I noticed that the Navigation menu in one of our sites was only listing 50 page links, even though there were plenty more pages within that particular site.</p>
<p>Since I knew there were more and that this was probably the result of some inherent limit, I dug around and found this post which explains how to modify your web.config. It basically boils down to adding a property DynamicChildLimit=&#8221;XX&#8221; to the following entries in the web.config file, where XX is 0 (no limit) or whatever numeric limit you decide. By default it is 50. (The web.config file to modify is usually located in C:\Inetpub\wwwroot\wss\VirtualDirectories\80, with the last portion being whatever port number MOSS is running from).</p>
<p>Set the limit to 0 to give yourself flexibility.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[HTML Calculated Column: minor update... and some advice]]></title>
<link>http://pathtosharepoint.wordpress.com/2009/11/19/html-calculated-column-minor-update-and-some-advice/</link>
<pubDate>Thu, 19 Nov 2009 09:57:05 +0000</pubDate>
<dc:creator>Christophe</dc:creator>
<guid>http://pathtosharepoint.wordpress.com/2009/11/19/html-calculated-column-minor-update-and-some-advice/</guid>
<description><![CDATA[I am publishing today a minor update (v 2.1.1) of the TextToHTML script: http://www.pathtosharepoint]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="null"><img class="alignleft" title="calcgradient" src="http://pathtosharepoint.files.wordpress.com/2009/11/calcgradient.png?w=74&#038;h=360" alt="" width="74" height="360" /></a>I am publishing today a minor update (v 2.1.1) of the TextToHTML script:<br />
<a href="http://www.pathtosharepoint.com/HTMLcc/default.aspx">http://www.pathtosharepoint.com/HTMLcc/default.aspx</a><br />
You&#8217;ll find the updated files under the &#8220;download&#8221; tab.</p>
<p><strong>Why this update?</strong></p>
<p>First, I am responding to comments from readers on the EndUserSharePoint.com blog. Several months ago, Jim Bob Howard posted <a href="http://www.endusersharepoint.com/2009/04/17/sharepoint-color-coded-calendar-the-payroll-schedule/" target="_blank">an example using my method</a>. His post offers detailed step by step explanations, and is very popular. However, a few readers reported issues with the calendar week/day views, which didn&#8217;t render the colors in some configurations. The code I posted today aims at fixing this issue.</p>
<p>I am also taking the opportunity of this update to propose two separate scripts:<br />
- a light version, for both SharePoint 2003 and 2007, that applies the rendering to displayed items only.<br />
- a full version, SP 2007 only, that applies the rendering to displayed and hidden items (grouped views, preview pane, etc.). Be aware that this version encapsulates some of the SharePoint OOTB code.</p>
<p><strong>Tell me again, what is this &#8220;HTML Calculated Column&#8221;?</strong></p>
<p>If you are an end user, the HTML Calculated Column is a simple yet powerful method that allows you to enhance your SharePoint sites. Even if you don&#8217;t plan to use it, you should at least be aware of its capabilities. It many situations, it can replace or even do better than other SharePoint options, like the Data View Web Part, Excel Services or the KPIs available in MOSS. To give you an idea of what you can accomplish, take a look at these examples:<br />
- <a href="http://pathtosharepoint.wordpress.com/2008/12/09/color-coding-more-examples/" target="_blank">indicators for lists<br />
</a>- <a href="http://pathtosharepoint.wordpress.com/2008/11/15/sharepoint-calendars-color-coding-hover-effects-etc/" target="_blank">color coded calendars<br />
</a>- <a href="http://pathtosharepoint.wordpress.com/2009/06/26/case-study-kpi-roll-up-in-moss-1/" target="_blank">KPI roll-up<br />
</a>- <a href="http://pathtosharepoint.wordpress.com/2008/11/28/live-demos-widgets-rest-jquery-in-sharepoint-lists/" target="_blank">some other applications</a>&#8230;</p>
<p>For more explanations, read <a href="http://pathtosharepoint.wordpress.com/2008/09/01/apply-color-coding-to-your-sharepoint-lists/" target="_blank">the original article</a>.</p>
<p>To be fair, the method also has its flaws. It leverages the OOTB calculated column, but also relies on a client side script to render the HTML on the page. If you don&#8217;t feel comfortable with the &#8220;hack&#8221; part (TextToHTML script), note that you can avoid it if you use the method with a Data View Web Part, a Content Query Web Part (see above link: KPI roll-up), or an XML source (RSS, URL protocol, Web Service).</p>
<p><strong>Why two different file formats, .dwp and .txt?</strong></p>
<p>I am releasing the code in two formats: Web Part (.dwp) and text (.txt).</p>
<p>The .dwp file is for your convenience, if you only use the method sporadically, or for the first time. Simply import the Web Part to your page and you&#8217;re good to go. It is just a Content Editor Web Part containing the script.</p>
<p>If you plan to use the method on a regular basis, you should grab the text file instead: store the code in a central location and point to it. This will greatly facilitate future updates. For more details on this &#8220;best practice&#8221;, read <a href="http://pathtosharepoint.wordpress.com/2009/02/15/a-content-editor-web-part-for-every-home/" target="_blank">this article</a>.</p>
<p><strong>A couple reminders</strong></p>
<p>- Remember that the Text to HTML script must be placed below the lists you need to modify.</p>
<p>- The HTML you create via the calculated column must follow the HTML standards. For example for calendar views you&#8217;ll need to use inline elements (&#8220;span&#8221; for example), not block elements (like &#8220;div&#8221;).</p>
<p><strong>What&#8217;s next?</strong></p>
<p>I am currently working on version 3 of the script, which will make the method work on column filters, and headers of grouped views. Some people have already received intermediary versions, and I am waiting for their feedback.<br />
I am also listening to feedback on the current version (big thanks to the readers who shared their findings!). For example, the use of the method in discussion lists, blogs or wikis will require more investigations.</p>
<p><strong>How can I be informed of upcoming releases?</strong></p>
<p>The preferred way is to subscribe to the RSS feeds, either for <a href="http://pathtosharepoint.wordpress.com/feed/" target="_blank">this blog</a> or for my SharePoint <a href="http://www.pathtosharepoint.com/_layouts/listfeed.aspx?List=%7B82073850%2D7213%2D42BE%2DBA8F%2DD8D527592F17%7D" target="_blank">downloads library</a>. If you don&#8217;t use RSS, feel free to <a href="mailto:christophe@pathtosharepoint.com" target="_blank">contact me,</a> and I&#8217;ll send you an e-mail when v3 is out.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Green Week and Technology]]></title>
<link>http://sharepointony.info/2009/11/18/green-week-and-technology/</link>
<pubDate>Thu, 19 Nov 2009 00:23:45 +0000</pubDate>
<dc:creator>sharepoinTony</dc:creator>
<guid>http://sharepointony.info/2009/11/18/green-week-and-technology/</guid>
<description><![CDATA[This week is Green Week, so I thought I would post on that theme. There are growing numbers of discu]]></description>
<content:encoded><![CDATA[This week is Green Week, so I thought I would post on that theme. There are growing numbers of discu]]></content:encoded>
</item>
<item>
<title><![CDATA[10 SharePoint 2007 Admin shortcuts]]></title>
<link>http://sharepointony.info/2009/11/18/10-sharepoint-2007-admin-shortcuts/</link>
<pubDate>Wed, 18 Nov 2009 16:25:09 +0000</pubDate>
<dc:creator>sharepoinTony</dc:creator>
<guid>http://sharepointony.info/2009/11/18/10-sharepoint-2007-admin-shortcuts/</guid>
<description><![CDATA[Shortcuts that can help you get to pages you need when working on your SharePoint 2007 sites. Add th]]></description>
<content:encoded><![CDATA[Shortcuts that can help you get to pages you need when working on your SharePoint 2007 sites. Add th]]></content:encoded>
</item>
<item>
<title><![CDATA[Content Editor Web Part Tips and Tricks]]></title>
<link>http://localgovernmentsharepoint.wordpress.com/2009/11/16/content-editor-web-part-tips-and-tricks/</link>
<pubDate>Mon, 16 Nov 2009 18:51:57 +0000</pubDate>
<dc:creator>Rob Ashcroft</dc:creator>
<guid>http://localgovernmentsharepoint.wordpress.com/2009/11/16/content-editor-web-part-tips-and-tricks/</guid>
<description><![CDATA[In the Rich Text Editor, use the buttons on the toolbar for formatting, adding tables, hyperlinks, a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ul>
<li>In the Rich Text Editor, use the buttons on the toolbar for formatting, adding tables, hyperlinks, and images.</li>
<li>Images: Upload your image to your site before attempting to add an image to the Web part. Once you’ve uploaded your image to the site, you can add the image to the Web part by clicking the Image button (or CTRL+SHIFT+G) and click browse to find your image on the site. Then, you can choose how to display the image within the text. For example, under Alignment in the Edit Image Properties dialog box, choose Left to place the image to the left side of the text (as in the screenshot shown above). To add space between the image and the text, add a number under Horizontal Spacing (pixels) or Vertical Spacing (pixels). I always start with 10.</li>
<li>Styles: Want to use predefined styles? Don’t click the Styles button. Instead, click the paragraph mark button and select a style such as Bulleted List, Heading 1, Heading 2, and so on.</li>
<li>So what is the Styles button for? I use it when I paste content into the Rich Text Editor from another source, and it doesn’t look quite right. So I click Remove Inline Styles under Styles to remove stray formatting brought in from the other source, and then reformat the text in the Rich Text Editor.</li>
<li>Title (Chrome): When you’re using the Content Editor Web Part to display a heading, you might not want the Content Editor Web Part title to show. To remove it, expand the Appearance section in the tool pane, and under Chrome Type, select None or Border Only.</li>
<li>Height and Width: You can specify a height and width for the Web part by expanding the Appearance section and clicking Yes under Height or Width, and then entering the size you want. You can choose to represent the size in Pixels, Inches, Points, and more.</li>
<li>Editing the HTML: If something just doesn’t look right and you can’t change it using the Rich Text Editor, you may need to edit the HTML directly. You can do this by clicking the Edit HTML Source button in the Rich Text Editor, or by closing the Rich Text Editor and clicking the Source Editor button in the tool pane. In cases where there is a lot of HTML to work with, I copy the HTML out into Notepad where I can wrap the text and use the Find tool to find what I’m looking for, make my changes, and then copy it back into the Source Editor. For especially complex HTML, I will copy the code into SharePoint Designer and work with it there.</li>
</ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Enabling or disabling Content Approval for a List or a Document Library]]></title>
<link>http://localgovernmentsharepoint.wordpress.com/2009/11/16/enabling-or-disabling-content-approval-for-a-list-or-a-document-library/</link>
<pubDate>Mon, 16 Nov 2009 18:49:57 +0000</pubDate>
<dc:creator>Rob Ashcroft</dc:creator>
<guid>http://localgovernmentsharepoint.wordpress.com/2009/11/16/enabling-or-disabling-content-approval-for-a-list-or-a-document-library/</guid>
<description><![CDATA[To enable content approval for a list or a document library in your Windows SharePoint Services site]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To enable content approval for a list or a document library in your Windows SharePoint Services site, follow these steps:</p>
<p>Connect to your Windows SharePoint Services site, and then locate the list or the document library that you want to enable content approval for.</p>
<p>In the Actions area, click Modify settings and columns.</p>
<p>In the General Settings area, click Change general settings.</p>
<p>On the List Settings page, in the Content Approval area, click Yes or No to enable or disable this feature.</p>
<p>Click OK.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Step by step process for changing master page automatically using STSADM command line tool]]></title>
<link>http://itfootprint.wordpress.com/2009/11/16/step-by-step-process-for-changing-master-page-automatically-using-stsadm-command-line-tool/</link>
<pubDate>Mon, 16 Nov 2009 02:58:37 +0000</pubDate>
<dc:creator>Jag</dc:creator>
<guid>http://itfootprint.wordpress.com/2009/11/16/step-by-step-process-for-changing-master-page-automatically-using-stsadm-command-line-tool/</guid>
<description><![CDATA[Recently, my colleague (Ankul Mathur) and me (much of the work done by him!) created a custom soluti]]></description>
<content:encoded><![CDATA[Recently, my colleague (Ankul Mathur) and me (much of the work done by him!) created a custom soluti]]></content:encoded>
</item>
<item>
<title><![CDATA[Anonymous access in SharePoint]]></title>
<link>http://privmarioen.wordpress.com/2009/11/12/anonymous-access-in-sharepoint/</link>
<pubDate>Thu, 12 Nov 2009 15:06:47 +0000</pubDate>
<dc:creator>Mario Mendez</dc:creator>
<guid>http://privmarioen.wordpress.com/2009/11/12/anonymous-access-in-sharepoint/</guid>
<description><![CDATA[(original post) Anonymous access is configured during a web site creation  from SharePoint Administr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://privmario.wordpress.com/2009/09/04/acceso-anonimo-en-sharepoint/" target="_blank"><em>(original post)</em></a></p>
<p>Anonymous access is configured during a web site creation  from SharePoint Administration site, which prepares the permissions in IIS.<br />
However, access to lists and pages is restricted in many cases. So we must resort to stsadm command to leave ready access at least.<br />
This is a behavior unwanted, but it was <a href="http://support.microsoft.com/kb/927082/en-us" target="_blank">documented </a>by Microsoft with the instructions of the case.<br />
Obviously, the reason for this deficiency is that the product main target for use is under logon or authentication; which makes sense since its main consistent security of access and user management enviroment make it a too robust application to only create (or use their adapted features) with static sites with anonymous access.</p>
<p style="text-align:right;">(<em><a href="http://wp.me/pGUxY-X" target="_self">tiny</a></em>)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Getting started with Silverlight 3 and SharePoint]]></title>
<link>http://sharepointcoding.wordpress.com/2009/11/12/getting-started-with-silverlight-3-and-sharepoint/</link>
<pubDate>Thu, 12 Nov 2009 10:58:32 +0000</pubDate>
<dc:creator>alex350r</dc:creator>
<guid>http://sharepointcoding.wordpress.com/2009/11/12/getting-started-with-silverlight-3-and-sharepoint/</guid>
<description><![CDATA[Recently I have been focusing on creating some Silverlight charts using the ‘Silverlight Toolkit’ fr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://sharepointcoding.files.wordpress.com/2009/11/silverlightlogo_1.jpg"><img style="display:inline;margin-left:0;margin-right:0;border:0;" title="Silverlight Logo" src="http://sharepointcoding.files.wordpress.com/2009/11/silverlightlogo_1_thumb.jpg?w=99&#038;h=95" border="0" alt="Silverlight Logo" width="99" height="95" align="left" /></a> Recently I have been focusing on creating some Silverlight charts using the ‘Silverlight Toolkit’ from Codeplex (see the link in the instructions below).</p>
<p>Once I had created my first chart I wondered how to get it to display in SharePoint. It seems there are a number of options for displaying a Silverlight application (xap) in a SharePoint web part.</p>
<p>I found lots of blog posts that described separate bits of configuring I needed to do to get Silverlight working happily in SharePoint. I&#8217;ve decided to create a getting started list of what you need to do to get Silverlight installed and how to display your xap file with the built in &#8216;Content Editor Web Part’. I have linked to other blog posts where necessary.</p>
<p><strong><span style="text-decoration:underline;">Configuration</span></strong></p>
<p>1. Download and install the Silverlight 3 runtime from silverlight.net -</p>
<p><a title="http://silverlight.net/getstarted/silverlight3/" href="http://silverlight.net/getstarted/silverlight3/">http://silverlight.net/getstarted/silverlight3/</a></p>
<p>2. Download and install the Silverlight 3 SDK and tools for Visual Studio from the silverlight site - </p>
<p><a title="http://silverlight.net/getstarted/" href="http://silverlight.net/getstarted/">http://silverlight.net/getstarted/</a></p>
<p>3. &#60;Optional&#62; Download and install the Silverlight Toolkit (If you want to use some of these cool and free Silverlight controls) -</p>
<p><a title="http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30514" href="http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30514">http://silverlight.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=30514</a></p>
<p>4. If you are running Windows Server 2008 you can skip this step as the MIME types should have been automatically added to IIS7 for you. For server 2003 users you will need to add the Silverlight MIME types to IIS6, follow the instructions here -</p>
<p><a title="http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx" href="http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx">http://blogs.technet.com/jorke/archive/2007/09/11/silverlight-mime-types-in-iis6.aspx</a></p>
<p>5. This step involves configuring the web.config files for the SharePoint sites that you wish to run your Silverlight applications in. Follow the instructions on this blog post -</p>
<p><a title="http://blogs.msdn.com/steve_fox/archive/2009/03/11/amending-the-web-config-file-to-support-silverlight-development-on-sharepoint.aspx" href="http://blogs.msdn.com/steve_fox/archive/2009/03/11/amending-the-web-config-file-to-support-silverlight-development-on-sharepoint.aspx">http://blogs.msdn.com/steve_fox/archive/2009/03/11/amending-the-web-config-file-to-support-silverlight-development-on-sharepoint.aspx</a></p>
<p>6. Ensure that the assembly <strong>System.Web.Silverlight </strong>is in the global assembly cache. If not then you can find it at the following location -</p>
<p>C:\Program Files\Microsoft SDKs\Silverlight\v3.0\Libraries\Server</p>
<p>7. Configuration complete! – now read on to the deployment section</p>
<p><strong><span style="text-decoration:underline;">Deployment</span></strong></p>
<p>To get your silverlight xap displaying on a SharePoint page follow the steps below. In terms of where to store your .xap file there are a number of places for you to choose. Some people recommend storing it in a folder called ‘ClientBin’ in the IIS virtual directory of the SharePoint web application but I was not able to get this working. I opted for the simplest method which was to store the file in a document library.</p>
<p>1. Upload your Silverlight xap file to a document library</p>
<p>2. Switch to edit mode for your SharePoint page and add a Content Editor Web Part</p>
<p>3. Insert the following HTML code - </p>
<p><span style="color:#0000ff;">&#60;!&#8211;&#60;div width=&#8221;600px&#8221; height=&#8221;100px&#8221; id=&#8221;silverlightControlHost&#8221;&#62;<br />
&#60;object data=&#8221;data:application/x-silverlight&#8221;, type=&#8221;application/x-silverlight-2&#8243; width=&#8221;450&#8243; height=&#8221;450&#8243;&#62;<br />
&#60;param name=&#8221;source&#8221; value=&#8221;</span><a href="http://yoursite/sites/charting/XAPs/SimpleSilverlightChart.xap&#34;/"><span style="color:#0000ff;">http://yoursite/sites/charting/XAPs/SimpleSilverlightChart.xap&#8221;/</span></a><span style="color:#0000ff;">&#62;<br />
&#60;param name=&#8221;onerror&#8221; value=&#8221;onSilverlightError&#8221; /&#62;<br />
&#60;param name=&#8221;background&#8221; value=&#8221;white&#8221; /&#62;<br />
&#60;a href=&#8221;</span><a href="http://go.microsoft.com/fwlink/?LinkID=108182&#34;"><span style="color:#0000ff;">http://go.microsoft.com/fwlink/?LinkID=108182&#8243;</span></a><span style="color:#0000ff;"> style=&#8221;text-decoration: none;&#8221;&#62;<br />
&#60;img src=&#8221;</span><a href="http://go.microsoft.com/fwlink?LinkID=108101&#34;"><span style="color:#0000ff;">http://go.microsoft.com/fwlink?LinkID=108101&#8243;</span></a><span style="color:#0000ff;"> alt=&#8221;Get Microsoft Silverlight&#8221; style=&#8221;border-style: none&#8221;/&#62;<br />
&#60;/a&#62;<br />
&#60;/object&#62;<br />
&#60;iframe style=&#8217;visibility:hidden;height:0;width:0;border:0px&#8217;&#62;&#60;/iframe&#62;<br />
&#60;/div&#62; –&#62;</span></p>
<p>Remember to remove the comments from the above code and replace the param value=”” with the url to your document library and xap file.</p>
<p>4. Click apply and save the changes to your content editor web part</p>
<p>5. If all went well you should be seeing your Silverlight application displaying correctly!</p>
<p>Note: You may need to play around with the width and height of both the &#60;div&#62; and &#60;object&#62; tags to size them correctly for your Silverlight application.</p>
<p>Good Luck! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fab 40 Help Desk Template screen shots]]></title>
<link>http://sharepointony.info/2009/11/11/fab-40-help-desk-template-screen-shots/</link>
<pubDate>Thu, 12 Nov 2009 02:48:33 +0000</pubDate>
<dc:creator>sharepoinTony</dc:creator>
<guid>http://sharepointony.info/2009/11/11/fab-40-help-desk-template-screen-shots/</guid>
<description><![CDATA[Here are a few quick screen shots to see how the Help Desk template looks without modification.  Thi]]></description>
<content:encoded><![CDATA[Here are a few quick screen shots to see how the Help Desk template looks without modification.  Thi]]></content:encoded>
</item>
<item>
<title><![CDATA[How to find open ports with the netstat command]]></title>
<link>http://localgovernmentsharepoint.wordpress.com/2009/11/11/how-to-find-open-ports-with-the-netstat-command/</link>
<pubDate>Wed, 11 Nov 2009 19:05:24 +0000</pubDate>
<dc:creator>Rob Ashcroft</dc:creator>
<guid>http://localgovernmentsharepoint.wordpress.com/2009/11/11/how-to-find-open-ports-with-the-netstat-command/</guid>
<description><![CDATA[To find open ports on a computer, you can use netstat command line. To display all open ports, open ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To find open ports on a computer, you can use netstat command line.</p>
<ol>
<li>To display all open ports, open DOS command, type <em>netstat</em> and press Enter.</li>
<li>To list all listening ports, use <em>netstat -an &#124;find /i &#8220;listening&#8221;</em> command.</li>
<li>To see what ports your computer actually communicates with, use <em>netstat -an &#124;find /i &#8220;established&#8221;</em></li>
<li>To find specified open port, use find switch. For example, to find if the port 3389 is open or not, do <em>netstat -an &#124;find /i &#8220;3389&#8243;.</em></li>
<li>You can use PULIST from the Windows Resource Kit to find which process is using a specified port. For example, <em>pulist &#124;find /i &#8220;4125&#8243;</em> may display</li>
</ol>
<p>Process    PID     User<br />
mad.exe   4125   Chicagotech/blin</p>
<p>Or you can use tasklist to find PID.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
