<?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>P for Positive &#187; Windows Server</title>
	<atom:link href="http://www.pforpositive.com/category/windows-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pforpositive.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 15 Jun 2010 03:53:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Remotely Get Members of Local Administrators Group</title>
		<link>http://www.pforpositive.com/2008/11/how-to-remotely-get-members-of-local-administrators-group/</link>
		<comments>http://www.pforpositive.com/2008/11/how-to-remotely-get-members-of-local-administrators-group/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 03:20:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[administrators]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[local administrators]]></category>
		<category><![CDATA[psexec]]></category>
		<category><![CDATA[psexec batch file]]></category>
		<category><![CDATA[psexec command]]></category>
		<category><![CDATA[psexec commands]]></category>
		<category><![CDATA[pstools]]></category>
		<category><![CDATA[pstools psexec]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[using psexec]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[windows xp administrator]]></category>

		<guid isPermaLink="false">http://pforpositive.wordpress.com/?p=13</guid>
		<description><![CDATA[There are a several programs and scripts to get the members of local administrators group on a Windowx XP or Win2K Pro computers. Recently I wrote a batch file based on the command
psexec -n 5 \\&#60;computer_name&#62; net localgroup administrators
&#8216;psexec&#8217; is a  command line utility that allows you to run processes on remote computers. The utility [...]]]></description>
			<content:encoded><![CDATA[<p>There are a several programs and scripts to get the members of local administrators group on a Windowx XP or Win2K Pro computers. Recently I wrote a batch file based on the command</p>
<p>psexec -n 5 <a href="//\\&lt;computer_name">\\&lt;computer_name</a>&gt; net localgroup administrators</p>
<p>&#8216;psexec&#8217; is a  command line utility that allows you to run processes on remote computers. The utility is part of command line toolkit provided by Microsoft and can be downloaded from <a href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx">http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx</a>.</p>
<p>A variation to the above command is</p>
<p>psexec @filename.txt net localgroup administrators</p>
<p>This commands takes a file with a list of computer names as an input. Hopefully in another post I will write the reason why I chose to write a batch file with computer name instead of using a file with computer names.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pforpositive.com/2008/11/how-to-remotely-get-members-of-local-administrators-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to exports memebers of Active Directory group</title>
		<link>http://www.pforpositive.com/2008/10/how-to-exports-memebers-of-active-directory-group/</link>
		<comments>http://www.pforpositive.com/2008/10/how-to-exports-memebers-of-active-directory-group/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 20:43:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[dsget]]></category>
		<category><![CDATA[dsquery]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[list group]]></category>
		<category><![CDATA[list members]]></category>
		<category><![CDATA[members]]></category>

		<guid isPermaLink="false">http://pforpositive.wordpress.com/?p=3</guid>
		<description><![CDATA[There are a lot of scripts floating around to export members of AD group. Following is one way of displaying first and last names via command line
dsquery group -name &#60;name_of_the_group&#62; &#124; dsget group -members &#124; dsget user -fn -ln
To learn more about dsquery and dsget, please see http://technet.microsoft.com/en-us/library/cc732952.aspx, and http://technet.microsoft.com/en-us/library/cc755162.aspx.
]]></description>
			<content:encoded><![CDATA[<p>There are a lot of scripts floating around to export members of AD group. Following is one way of displaying first and last names via command line</p>
<p>dsquery group -name &lt;name_of_the_group&gt; | dsget group -members | dsget user -fn -ln</p>
<p>To learn more about dsquery and dsget, please see <a href="http://technet.microsoft.com/en-us/library/cc732952.aspx">http://technet.microsoft.com/en-us/library/cc732952.aspx</a>, and <a href="http://technet.microsoft.com/en-us/library/cc755162.aspx">http://technet.microsoft.com/en-us/library/cc755162.aspx</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pforpositive.com/2008/10/how-to-exports-memebers-of-active-directory-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating DNS Entries while Minimizing the Downtime</title>
		<link>http://www.pforpositive.com/2008/04/updating-dns-entries-while-minimizing-the-downtime/</link>
		<comments>http://www.pforpositive.com/2008/04/updating-dns-entries-while-minimizing-the-downtime/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 22:36:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://www.pforpositive.com/?p=77</guid>
		<description><![CDATA[If you ever need to update the DNS records for your servers, make sure that you set the TTL value to few seconds first. This will minimize your downtime to a few seconds.
TTL (or time to live) is the amount of time for which other computers or DNS servers will cache your IP address. Suppose [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever need to update the DNS records for your servers, make sure that you set the TTL value to few seconds first. This will minimize your downtime to a few seconds.</p>
<p>TTL (or time to live) is the amount of time for which other computers or DNS servers will cache your IP address. Suppose the TTL for your IP address is 12 hours. Now suppose you change your IP address at 12PM. The DNS servers and computers that cached your IP address at 11:59AM will keep trying to go to the old IP address until 11:59PM!! Following these steps will ensure minimum downtime</p>
<p>1. Note the current TTL. Suppose it is &#8216;x&#8217;</p>
<p>2. Decrease the amount of TTL. Suppose the new value is &#8216;y&#8217;</p>
<p>3. Wait for &#8216;x&#8217; amount of time before making the change</p>
<p>4. Change the IP address. The maximum downtime will be &#8216;y&#8217;</p>
<p>So if the TTL is 12 hours and you change it to 1 minute, wait for 12 hours before changing the IP address. The downtime will be 1 minute.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pforpositive.com/2008/04/updating-dns-entries-while-minimizing-the-downtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
