<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Whats The Point Of Sharing?</title>
	<atom:link href="http://www.whatsthepointofsharing.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whatsthepointofsharing.com</link>
	<description>The SharePoint blog for Business Analysts</description>
	<lastBuildDate>Mon, 17 Oct 2011 09:34:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on WSP Builder:Microsoft SharePoint Services Administration is not running by Arjen de Mooij</title>
		<link>http://www.whatsthepointofsharing.com/2009/02/04/wsp-buildermicrosoft-sharepoint-services-administration-is-not-running/comment-page-1/#comment-8859</link>
		<dc:creator>Arjen de Mooij</dc:creator>
		<pubDate>Mon, 17 Oct 2011 09:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://whatsthepointofsharing.wordpress.com/?p=15#comment-8859</guid>
		<description>Actually, the service is called Windows Sharepoint Services Administration. That&#039;s why you can&#039;t find it.</description>
		<content:encoded><![CDATA[<p>Actually, the service is called Windows Sharepoint Services Administration. That&#8217;s why you can&#8217;t find it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cant crawl a site when you know that you should be able to by frederick</title>
		<link>http://www.whatsthepointofsharing.com/2009/05/06/cant-crawl-a-site-when-you-know-that-you-should-be-able-to/comment-page-1/#comment-8351</link>
		<dc:creator>frederick</dc:creator>
		<pubDate>Wed, 28 Sep 2011 02:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://whatsthepointofsharing.wordpress.com/?p=203#comment-8351</guid>
		<description>Thanks for the &quot;if all else fails&quot; solution, it always seems that there is often an extra step that can be taken when others don&#039;t seem to work.</description>
		<content:encoded><![CDATA[<p>Thanks for the &#8220;if all else fails&#8221; solution, it always seems that there is often an extra step that can be taken when others don&#8217;t seem to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Placing the ECB Menu on any item field in SharePoint 2010 by Fred Matteson</title>
		<link>http://www.whatsthepointofsharing.com/2010/01/17/placing-the-ecb-menu-on-any-item-field-in-sharepoint-2010/comment-page-1/#comment-8146</link>
		<dc:creator>Fred Matteson</dc:creator>
		<pubDate>Tue, 20 Sep 2011 07:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.whatsthepointofsharing.com/?p=660#comment-8146</guid>
		<description>Great tip on the ECB menu. Thanks for sharing this.</description>
		<content:encoded><![CDATA[<p>Great tip on the ECB menu. Thanks for sharing this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing SharePoint 2010 on Windows 7 by Luis Garcia</title>
		<link>http://www.whatsthepointofsharing.com/2009/11/21/installing-sharepoint-2010-on-windows-7/comment-page-1/#comment-7831</link>
		<dc:creator>Luis Garcia</dc:creator>
		<pubDate>Wed, 07 Sep 2011 15:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.whatsthepointofsharing.com/?p=559#comment-7831</guid>
		<description>If you want also to turn off the SP2007 services in one step, you can have this following MS-DOS batch code commands, please save the following lines in a batch file (myfile.bat) and run it, and you will be able to Turn ON or OFF any time you want, in case you want to free memory by cancelling the SP services from running.

@echo off

:start
cls

ECHO.
ECHO 1. START SP 2010 and SQL services
ECHO 2. STOP  SP 2010 and SQL services 
ECHO 3. Quit


set choice=
set /p choice=Start or stop SP services: 
if not &#039;%choice%&#039;==&#039;&#039; set choice=%choice:~0,1%
if &#039;%choice%&#039;==&#039;1&#039; goto startSP
if &#039;%choice%&#039;==&#039;2&#039; goto stopSP
if &#039;%choice%&#039;==&#039;3&#039; goto quita
ECHO &quot;%choice%&quot; is not valid, try again


:startSP
cls
sc start SPAdminV4
sc start SPTimerV4
sc start SPTraceV4
sc start SPUserCodeV4
sc start SPWriterV4
sc start SPSearch4
sc start OSearch14
sc start DCLauncher14
sc start DCLoadBalancer14

sc start MSSQL$SHAREPOINT
sc start SQLAgent$SHAREPOINT

pause
goto start

:stopSP

sc stop SPAdminV4
sc stop SPTimerV4
sc stop SPTraceV4
sc stop SPUserCodeV4
sc stop SPWriterV4
sc stop SPSearch4
sc stop OSearch14

sc stop DCLauncher14
sc stop DCLoadBalancer14

sc stop MSSQL$SHAREPOINT
sc stop SQLAgent$SHAREPOINT

pause
goto start

:quita

exit</description>
		<content:encoded><![CDATA[<p>If you want also to turn off the SP2007 services in one step, you can have this following MS-DOS batch code commands, please save the following lines in a batch file (myfile.bat) and run it, and you will be able to Turn ON or OFF any time you want, in case you want to free memory by cancelling the SP services from running.</p>
<p>@echo off</p>
<p>:start<br />
cls</p>
<p>ECHO.<br />
ECHO 1. START SP 2010 and SQL services<br />
ECHO 2. STOP  SP 2010 and SQL services<br />
ECHO 3. Quit</p>
<p>set choice=<br />
set /p choice=Start or stop SP services:<br />
if not &#8216;%choice%&#8217;==&#8221; set choice=%choice:~0,1%<br />
if &#8216;%choice%&#8217;==&#8217;1&#8242; goto startSP<br />
if &#8216;%choice%&#8217;==&#8217;2&#8242; goto stopSP<br />
if &#8216;%choice%&#8217;==&#8217;3&#8242; goto quita<br />
ECHO &#8220;%choice%&#8221; is not valid, try again</p>
<p>:startSP<br />
cls<br />
sc start SPAdminV4<br />
sc start SPTimerV4<br />
sc start SPTraceV4<br />
sc start SPUserCodeV4<br />
sc start SPWriterV4<br />
sc start SPSearch4<br />
sc start OSearch14<br />
sc start DCLauncher14<br />
sc start DCLoadBalancer14</p>
<p>sc start MSSQL$SHAREPOINT<br />
sc start SQLAgent$SHAREPOINT</p>
<p>pause<br />
goto start</p>
<p>:stopSP</p>
<p>sc stop SPAdminV4<br />
sc stop SPTimerV4<br />
sc stop SPTraceV4<br />
sc stop SPUserCodeV4<br />
sc stop SPWriterV4<br />
sc stop SPSearch4<br />
sc stop OSearch14</p>
<p>sc stop DCLauncher14<br />
sc stop DCLoadBalancer14</p>
<p>sc stop MSSQL$SHAREPOINT<br />
sc stop SQLAgent$SHAREPOINT</p>
<p>pause<br />
goto start</p>
<p>:quita</p>
<p>exit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing the Restricted Readers Group by Javier Pintor</title>
		<link>http://www.whatsthepointofsharing.com/2009/04/17/removing-the-restricted-readers-group/comment-page-1/#comment-7302</link>
		<dc:creator>Javier Pintor</dc:creator>
		<pubDate>Wed, 03 Aug 2011 09:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://whatsthepointofsharing.wordpress.com/?p=122#comment-7302</guid>
		<description>I am still a dummy on this SharePoint. I just installed my SharePoint server 2010 and I don’t have broad knowledge about it yet. I read your post and things make me confuse. What is that?  I meant what you meant by restricted reader group? Can I suggest for a tutorial or step by step on how to do it? It seems like very helpful to keep the privacy of my site. It just happens that I want to put some restriction page to my site for my students. If you don’t mind? Thanks!</description>
		<content:encoded><![CDATA[<p>I am still a dummy on this SharePoint. I just installed my SharePoint server 2010 and I don’t have broad knowledge about it yet. I read your post and things make me confuse. What is that?  I meant what you meant by restricted reader group? Can I suggest for a tutorial or step by step on how to do it? It seems like very helpful to keep the privacy of my site. It just happens that I want to put some restriction page to my site for my students. If you don’t mind? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatically emailing users when a new item is added by Awnings Gauteng</title>
		<link>http://www.whatsthepointofsharing.com/2010/03/20/automatically-emailing-users-when-a-new-item-is-added/comment-page-1/#comment-7271</link>
		<dc:creator>Awnings Gauteng</dc:creator>
		<pubDate>Mon, 01 Aug 2011 07:34:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.whatsthepointofsharing.com/?p=662#comment-7271</guid>
		<description>This is likely to save a lot of money for me since I had hired a virtual assistant at $20 per hour to email users when new items are added. Thanks a tonne for sharing this information and plugin.</description>
		<content:encoded><![CDATA[<p>This is likely to save a lot of money for me since I had hired a virtual assistant at $20 per hour to email users when new items are added. Thanks a tonne for sharing this information and plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatically emailing users when a new item is added by Architects in Cape Town</title>
		<link>http://www.whatsthepointofsharing.com/2010/03/20/automatically-emailing-users-when-a-new-item-is-added/comment-page-1/#comment-7147</link>
		<dc:creator>Architects in Cape Town</dc:creator>
		<pubDate>Sun, 24 Jul 2011 09:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.whatsthepointofsharing.com/?p=662#comment-7147</guid>
		<description>Wow, this is great. I have been manually emailing users when  anyone adds a new item. It literally takes up all my day; and this is going to save up a lot of time so that I can further expand my business. Great stuff.</description>
		<content:encoded><![CDATA[<p>Wow, this is great. I have been manually emailing users when  anyone adds a new item. It literally takes up all my day; and this is going to save up a lot of time so that I can further expand my business. Great stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If you get the &#8216;The Silverlight project you are about to debug users RIA services. RIA services will fail unless the Silverlight project is hosted in and launched from the same web project that contains the RIA services&#8217; by Erick</title>
		<link>http://www.whatsthepointofsharing.com/2009/09/28/if-you-get-the-the-silverlight-project-you-are-about-to-debug-users-ria-services-ria-services-will-fail-unless-the-silverlight-project-is-hosted-in-and-launched-from-the-same-web-project-that-conta/comment-page-1/#comment-6945</link>
		<dc:creator>Erick</dc:creator>
		<pubDate>Tue, 12 Jul 2011 18:03:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.whatsthepointofsharing.com/?p=438#comment-6945</guid>
		<description>Thanks man, this also worked also when instead of RIA services it mentions &quot;web services&quot;. Kudos to you</description>
		<content:encoded><![CDATA[<p>Thanks man, this also worked also when instead of RIA services it mentions &#8220;web services&#8221;. Kudos to you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SharePoint Branding: Themes vs Style Sheets vs Relative CSS by Larry</title>
		<link>http://www.whatsthepointofsharing.com/2009/07/27/sharepoint-branding-themes-vs-style-sheets-vs-relative-css/comment-page-1/#comment-6903</link>
		<dc:creator>Larry</dc:creator>
		<pubDate>Sun, 10 Jul 2011 22:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://whatsthepointofsharing.wordpress.com/?p=317#comment-6903</guid>
		<description>Thanks for sharing the advantages and disadvantages when it comes to the various CSS themes. It&#039;s provided more clarity with some of the questions I&#039;ve had in dealing with CSS.</description>
		<content:encoded><![CDATA[<p>Thanks for sharing the advantages and disadvantages when it comes to the various CSS themes. It&#8217;s provided more clarity with some of the questions I&#8217;ve had in dealing with CSS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If you get the &#8216;The Silverlight project you are about to debug users RIA services. RIA services will fail unless the Silverlight project is hosted in and launched from the same web project that contains the RIA services&#8217; by Basmati</title>
		<link>http://www.whatsthepointofsharing.com/2009/09/28/if-you-get-the-the-silverlight-project-you-are-about-to-debug-users-ria-services-ria-services-will-fail-unless-the-silverlight-project-is-hosted-in-and-launched-from-the-same-web-project-that-conta/comment-page-1/#comment-4123</link>
		<dc:creator>Basmati</dc:creator>
		<pubDate>Mon, 18 Apr 2011 12:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.whatsthepointofsharing.com/?p=438#comment-4123</guid>
		<description>@ oussama comment tu as fais le deusieme Point 
set a start up page as well, in RIA this will be called “ApplicationName.aspx”
thx</description>
		<content:encoded><![CDATA[<p>@ oussama comment tu as fais le deusieme Point<br />
set a start up page as well, in RIA this will be called “ApplicationName.aspx”<br />
thx</p>
]]></content:encoded>
	</item>
</channel>
</rss>

