<?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 on: How Can I Change Local Passwords on A LOT of Workstations? (2 Years Ago Today)</title>
	<atom:link href="http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 06:08:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Babylon</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-9487</link>
		<dc:creator>Babylon</dc:creator>
		<pubDate>Tue, 27 Jan 2009 15:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-9487</guid>
		<description>Well, the resetting of the local admin password was done in the same method you did with the PSTools. 
As for adding the local admin, it was actually very simple:
1- Create an Active Directory Security Group, and add users who you want to be local admins on the workstations. 
2- the line to add that group to the local admin group is none but our beloved :
net localgroup Administrators /Add &quot;DOMAIN\group&quot; 
Now the trick here is to actually allow this command to run at user logon, and make it work. Given that users are not local admins on their own workstations, I had to embed this command in an exe, and run it as a higher privilege user. I use KIXstart to do that, and the reason I use a compiled EXE, is so that I can mask the username and password that is running this command (will likely be a domain admin account).  (I use Admin Script Editor (http://www.adminscripteditor.com) to package the Kix Script into an EXE. if you don&#039;t have that tool, perhaps, kix2exe can be user, I believe it allows pre-tokenizing and embedding alternate credentials. 

Now anytime a user logs on, that group will be added to the local admins group. 
p.s: you might want to run some logic to check for that group before adding it every time, just for efficiency purposes, and good scripting habits :)</description>
		<content:encoded><![CDATA[<p>Well, the resetting of the local admin password was done in the same method you did with the PSTools.<br />
As for adding the local admin, it was actually very simple:<br />
1- Create an Active Directory Security Group, and add users who you want to be local admins on the workstations.<br />
2- the line to add that group to the local admin group is none but our beloved :<br />
net localgroup Administrators /Add &#8220;DOMAIN\group&#8221;<br />
Now the trick here is to actually allow this command to run at user logon, and make it work. Given that users are not local admins on their own workstations, I had to embed this command in an exe, and run it as a higher privilege user. I use KIXstart to do that, and the reason I use a compiled EXE, is so that I can mask the username and password that is running this command (will likely be a domain admin account).  (I use Admin Script Editor (<a href="http://www.adminscripteditor.com" rel="nofollow">http://www.adminscripteditor.com</a>) to package the Kix Script into an EXE. if you don&#8217;t have that tool, perhaps, kix2exe can be user, I believe it allows pre-tokenizing and embedding alternate credentials. </p>
<p>Now anytime a user logs on, that group will be added to the local admins group.<br />
p.s: you might want to run some logic to check for that group before adding it every time, just for efficiency purposes, and good scripting habits :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl L. Gechlik &#124; AskTheAdmin.com</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-9486</link>
		<dc:creator>Karl L. Gechlik &#124; AskTheAdmin.com</dc:creator>
		<pubDate>Tue, 27 Jan 2009 14:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-9486</guid>
		<description>Very slick. Any interest in writing up a small article for our readers on how you did it - step by step?</description>
		<content:encoded><![CDATA[<p>Very slick. Any interest in writing up a small article for our readers on how you did it &#8211; step by step?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Babylon</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-9483</link>
		<dc:creator>Babylon</dc:creator>
		<pubDate>Tue, 27 Jan 2009 08:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-9483</guid>
		<description>At my district, I had the same issue happen, and had to change the local admin password, though I had an additional issue with technicians coming in and out of the district, knowing the local admin password, so I create an Active Directory group that I added to all workstations via the login script, then added my technicians to that group as they came and went away. This way, I&#039;m not forced to change the local admin password on each of my 5000 workstations, but rather just remove that user&#039;s account from the Active Directory group which happens to be in the Local Administrator&#039;s Group on all the workstations. my initial thought was to place the technician&#039;s names in the Administrors group on the workstations, but obviously, their membership to that group can&#039;t be easily controlled without tapping into group policy. I found AD security group is much easier.</description>
		<content:encoded><![CDATA[<p>At my district, I had the same issue happen, and had to change the local admin password, though I had an additional issue with technicians coming in and out of the district, knowing the local admin password, so I create an Active Directory group that I added to all workstations via the login script, then added my technicians to that group as they came and went away. This way, I&#8217;m not forced to change the local admin password on each of my 5000 workstations, but rather just remove that user&#8217;s account from the Active Directory group which happens to be in the Local Administrator&#8217;s Group on all the workstations. my initial thought was to place the technician&#8217;s names in the Administrors group on the workstations, but obviously, their membership to that group can&#8217;t be easily controlled without tapping into group policy. I found AD security group is much easier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Therealjoe</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-2269</link>
		<dc:creator>Therealjoe</dc:creator>
		<pubDate>Tue, 22 Jan 2008 00:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-2269</guid>
		<description>I still don&#039;t understand why people rename the administrator account. All it does is give IT one more thing to remember.&lt;br/&gt;&lt;br/&gt;A renamed local administrator account can be discovered in several ways, however the most damning is the SID. On Windows XP (and I believe Win2k) machines, the local administrator account will always have an SID ending in -500.&lt;br/&gt;&lt;br/&gt;Beyond that, a simple &quot;net localgroup administrators&quot; run from the command line will return all accounts with membership in the local administrators group.&lt;br/&gt;&lt;br/&gt;Most script kiddies will know this, and &lt;b&gt;&lt;i&gt;ALL&lt;/i&gt;&lt;/b&gt; hackers will. This is &quot;security through obscurity&quot; at best, and bad practice to boot (never paint over what you can fix).&lt;br/&gt;&lt;br/&gt;Scripts to remove all but the local administrator and Domain Administrators from the local administrators group, coupled with scripts that change the password of the local administrator accounts run on a regular basis, in conjunction with auditing is the proper way to handle this.&lt;br/&gt;&lt;br/&gt;Kudos to you for taking the initiative in correcting the security breach (I know several SysAdmins that would have just ignored it, or maybe changed the password on that one machine).</description>
		<content:encoded><![CDATA[<p>I still don&#8217;t understand why people rename the administrator account. All it does is give IT one more thing to remember.</p>
<p>A renamed local administrator account can be discovered in several ways, however the most damning is the SID. On Windows XP (and I believe Win2k) machines, the local administrator account will always have an SID ending in -500.</p>
<p>Beyond that, a simple &#8220;net localgroup administrators&#8221; run from the command line will return all accounts with membership in the local administrators group.</p>
<p>Most script kiddies will know this, and <b><i>ALL</i></b> hackers will. This is &#8220;security through obscurity&#8221; at best, and bad practice to boot (never paint over what you can fix).</p>
<p>Scripts to remove all but the local administrator and Domain Administrators from the local administrators group, coupled with scripts that change the password of the local administrator accounts run on a regular basis, in conjunction with auditing is the proper way to handle this.</p>
<p>Kudos to you for taking the initiative in correcting the security breach (I know several SysAdmins that would have just ignored it, or maybe changed the password on that one machine).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leon</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-2265</link>
		<dc:creator>Leon</dc:creator>
		<pubDate>Mon, 21 Jan 2008 18:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-2265</guid>
		<description>Oh boy. When will people get it through their thick heads to place more priority on passwords. I can&#039;t believe in this age of cybercrime people are still using their birthdates and names are passwords.</description>
		<content:encoded><![CDATA[<p>Oh boy. When will people get it through their thick heads to place more priority on passwords. I can&#8217;t believe in this age of cybercrime people are still using their birthdates and names are passwords.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unknown</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-5117</link>
		<dc:creator>Unknown</dc:creator>
		<pubDate>Fri, 14 Sep 2007 20:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-5117</guid>
		<description>The main problem I have with situation in the above post is how it can be tedious to keep whittling away at the list of computers. But when you need to run a script with privileges higher than the logged in user, this is usually the easiest way to do it. &lt;BR/&gt; &lt;BR/&gt;Another way I have been slowly testing is to run the script at start up, so it will run with higher privileges. &lt;BR/&gt; &lt;BR/&gt;Create a Group in Active Directory and add the appropriate computers to it. &lt;BR/&gt; &lt;BR/&gt;Then apply a Group Policy to that group which runs the script at start up. &lt;BR/&gt; &lt;BR/&gt;They key is to add commands at the end of the script which will remove the computer from that group once the script has finished. &lt;BR/&gt; &lt;BR/&gt;This way you don’t have to manually re-run your script all the time. And by looking at the members of the group it is easy to see which computers have not yet had the script applied to them.  </description>
		<content:encoded><![CDATA[<p>The main problem I have with situation in the above post is how it can be tedious to keep whittling away at the list of computers. But when you need to run a script with privileges higher than the logged in user, this is usually the easiest way to do it. </p>
<p>Another way I have been slowly testing is to run the script at start up, so it will run with higher privileges. </p>
<p>Create a Group in Active Directory and add the appropriate computers to it. </p>
<p>Then apply a Group Policy to that group which runs the script at start up. </p>
<p>They key is to add commands at the end of the script which will remove the computer from that group once the script has finished. </p>
<p>This way you don’t have to manually re-run your script all the time. And by looking at the members of the group it is easy to see which computers have not yet had the script applied to them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unknown</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-5118</link>
		<dc:creator>Unknown</dc:creator>
		<pubDate>Fri, 14 Sep 2007 20:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-5118</guid>
		<description>You can manage Local Computer Groups through Group Policies as well. These settings get applied at login so even if a user logged in as a local admin, and added their user account to the local admin group, as soon as they log off and back on, the changes would be lost and replaced with those in the policy.  </description>
		<content:encoded><![CDATA[<p>You can manage Local Computer Groups through Group Policies as well. These settings get applied at login so even if a user logged in as a local admin, and added their user account to the local admin group, as soon as they log off and back on, the changes would be lost and replaced with those in the policy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unknown</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-5119</link>
		<dc:creator>Unknown</dc:creator>
		<pubDate>Fri, 14 Sep 2007 20:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-5119</guid>
		<description>There are also scripts that can detect which accounts have local admin rights on the workstations.  That way you can see if any users have discovered the local admin password and made themselves admins.  </description>
		<content:encoded><![CDATA[<p>There are also scripts that can detect which accounts have local admin rights on the workstations.  That way you can see if any users have discovered the local admin password and made themselves admins.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El Di Pablo</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1307</link>
		<dc:creator>El Di Pablo</dc:creator>
		<pubDate>Fri, 14 Sep 2007 20:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1307</guid>
		<description>Wow...That didn&#039;t make sense. I meant the group policy about people adding them selves as local admins is already in effect.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;We will implement the group policy to run my script on the remaining 20.</description>
		<content:encoded><![CDATA[<p>Wow&#8230;That didn&#8217;t make sense. I meant the group policy about people adding them selves as local admins is already in effect.</p>
<p>We will implement the group policy to run my script on the remaining 20.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El Di Pablo</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1306</link>
		<dc:creator>El Di Pablo</dc:creator>
		<pubDate>Fri, 14 Sep 2007 20:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1306</guid>
		<description>@reggae, we already have a group policy in place that does that, but that is an excellent tip. &lt;br/&gt;&lt;br/&gt;As far as the Group policy idea, that&#039;s a great idea. We will do that for the remaining 20!</description>
		<content:encoded><![CDATA[<p>@reggae, we already have a group policy in place that does that, but that is an excellent tip. </p>
<p>As far as the Group policy idea, that&#8217;s a great idea. We will do that for the remaining 20!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unknown</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-5120</link>
		<dc:creator>Unknown</dc:creator>
		<pubDate>Fri, 14 Sep 2007 19:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-5120</guid>
		<description>@Regge and El Di Pablo - Both Fantastic Ideas! Keep Em coming  In! You can always email &lt;BR/&gt;&lt;BR/&gt;&lt;a HREF=&quot;Tips@AskTheAdmin.com&quot; REL=&quot;nofollow&quot; rel=&quot;nofollow&quot;&gt;Tips At AskTheAdmin Dot Com &lt;/A&gt;&lt;BR/&gt;&lt;BR/&gt;with any off topic stuff you think we would like!  </description>
		<content:encoded><![CDATA[<p>@Regge and El Di Pablo &#8211; Both Fantastic Ideas! Keep Em coming  In! You can always email </p>
<p><a HREF="Tips@AskTheAdmin.com" REL="nofollow" rel="nofollow">Tips At AskTheAdmin Dot Com </a></p>
<p>with any off topic stuff you think we would like!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: reggae</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1305</link>
		<dc:creator>reggae</dc:creator>
		<pubDate>Fri, 14 Sep 2007 19:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1305</guid>
		<description>dsquery computer &quot;OU=OUNAME,DC=domainame,DC=com&quot; -name %COMPUTERNAME% &#124; dsmod group &quot;CN=GROUPNAME,OU=OUNAME,DC=DOMAINNAME,DC=COM&quot; -rmmbr&lt;br/&gt;&lt;br/&gt;DSQUERY finds the computer in Active Directory and the results are piped to the DSMOD command which removes it from the group. You&#039;ll have to read the descriptions for both commands to be sure. &lt;br/&gt;&lt;br/&gt;I can&#039;t recall if these command are available by default, but, this should get you started.&lt;br/&gt;&lt;br/&gt;Let me know how you make out!!</description>
		<content:encoded><![CDATA[<p>dsquery computer &#8220;OU=OUNAME,DC=domainame,DC=com&#8221; -name %COMPUTERNAME% | dsmod group &#8220;CN=GROUPNAME,OU=OUNAME,DC=DOMAINNAME,DC=COM&#8221; -rmmbr</p>
<p>DSQUERY finds the computer in Active Directory and the results are piped to the DSMOD command which removes it from the group. You&#8217;ll have to read the descriptions for both commands to be sure. </p>
<p>I can&#8217;t recall if these command are available by default, but, this should get you started.</p>
<p>Let me know how you make out!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reggae</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-5121</link>
		<dc:creator>Reggae</dc:creator>
		<pubDate>Fri, 14 Sep 2007 19:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-5121</guid>
		<description>In this situation I think it might be beneficial to rename the local admin account as well. This can be done through a group policy.  </description>
		<content:encoded><![CDATA[<p>In this situation I think it might be beneficial to rename the local admin account as well. This can be done through a group policy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NinjaAdmin</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1304</link>
		<dc:creator>NinjaAdmin</dc:creator>
		<pubDate>Fri, 14 Sep 2007 18:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1304</guid>
		<description>Reggae I am going to try that this weekend. Do you have the syntax for adding and removing computers from ad groups or ou&#039;s?</description>
		<content:encoded><![CDATA[<p>Reggae I am going to try that this weekend. Do you have the syntax for adding and removing computers from ad groups or ou&#8217;s?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: reggae</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1303</link>
		<dc:creator>reggae</dc:creator>
		<pubDate>Fri, 14 Sep 2007 18:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1303</guid>
		<description>The main problem I have with situation in the above post is how it can be tedious to keep whittling away at the list of computers. But when you need to run a script with privileges higher than the logged in user, this is usually the easiest way to do it. &lt;br/&gt; &lt;br/&gt;Another way I have been slowly testing is to run the script at start up, so it will run with higher privileges. &lt;br/&gt; &lt;br/&gt;Create a Group in Active Directory and add the appropriate computers to it. &lt;br/&gt; &lt;br/&gt;Then apply a Group Policy to that group which runs the script at start up. &lt;br/&gt; &lt;br/&gt;They key is to add commands at the end of the script which will remove the computer from that group once the script has finished. &lt;br/&gt; &lt;br/&gt;This way you don’t have to manually re-run your script all the time. And by looking at the members of the group it is easy to see which computers have not yet had the script applied to them.</description>
		<content:encoded><![CDATA[<p>The main problem I have with situation in the above post is how it can be tedious to keep whittling away at the list of computers. But when you need to run a script with privileges higher than the logged in user, this is usually the easiest way to do it. </p>
<p>Another way I have been slowly testing is to run the script at start up, so it will run with higher privileges. </p>
<p>Create a Group in Active Directory and add the appropriate computers to it. </p>
<p>Then apply a Group Policy to that group which runs the script at start up. </p>
<p>They key is to add commands at the end of the script which will remove the computer from that group once the script has finished. </p>
<p>This way you don’t have to manually re-run your script all the time. And by looking at the members of the group it is easy to see which computers have not yet had the script applied to them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: reggae</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1302</link>
		<dc:creator>reggae</dc:creator>
		<pubDate>Fri, 14 Sep 2007 18:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1302</guid>
		<description>You can manage Local Computer Groups through Group Policies as well. These settings get applied at login so even if a user logged in as a local admin, and added their user account to the local admin group, as soon as they log off and back on, the changes would be lost and replaced with those in the policy.</description>
		<content:encoded><![CDATA[<p>You can manage Local Computer Groups through Group Policies as well. These settings get applied at login so even if a user logged in as a local admin, and added their user account to the local admin group, as soon as they log off and back on, the changes would be lost and replaced with those in the policy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PD</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1300</link>
		<dc:creator>PD</dc:creator>
		<pubDate>Fri, 14 Sep 2007 18:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1300</guid>
		<description>There are also scripts that can detect which accounts have local admin rights on the workstations.  That way you can see if any users have discovered the local admin password and made themselves admins.</description>
		<content:encoded><![CDATA[<p>There are also scripts that can detect which accounts have local admin rights on the workstations.  That way you can see if any users have discovered the local admin password and made themselves admins.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl L. Gechlik</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1295</link>
		<dc:creator>Karl L. Gechlik</dc:creator>
		<pubDate>Fri, 14 Sep 2007 17:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1295</guid>
		<description>@Regge and El Di Pablo - Both Fantastic Ideas! Keep Em coming  In! You can always email &lt;br/&gt;&lt;br/&gt;&lt;a HREF=&quot;Tips@AskTheAdmin.com&quot; REL=&quot;nofollow&quot;&gt;Tips At AskTheAdmin Dot Com &lt;/a&gt;&lt;br/&gt;&lt;br/&gt;with any off topic stuff you think we would like!</description>
		<content:encoded><![CDATA[<p>@Regge and El Di Pablo &#8211; Both Fantastic Ideas! Keep Em coming  In! You can always email </p>
<p><a HREF="Tips@AskTheAdmin.com" REL="nofollow">Tips At AskTheAdmin Dot Com </a></p>
<p>with any off topic stuff you think we would like!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El Di Pablo</title>
		<link>http://www.asktheadmin.com/2010/01/how-can-i-change-local-passwords-on-lot.html/comment-page-1#comment-1291</link>
		<dc:creator>El Di Pablo</dc:creator>
		<pubDate>Fri, 14 Sep 2007 16:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://ata.bansal-inc.com/?p=593#comment-1291</guid>
		<description>That&#039;s a good idea. In my network security class in school, my professor actually recommends that as well as creating another user called administrator with only guest permissions.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a good idea. In my network security class in school, my professor actually recommends that as well as creating another user called administrator with only guest permissions.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)

Served from: www.asktheadmin.com @ 2012-02-09 20:01:47 -->
