<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alexander's Blog &#187; Scripting</title>
	<atom:link href="http://blog.techgalaxy.net/archives/category/scripting/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.techgalaxy.net</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 17:45:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SharePoint 2010 Lockdown Mode (ViewFormPagesLockdown)</title>
		<link>http://blog.techgalaxy.net/archives/3301</link>
		<comments>http://blog.techgalaxy.net/archives/3301#comments</comments>
		<pubDate>Sat, 15 Oct 2011 17:03:18 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Security/Firewalls]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=3301</guid>
		<description><![CDATA[Microsoft Office SharePoint Server (MOSS) 2007 has a feature called ViewFormPagesLockdown, or some people simply refer to it as the SharePoint lockdown feature. Fortunately, the feature also works with SharePoint Server 2010. The lockdown feature is useful if you have a site collection that is configured for Anonymous access on a Publishing site and you want to lock [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Office SharePoint Server (MOSS) 2007 has a feature called ViewFormPagesLockdown, or some people simply refer to it as the SharePoint lockdown feature. Fortunately, the feature also works with SharePoint Server 2010.</p>
<p>The lockdown feature is useful if you have a site collection that is configured for Anonymous access on a Publishing site and you want to lock it down so Anonymous users don&#8217;t have access to the Forms page (e.g. <span style="text-decoration: underline;">http://ServerName/Pages/Forms/AllItems.aspx</span>). You might also be able to take advantage of this feature in another way. For example, if you ever run into an issue on a Publishing Portal configured for Anonymous access where users are unable to post comments (which are stored in a List) on a blog site then the lockdown feature can be disabled, which will result in allowing Anonymous users to post comments. Normally, people won&#8217;t have problem posting comments on a blog site unless it is a Publishing site, in which case they will get a prompt to enter user credentials. In such a scenario you can disable the lockdown feature.</p>
<p><span style="text-decoration: underline;">NOTE</span>: <em>By default, all publishing sites have the ViewFormPagesLockdown feature enabled.</em></p>
<p>You can either use stsadm.exe or PowerShell to enable this feature. I prefer to use PowerShell. If you want more detailed information on how to use stsadm.exe, Microsoft&#8217;s Tyler Butler has documented it <a href="http://blogs.msdn.com/b/ecm/archive/2007/05/12/anonymous-users-forms-pages-and-the-lockdown-feature.aspx">here</a> for MOSS 2007.</p>
<p>With PowerShell, you can easily enable to disable this feature. Here are the instructions.</p>
<ol>
<li>If you are unsure whether the lockdown is enabled, use the following PowerShell command to find out the answer.<br />
<strong>get-spfeature -site SiteCollectionURL</strong><br />
e.g. <span style="color: #008000;"><strong>get-spfeature -site http://www.winnetusergroup.com</strong></p>
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown01.png"><img class="alignnone size-medium wp-image-3321" title="Lockdown01" src="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown01-300x244.png" alt="" width="300" height="244" /></a></p>
<p></span></li>
<li>Look at all the features listed and see if ViewFormPagesLockdown is enabled. If you see it listed then it is enabled, otherwise ViewFormPagesLockdown is disabled.</li>
<li>The lockdown feature can be enabled or disabled. To enable it first run the following command.<br />
<strong>$lockdown = get-spfeature viewformpageslockdown</strong></li>
<li>Now execute the following command to enable it.<br />
<strong>enable-spfeature $lockdown -url SiteCollectionURL</strong><br />
<span style="color: #008000;"> <span style="color: #000000;">e.g. <strong><span style="color: #008000;">enable-spfeature $lockdown -url http://www.winnetusergroup.com</span></strong></span></span></p>
<p><strong><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown02.png"><img class="alignnone size-medium wp-image-3322" title="Lockdown02" src="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown02-300x227.png" alt="" width="300" height="227" /></a></strong><br />
<span style="text-decoration: underline;"><br />
NOTE</span>: To disable the lockdown feature replace the word enable with disable. For example:<br />
<strong>disable-spfeature $lockdown -url </strong><strong>SiteCollectionURL</strong></li>
<li>At this point you can verify that the feature is enabled by running the following command. Look for the ViewFormPagesLockdown entry in the list. If it exists, the lockdown feature is enabled.
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown03.png"><img class="alignnone size-medium wp-image-3323" title="Lockdown03" src="http://blog.techgalaxy.net/wp-content/uploads/2011/10/Lockdown03-126x300.png" alt="" width="126" height="300" /></a><br />
<strong><br />
</strong></li>
<li>According to Microsoft, if Anonymous Access is configured for the site then you need to first disable it and then re-enable it. To enable/disable Anonymous Access in SharePoint Server 2010 go to Site Actions, Site Permissions and click Anonymous Access icon on the ribbon.</li>
</ol>
<hr /><span style="font-size: xx-small; font-family: Verdana;">Copyright ©2011 Zubair Alexander. All rights reserved.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/3301/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Server is Not Necessary to Crawl PDF files in SharePoint Foundation 2010</title>
		<link>http://blog.techgalaxy.net/archives/3079</link>
		<comments>http://blog.techgalaxy.net/archives/3079#comments</comments>
		<pubDate>Mon, 13 Jun 2011 16:08:24 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=3079</guid>
		<description><![CDATA[A lot of blogs and articles on the Internet indicate that in order to crawl PDF documents in SharePoint Foundation 2010 you must install Microsoft Search Server. I want to clear this myth by stating that according to Microsoft, Search Server is not required to crawl PDF files in SharePoint Foundation 2010. The main problem [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of blogs and articles on the Internet indicate that in order to crawl PDF documents in SharePoint Foundation 2010 you must install Microsoft Search Server. I want to clear this myth by stating that according to Microsoft, Search Server is not required to crawl PDF files in SharePoint Foundation 2010.</p>
<p>The main problem that people run into is the fact that, unlike WSS 3.0, SharePoint Foundation 2010 does not have an interface to add file extensions for additional file types and iFilters. So how can you crawl additional file types, such as PDFs, in SharePoint Foundation 2010? One easy solution is to use the following VB script. The VB script is available in the <a href="http://support.microsoft.com/kb/2518465">KB article 2518465</a>. Here&#8217;s the step-by-step procedure.</p>
<ol>
<li>Copy the following content to notepad and save the file with a .vbs extension. For example, AddExtension.vbs.<em>Sub Usage</em><em>Sub Usage</em><br />
<em><br />
WScript.Echo &#8220;Usage:    AddExtension.vbs extension&#8221;<br />
WScript.Echo</em></p>
<p><em>end Sub</em></p>
<p><em>Sub Main</p>
<p>if WScript.Arguments.Count &lt; 1 then<br />
Usage<br />
wscript.Quit(1)<br />
end if</p>
<p>dim extension<br />
extension = wscript.arguments(0)</p>
<p>Set gadmin = WScript.CreateObject(&#8220;SPSearch4.GatherMgr.1&#8243;, &#8220;&#8221;)</p>
<p>For Each application in gadmin.GatherApplications<br />
For Each project in application.GatherProjects<br />
project.Gather.Extensions.Add(extension)<br />
Next<br />
Next</p>
<p>End Sub</p>
<p></em><em> </em><em></em><em>call Main</em></li>
<li>Copy the script to SharePoint Foundation Server and run it at the command prompt. This will add the PDF extension.<br />
&gt; WScript AddExtension.vbs pdf</li>
<li>Register the PDF iFilter by going to the following registry key.<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\14.0\Search\Setup\ContentIndexCommon\Filters\Extension\.</li>
<li>Right-click the Extensions folder and select New, key.</li>
<li>Enter .pdf for the key name.</li>
<li>In the right-hand pane dobule-click the Default value and enter the following for the Value data:<br />
{E8978DA6-047F-4E3D-9C78-CDBE46041603}.</li>
<li>Restart SPSearch4 by typing the following at the command prompt:<br />
net stop spsearch4<br />
net start spsearch4</li>
<li>Run crawl by typing the following at the command prompt:<br />
<strong> &gt;</strong>stsadm –o spsearch –action fullcrawlstart<br />
The stsadm.exe utility is located in the &#8220;14 Hive&#8221; folder at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN.</li>
<li>You should now be able to crawl PDF files in SharePoint Foundation 2010.</li>
</ol>
<p>Note that this method adds the PDF extension. You can use the same technique to add additional filters as necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/3079/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Start a Stopped Windows Service Automatically Using a Script</title>
		<link>http://blog.techgalaxy.net/archives/3004</link>
		<comments>http://blog.techgalaxy.net/archives/3004#comments</comments>
		<pubDate>Tue, 24 May 2011 04:29:22 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=3004</guid>
		<description><![CDATA[If you have worked with SharePoint Server 2010, you may have noticed that once in a while, especially after a reboot, the Forefront Identity Manager (FIMService) doesn&#8217;t start. Sometimes both the FIMService and the Forefront Identity Manager Synchronization Service (FIMSynchronizationService) don&#8217;t start. Without FIM services for all practical purposes your SharePoint is out of commission. [...]]]></description>
			<content:encoded><![CDATA[<p>If you have worked with SharePoint Server 2010, you may have noticed that once in a while, especially after a reboot, the Forefront Identity Manager (FIMService) doesn&#8217;t start. Sometimes both the FIMService and the Forefront Identity Manager Synchronization Service (FIMSynchronizationService) don&#8217;t start. Without FIM services for all practical purposes your SharePoint is out of commission.</p>
<p>To address this issue, I figured it would be great to write a batch file that will look for these services to see if they are running, if not, it will start these services and log the activity in a log file. If the service is running on multiple computers. this script will even take care of all the remote servers and start the service, assuming you have the proper administrative rights. I want to thank Jerry, a Microsoft MVP &#8211; Windows Expert &#8211; Consumer, for writing this script on forums.techguy.org. I modified his original script to fit my need.</p>
<p><span style="text-decoration: underline;">NOTE</span>: <em>To benefit from the script in this article you must have at least a fundamental knowledge of batch files and scripting. </em><em>You should also understand what environmental variables are and how to modify the system path.</em></p>
<p><strong>What Does the Script Do?</strong></p>
<p>I wrote this batch file that will check to see if the two FIM services have started. If not, it will start them automatically. Here&#8217;s exactly what the script does. It sets a log file, called <strong>log.txt</strong>. If the file exists, it will delete it so you only have the information from the last time you ran the script. Instead of using the &#8220;net start&#8221; command, which will work on the local computer, it uses <strong>psservice.exe</strong> which is part of Sysinternals Suite and can be downloaded from Microsoft&#8217;s Web site <a href="http://technet.microsoft.com/en-us/sysinternals/bb897542">here</a>. I wrote the batch file with SharePoint in mind but you can use this script for any service on any Windows computer. In a typical SharePoint environment, SharePoint is installed on more than one server. If you want to make sure that the service is running on multiple computers, simply add the names of the computers in the <strong>computers.txt</strong> file.</p>
<blockquote><p><strong>Best Practice</strong>: Add the folder where you have copied the Sysinternals tools, such as psservice.exe, to the system&#8217;s path. That way you can run the psservice.exe from any folder.</p></blockquote>
<p>I like to keep the batch file (FIM.bat), the log file (log.txt) and the server name file (computers.txt) in a folder called BATCH. I also like to add the BATCH folder to the path.</p>
<p>You should save the script as a .bat file. Make sure that it does not have a .txt extension. If you want, you can schedule this batch file to run every so often.  That way you can ensure that your services are always running. If a service has already started it will only take a second for it to  check and log the information. There is no overhead that you need to  worry about. You can check out my blog post on how to accomplish that. The link is posted at the end of this article.</p>
<p><strong>Determine the Name of the Service</strong></p>
<p>In the script you should replace the name of the service with your service name. To find out what service name you should use go to Services Console (services.msc) and double-click the service. On the General name look for Service name. For example, the name of the Forefront Identity Manager Service is FIMService, as shown below.</p>
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/05/fimservice.jpg"><img class="alignnone size-medium wp-image-3006" title="fimservice" src="http://blog.techgalaxy.net/wp-content/uploads/2011/05/fimservice-264x300.jpg" alt="" width="264" height="300" /></a></p>
<p>The script will check to see if the service is running, stopped, or paused and will document the result accordingly in the log file. I have set the script to check the status 10 times. You can adjust this setting if necessary.</p>
<p><strong>Running Same Script for Multiple Services</strong></p>
<p>To make things simple, I start both the services in the same script. There are other ways to handle this situation but I wanted my script to be pretty flexible and decided to implement what I wanted to accomplish using this method.</p>
<p>In the first section, I check for the FIMService and in the second section I essentially run the same script for FIMSynchronizationService with slight modification. For example, I don&#8217;t want the log file to be deleted after the FIMService is started because I also want to see the results for the second service so I commented out the line that deletes the log file in FIMSynchronizationService section.</p>
<p><strong>Dealing With Multiple Computers</strong></p>
<p>You can use this script to remotely start a service on remote computers. Simply add the name of the computers in the <strong>computers.txt</strong> file on separate files. If you have only one computer, just add its name to the computers.txt file. For example, if you have 3 servers named server1, server2, and server3, your computers.txt file will look like this.</p>
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/05/computers.jpg"><img class="alignnone size-medium wp-image-3009" title="computers" src="http://blog.techgalaxy.net/wp-content/uploads/2011/05/computers-300x152.jpg" alt="" width="300" height="152" /></a></p>
<p>Once the batch file is complete you can verify the status of the services in the Services Console and also check the log file for the activity that took place.</p>
<p><strong>The Log File</strong></p>
<p>The script also utilizes a <strong>log.txt </strong>file. Each time the batch file is executed it first deletes the old log file and then creates a new log.txt file and enters the necessary information in the file for you. If both the FIM services were stopped, your log file will display the following information.</p>
<p><a href="http://blog.techgalaxy.net/wp-content/uploads/2011/05/FIMlogfile.jpg"><img class="alignnone size-medium wp-image-3008" title="FIMlogfile" src="http://blog.techgalaxy.net/wp-content/uploads/2011/05/FIMlogfile-300x72.jpg" alt="" width="300" height="72" /></a></p>
<p><strong>Sample Script</strong></p>
<p>I named my script FIM.bat because I am using it to start two FIM services. Obviously, you can name it whatever you want but keep the name short.</p>
<blockquote><p><strong>Best Practice</strong>: Use the 8.3 file naming convention for your batch file. In other words, do not use more than 8 characters (excluding the extension) for the file name. For example, instead of naming it something like startsrvcs.bat, name it strtsrvc.bat to follow the 8.3 file naming convention.</p></blockquote>
<p>You can copy the following text to the clipboard and then paste it into notepad. Modify the script as mentioned above and then save it as a batch file using 8.3 naming convention. Make sure you test the script in a test environment first to make sure it does what you expect it to do.</p>
<blockquote><p>@echo off</p>
<p>cls</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:: Check the status for FIMService</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>Set LogFile=log.txt</p>
<p>If Exist %LogFile% Del %LogFile%</p>
<p>Set Errors=</p>
<p>For /f &#8220;tokens=1&#8243; %%i In (computers.txt) Do (</p>
<p>Call :process %%i</p>
<p>If %ErrFlag%==1 Set Errors=1</p>
<p>)</p>
<p>If Defined Errors Echo FIMService on some machines could not be started. Please check the log in %LogFile%.</p>
<p>Goto :STOP</p>
<p>Set LogFile=log.txt</p>
<p>If Exist %LogFile% Del %LogFile%</p>
<p>Set Errors=</p>
<p>For /f &#8220;tokens=1&#8243; %%i In (computers.txt) Do (</p>
<p>Call :process %%i</p>
<p>If %ErrFlag%==1 Set Errors=1</p>
<p>)</p>
<p>If Defined Errors Echo FIMService on some machines could not be started. Please check the log in %LogFile%.</p>
<p>Goto :STOP</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:: Subroutines</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:process</p>
<p>:: %1 is the Remote Machine Name</p>
<p>Set ErrFlag=0</p>
<p>Set SERVICE1=FIMService</p>
<p>:FIMService</p>
<p>Call :CheckState %1</p>
<p>If &#8220;%STATE%&#8221;==&#8221;RUNNING&#8221; (</p>
<p>Echo FIMService on %1 has already started.&gt;&gt; %LogFile%</p>
<p>Goto :EOF</p>
<p>)</p>
<p>If &#8220;%STATE%&#8221;==&#8221;STOPPED&#8221; (</p>
<p>Echo FIMService on %1 is in Stop mode. Attempting to start the service&#8230;.&gt;&gt; %LogFile%</p>
<p>psservice \\%1 Start %SERVICE1% 2&gt;Nul</p>
<p>Call :Wait %1</p>
<p>Goto :EOF</p>
<p>)</p>
<p>If &#8220;%STATE%&#8221;==&#8221;PAUSED&#8221; (</p>
<p>Echo FIMService on %1 is in Paused mode. Attempting to start the service&#8230;&gt;&gt; %LogFile%</p>
<p>psservice \\%1 cont %SERVICE1% 2&gt;Nul</p>
<p>Call :Wait %1 Re-</p>
<p>Goto :EOF</p>
<p>)</p>
<p>Echo FIMService on %1 is in an Unknown state. Please check the %1 system.&gt;&gt; %LogFile%</p>
<p>Set Errflag=1</p>
<p>Goto :EOF</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:CheckState</p>
<p>Set STATE=</p>
<p>For /F &#8220;Tokens=3 Delims=: &#8221; %%a In (&#8216;psservice 2^&gt;Nul \\%1 query %SERVICE1%^|Find /I &#8220;STATE&#8221;&#8216;) Do Set STATE=%%a</p>
<p>Goto :EOF</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:Wait</p>
<p>:: %1 is the Remote Machine Name</p>
<p>:: %2 is null if attempting to start, is Re- if restarting</p>
<p>Set loop=0</p>
<p>:Check</p>
<p>:: Will check state 10 times, adjust as needed.</p>
<p>If %loop%==10 Goto NoStart</p>
<p>:: Wait 1 second for service to (Re-)start (can also use sleep utility)</p>
<p>:: adjust -w as needed units are milliseconds</p>
<p>Ping 1.0.0.0 -n 1 -w 1000 &gt;Nul</p>
<p>Call :CheckState %1</p>
<p>If NOT &#8220;%STATE%&#8221;==&#8221;RUNNING&#8221; (set /a loop+=1) &amp; Goto Check</p>
<p>Echo FIMService on %1 has %2started successfully.&gt;&gt; %LogFile%</p>
<p>GOTO :EOF</p>
<p>:NoStart</p>
<p>Echo Unable to %2start FIMService on %1&gt;&gt; %LogFile%</p>
<p>Set ErrFlag=1</p>
<p>Goto :EOF</p>
<p>)</p>
<p>:STOP</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:: Check the status for FIMSynchronizationService</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>@echo off</p>
<p>Set LogFile=log.txt</p>
<p>:: If Exist %LogFile% Del %LogFile% (Log file should not be deleted after the FIMService is started)</p>
<p>Set Errors=</p>
<p>For /f &#8220;tokens=1&#8243; %%i In (computers.txt) Do (</p>
<p>Call :process %%i</p>
<p>If %ErrFlag%==1 Set Errors=1</p>
<p>)</p>
<p>If Defined Errors Echo FIMSynchronizationService on some machines could not be started. Please check the log in %LogFile%.</p>
<p>Goto :STOP</p>
<p>Set LogFile=log.txt</p>
<p>If Exist %LogFile% Del %LogFile%</p>
<p>Set Errors=</p>
<p>For /f &#8220;tokens=1&#8243; %%i In (computers.txt) Do (</p>
<p>Call :process %%i</p>
<p>If %ErrFlag%==1 Set Errors=1</p>
<p>)</p>
<p>If Defined Errors Echo FIMSynchronizationService on some machines could not be started. Please check the log in %LogFile%.</p>
<p>Goto :STOP</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:: Subroutines</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:process</p>
<p>:: %1 is the Remote Machine Name</p>
<p>Set ErrFlag=0</p>
<p>Set SERVICE1=FIMSynchronizationService</p>
<p>:FIMSynchronizationService</p>
<p>Call :CheckState %1</p>
<p>If &#8220;%STATE%&#8221;==&#8221;RUNNING&#8221; (</p>
<p>Echo FIMSynchronizationService on %1 has already started.&gt;&gt; %LogFile%</p>
<p>Goto :EOF</p>
<p>)</p>
<p>If &#8220;%STATE%&#8221;==&#8221;STOPPED&#8221; (</p>
<p>Echo FIMSynchronizationService on %1 is in Stop mode. Attempting to start the service&#8230;.&gt;&gt; %LogFile%</p>
<p>psservice \\%1 Start %SERVICE1% 2&gt;Nul</p>
<p>Call :Wait %1</p>
<p>Goto :EOF</p>
<p>)</p>
<p>If &#8220;%STATE%&#8221;==&#8221;PAUSED&#8221; (</p>
<p>Echo FIMSynchronizationService on %1 is in Paused mode. Attempting to start the service&#8230;&gt;&gt; %LogFile%</p>
<p>psservice \\%1 cont %SERVICE1% 2&gt;Nul</p>
<p>Call :Wait %1 Re-</p>
<p>Goto :EOF</p>
<p>)</p>
<p>Echo FIMSynchronizationService on %1 is in an Unknown state. Please check the %1 system.&gt;&gt; %LogFile%</p>
<p>Set Errflag=1</p>
<p>Goto :EOF</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:CheckState</p>
<p>Set STATE=</p>
<p>For /F &#8220;Tokens=3 Delims=: &#8221; %%a In (&#8216;psservice 2^&gt;Nul \\%1 query %SERVICE1%^|Find /I &#8220;STATE&#8221;&#8216;) Do Set STATE=%%a</p>
<p>Goto :EOF</p>
<p>::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::</p>
<p>:Wait</p>
<p>:: %1 is the Remote Machine Name</p>
<p>:: %2 is null if attempting to start, is Re- if restarting</p>
<p>Set loop=0</p>
<p>:Check</p>
<p>:: Will check state 10 times, adjust as needed.</p>
<p>If %loop%==10 Goto NoStart</p>
<p>:: Wait 1 second for service to (Re-)start (can also use sleep utility)</p>
<p>:: adjust -w as needed units are milliseconds</p>
<p>Ping 1.0.0.0 -n 1 -w 1000 &gt;Nul</p>
<p>Call :CheckState %1</p>
<p>If NOT &#8220;%STATE%&#8221;==&#8221;RUNNING&#8221; (set /a loop+=1) &amp; Goto Check</p>
<p>Echo FIMSynchronizationService on %1 has %2started successfully.&gt;&gt; %LogFile%</p>
<p>GOTO :EOF</p>
<p>:NoStart</p>
<p>Echo Unable to %2start FIMSynchronizationService on %1&gt;&gt; %LogFile%</p>
<p>Set ErrFlag=1</p>
<p>Goto :EOF</p>
<p>)</p>
<p>:STOP</p></blockquote>
<p>By the way, I have tested this batch file numerous times and it worked perfectly every single time. If you decide to schedule this batch file, check out my article <a href="http://blog.techgalaxy.net/archives/1377">How to run a batch file as a task in Windows Server 2008</a>.</p>
<hr /><span style="font-size: xx-small; font-family: Verdana;">Copyright ©2011 Zubair Alexander. All rights reserved.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/3004/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Active Directory Cmdlets in Windows PowerShell</title>
		<link>http://blog.techgalaxy.net/archives/2728</link>
		<comments>http://blog.techgalaxy.net/archives/2728#comments</comments>
		<pubDate>Sun, 05 Dec 2010 16:02:58 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Tools/Utils]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=2728</guid>
		<description><![CDATA[Here’s a list of all the Active Directory cmdlets in Windows PowerShell that are available in Windows Server 2008 R2 with a link to Microsoft TechNet for each cmdlet for more details. Add-ADComputerServiceAccount Adds one or more service accounts to an Active Directory computer. Add-ADDomainControllerPasswordReplicationPolicy Adds users, computers, and groups to the Allowed List or the Denied List [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s a list of all the Active Directory cmdlets in Windows PowerShell that are available in Windows Server 2008 R2 with a link to Microsoft TechNet for each cmdlet for more details.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617240.aspx">Add-ADComputerServiceAccount</a></p>
<p>Adds one or more service accounts to an Active Directory computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617188.aspx">Add-ADDomainControllerPasswordReplicationPolicy</a></p>
<p>Adds users, computers, and groups to the Allowed List or the Denied List of the read-only domain controller (RODC) Password Replication Policy (PRP).</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617226.aspx">Add-ADFineGrainedPasswordPolicySubject</a></p>
<p>Applies a fine-grained password policy to one more users and groups.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617210.aspx">Add-ADGroupMember</a></p>
<p>Adds one or more members to an Active Directory group.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617203.aspx">Add-ADPrincipalGroupMembership</a></p>
<p>Adds a member to one or more Active Directory groups.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617213.aspx">Clear-ADAccountExpiration</a></p>
<p>Clears the expiration date for an Active Directory account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617197.aspx">Disable-ADAccount</a></p>
<p>Disables an Active Directory account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617205.aspx">Disable-ADOptionalFeature</a></p>
<p>Disables an Active Directory optional feature.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617200.aspx">Enable-ADAccount</a></p>
<p>Enables an Active Directory account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617209.aspx">Enable-ADOptionalFeature</a></p>
<p>Enables an Active Directory optional feature.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617214.aspx">Get-ADAccountAuthorizationGroup</a></p>
<p>Gets the Active Directory security groups that contain an account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617227.aspx">Get-ADAccountResultantPasswordReplicationPolicy</a></p>
<p>Gets the resultant password replication policy for an Active Directory account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617192.aspx">Get-ADComputer</a></p>
<p>Gets one or more Active Directory computers.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617189.aspx">Get-ADComputerServiceAccount</a></p>
<p>Gets the service accounts that are hosted by an Active Directory computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617244.aspx">Get-ADDefaultDomainPasswordPolicy</a></p>
<p>Gets the default password policy for an Active Directory domain.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617224.aspx">Get-ADDomain</a></p>
<p>Gets an Active Directory domain.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617217.aspx">Get-ADDomainController</a></p>
<p>Gets one or more Active Directory domain controllers, based on discoverable services criteria, search parameters, or by providing a domain controller identifier, such as the NetBIOS name.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617207.aspx">Get-ADDomainControllerPasswordReplicationPolicy</a></p>
<p>Gets the members of the Allowed List or the Denied List of the RODC PRP.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617194.aspx">Get-ADDomainControllerPasswordReplicationPolicyUsage</a></p>
<p>Gets the resultant password policy of the specified ADAccount on the specified RODC.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617231.aspx">Get-ADFineGrainedPasswordPolicy</a></p>
<p>Gets one or more Active Directory fine-grained password policies.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617232.aspx">Get-ADFineGrainedPasswordPolicySubject</a></p>
<p>Gets the users and groups to which a fine-grained password policy is applied.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617216.aspx">Get-ADForest</a></p>
<p>Gets an Active Directory forest.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617196.aspx">Get-ADGroup</a></p>
<p>Gets one or more Active Directory groups.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617193.aspx">Get-ADGroupMember</a></p>
<p>Gets the members of an Active Directory group.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617198.aspx">Get-ADObject</a></p>
<p>Gets one or more Active Directory objects.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617218.aspx">Get-ADOptionalFeature</a></p>
<p>Gets one or more Active Directory optional features.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617236.aspx">Get-ADOrganizationalUnit</a></p>
<p>Gets one or more Active Directory OUs.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617259.aspx">Get-ADPrincipalGroupMembership</a></p>
<p>Gets the Active Directory groups that have a specified user, computer, or group.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617246.aspx">Get-ADRootDSE</a></p>
<p>Gets the root of a domain controller information tree.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617204.aspx">Get-ADServiceAccount</a></p>
<p>Gets one or more Active Directory service accounts.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617241.aspx">Get-ADUser</a></p>
<p>Gets one or more Active Directory users.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617255.aspx">Get-ADUserResultantPasswordPolicy</a></p>
<p>Gets the resultant password policy for a user.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617223.aspx">Install-ADServiceAccount</a></p>
<p>Installs an Active Directory service account on a computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617235.aspx">Move-ADDirectoryServer</a></p>
<p>Moves a domain controller in AD DS to a new site.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617229.aspx">Move-ADDirectoryServerOperationasterRole</a></p>
<p>Moves operation master (also known as flexible single master operations or FSMO) roles to an Active Directory domain controller.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617248.aspx">Move-ADObject</a></p>
<p>Moves an Active Directory object or a container of objects to a different container or domain.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617245.aspx">New-ADComputer</a></p>
<p>Creates a new Active Director computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617238.aspx">New-ADFineGrainedPasswordPolicy</a></p>
<p>Creates a new Active Directory fine-grained password policy.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617258.aspx">New-ADGroup</a></p>
<p>Creates an Active Directory group.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617260.aspx">New-ADObject</a></p>
<p>Creates an Active Directory objet.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617237.aspx">New-ADOrganizationalUnit</a></p>
<p>Creates a new Active Directory OU.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617211.aspx">New-ADServiceAccount</a></p>
<p>Creates a new Active Directory service account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617253.aspx">New-ADUser</a></p>
<p>Creates a new Active Directory user.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617250.aspx">Remove-ADComputer</a></p>
<p>Removes an Active Directory computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617257.aspx">Remove-ADComputerServiceAccount</a></p>
<p>Removes one or more service accounts from a computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617264.aspx">Remove-ADDomainControllerPasswordReplicationPolicy</a></p>
<p>Removes users, computers, and groups from the Allowed List or the Denied List of the RODC PRP.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617233.aspx">Remove-ADFineGrainedPasswordPolicy</a></p>
<p>Removes an Active Directory fine-grained password policy.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617187.aspx">Remove-ADFineGrainedPasswordPolicySubject</a></p>
<p>Removes one or more users from a fine-grained password policy.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617228.aspx">Remove-ADGroup</a></p>
<p>Removes an Active Directory group.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617242.aspx">Remove-ADGroupMember</a></p>
<p>Removes one or more members from an Active Directory group.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617219.aspx">Remove-ADObject</a></p>
<p>Removes an Active Directory object.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617239.aspx">Remove-ADOrganizationalUnit</a></p>
<p>Removes an Active Directory OU.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617243.aspx">Remove-ADPrincipalGroupMembership</a></p>
<p>Removes a member from one or more Active Directory groups.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617190.aspx">Remove-ADServiceAccount</a></p>
<p>Removes an Active Directory service account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617206.aspx">Remove-ADUser</a></p>
<p>Removes an Active Directory user.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617225.aspx">Rename-ADObject</a></p>
<p>Changes the name of an Active Directory object.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617201.aspx">Reset-ADServiceAccountPassword</a></p>
<p>Resets the service account password for a computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617262.aspx">Restore-ADObject</a></p>
<p>Restores an Active Directory object.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617247.aspx">Search-ADAccount</a></p>
<p>Gets Active Directory user, computer, and service accounts.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617249.aspx">Set-ADAccountControl</a></p>
<p>Modifies user account control (UAC) values for an Active Directory account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617256.aspx">Set-ADAccountExpiration</a></p>
<p>Sets the expiration date for an Active Directory account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617261.aspx">Set-ADAccountPassword</a></p>
<p>Modifies the password of an Active Directory account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617263.aspx">Set-ADComputer</a></p>
<p>Modifies an Active Directory computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617251.aspx">Set-ADDefaultDomainPasswordPolicy</a></p>
<p>Modifies the default password policy for an Active Directory domain.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617212.aspx">Set-ADDomain</a></p>
<p>Modifies an Active Directory domain.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617230.aspx">Set-ADDomainMode</a></p>
<p>Sets the domain functional level for an Active Directory domain.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617191.aspx">Set-ADFineGrainedPasswordPolicy</a></p>
<p>Modifies an Active Directory fine-grained password policy.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617221.aspx">Set-ADForest</a></p>
<p>Modifies an Active Directory forest.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617220.aspx">Set-ADForestMode</a></p>
<p>Sets the forest mode for an Active Directory forest.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617199.aspx">Set-ADGroup</a></p>
<p>Modifies an Active Directory group.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617254.aspx">Set-ADObject</a></p>
<p>Modifies an Active Directory object.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617208.aspx">Set-ADOrganizationalUnit</a></p>
<p>Modifies an Active Directory OU.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617252.aspx">Set-ADServiceAccount</a></p>
<p>Modifies an Active Directory service account.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617215.aspx">Set-ADUser</a></p>
<p>Modifies an Active Directory user.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617202.aspx">Uninstall-ADServiceAccount</a></p>
<p>Uninstalls an Active Directory service account from a computer.</p>
<p><a href="http://technet.microsoft.com/en-us/library/ee617234.aspx">Unlock-ADAccount</a></p>
<p>Unlocks an Active Directory account.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/2728/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows PowerShell for SharePoint Server 2010 Reference</title>
		<link>http://blog.techgalaxy.net/archives/2572</link>
		<comments>http://blog.techgalaxy.net/archives/2572#comments</comments>
		<pubDate>Mon, 11 Oct 2010 04:25:44 +0000</pubDate>
		<dc:creator>Zubair Alexander</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://blog.techgalaxy.net/?p=2572</guid>
		<description><![CDATA[The following articles list cmdlets for Microsoft SharePoint Server 2010 by functionality: Access Services cmdlets (SharePoint Server 2010) Backup and recovery cmdlets (SharePoint Server 2010) Business Connectivity Services cmdlets (SharePoint Server 2010) Database cmdlets (SharePoint Server 2010) Enterprise content management cmdlets (SharePoint Server 2010) Excel Services cmdlets (SharePoint Server 2010) Farm cmdlets (SharePoint Server 2010) [...]]]></description>
			<content:encoded><![CDATA[<p>The following articles list cmdlets for Microsoft SharePoint Server 2010 by functionality:</p>
<ul>
<li> <a id="ctl00_MTCS_main_ctl01" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl01',this);" href="http://technet.microsoft.com/en-us/library/ee906548.aspx">Access Services cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl02" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl02',this);" href="http://technet.microsoft.com/en-us/library/ee890109.aspx">Backup and recovery cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl03" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl03',this);" href="http://technet.microsoft.com/en-us/library/ff793361.aspx">Business Connectivity Services cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl04" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl04',this);" href="http://technet.microsoft.com/en-us/library/ee906544.aspx">Database cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl05" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl05',this);" href="http://technet.microsoft.com/en-us/library/ee906562.aspx">Enterprise content management cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl06" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl06',this);" href="http://technet.microsoft.com/en-us/library/ee906545.aspx">Excel Services cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl07" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl07',this);" href="http://technet.microsoft.com/en-us/library/ff793362.aspx">Farm cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl08" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl08',this);" href="http://technet.microsoft.com/en-us/library/ee906565.aspx">Features and solutions cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl09" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl09',this);" href="http://technet.microsoft.com/en-us/library/ee906543.aspx">General cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl10" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl10',this);" href="http://technet.microsoft.com/en-us/library/ee906557.aspx">Import and export cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl11" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl11',this);" href="http://technet.microsoft.com/en-us/library/ee906553.aspx">InfoPath Services cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl12" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl12',this);" href="http://technet.microsoft.com/en-us/library/ee906564.aspx">Logging and events cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl13" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl13',this);" href="http://technet.microsoft.com/en-us/library/ee890112.aspx">Performance cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl14" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl14',this);" href="http://technet.microsoft.com/en-us/library/ee906547.aspx">PerformancePoint Services cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl15" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl15',this);" href="http://technet.microsoft.com/en-us/library/ee906563.aspx">Search cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl16" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl16',this);" href="http://technet.microsoft.com/en-us/library/ee906549.aspx">Secure Store service cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl17" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl17',this);" href="http://technet.microsoft.com/en-us/library/ee890110.aspx">Security cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl18" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl18',this);" href="http://technet.microsoft.com/en-us/library/ee906561.aspx">Service application cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl19" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl19',this);" href="http://technet.microsoft.com/en-us/library/ee890834.aspx">SharePoint Foundation 2010 Search cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl20" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl20',this);" href="http://technet.microsoft.com/en-us/library/ff793359.aspx">Site collection cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl21" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl21',this);" href="http://technet.microsoft.com/en-us/library/ee890106.aspx">Site management cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl22" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl22',this);" href="http://technet.microsoft.com/en-us/library/ee890113.aspx">State service and session state cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl23" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl23',this);" href="http://technet.microsoft.com/en-us/library/ee906546.aspx">Timer jobs cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl24" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl24',this);" href="http://technet.microsoft.com/en-us/library/ee906560.aspx">Upgrade and migration cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl25" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl25',this);" href="http://technet.microsoft.com/en-us/library/ee906542.aspx">User Profile service cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl26" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl26',this);" href="http://technet.microsoft.com/en-us/library/ee890107.aspx">Visio Graphics Services cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl27" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl27',this);" href="http://technet.microsoft.com/en-us/library/ee906556.aspx">Web Analytics cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl28" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl28',this);" href="http://technet.microsoft.com/en-us/library/ff793360.aspx">Web application cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl29" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl29',this);" href="http://technet.microsoft.com/en-us/library/ee906554.aspx">Word Services cmdlets (SharePoint Server 2010)</a></li>
<li> <a id="ctl00_MTCS_main_ctl30" onclick="javascript:Track('ctl00_MTCS_main_ctl00|ctl00_MTCS_main_ctl30',this);" href="http://technet.microsoft.com/en-us/library/ee906558.aspx">Workflow management cmdlets (SharePoint Server 2010)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.techgalaxy.net/archives/2572/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

