<?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>Green ComplexNetwork Admin | Green Complex</title>
	<atom:link href="http://green.cx/category/network-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://green.cx</link>
	<description></description>
	<lastBuildDate>Thu, 03 May 2012 20:08:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tiny USB business card</title>
		<link>http://green.cx/network-administration/tiny-usb-business-card/</link>
		<comments>http://green.cx/network-administration/tiny-usb-business-card/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 20:24:14 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[business-cards]]></category>
		<category><![CDATA[instructions]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1945</guid>
		<description><![CDATA[<br/> Shared by Jason  Frank Zhao put together a USB business card . It’s even got the instructions printed right on the silk screen of the PCB explaining how it should be used. ]]></description>
			<content:encoded><![CDATA[<br/><p><img class="alignleft" title="usbbusinesscard_1" src="http://green.cx/files/2010/11/a8aed72942092489.jpg.jpg" alt="" width="470" height="353" /></p>
<p>Frank Zhao put together <a title='Original Link: http://frank.circleofcurrent.com/cache/usbbusinesscard_details.htm'  href="http://green.cx/?IeRuraz9">a USB business card</a>. It’s even got the instructions printed right on the silk screen of the PCB explaining how it should be used. It&#8217;s based on an AVR ATtiny85 microcontroller that runs the V-USB package which handles USB identification and communication protocols. The rest of the hardware is pretty standard, the <a id="aptureLink_2lhX3AcPdI" title='Original Link: http://en.wikipedia.org/wiki/Microcontroller'  href="http://green.cx/?X3Vc_qcu">uC</a> draws power from the 5V USB rail, with a couple of 3.6V Zener diodes to drop the two data lines down to the proper level.</p>
<p>Once plugged in it waits until it detects three caps lock keypresses in a row, then spews a string of its own keypresses that type out Frank&#8217;s contact information in a text editor window (video after the break). It’s not as reusable as the mass storage business card because Frank didn’t breakout the pins on controller. Here arlayoe some more <a title='Original Link: http://hackaday.com/2008/12/01/gears-embeded-in-busines-cards/'  href="http://green.cx/?F9UkiVS1">business cards that make you stand out</a>.</p>
<p><span> </span></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/network-administration/tiny-usb-business-card/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Get the logged on username in .VBS</title>
		<link>http://green.cx/guides/how-to-check-who-is-logged-on-to-a-computer-on-your-domain/</link>
		<comments>http://green.cx/guides/how-to-check-who-is-logged-on-to-a-computer-on-your-domain/#comments</comments>
		<pubDate>Tue, 18 May 2010 19:10:57 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Network Admin]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1430</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/>This uses a simple vbs script I made (Using a function to get user input from Rob van der Woude) to get your input for a computer name or ip address on your Windows Domain, and returns the currently logged in user. This makes a nice icon you can click anytime, and with a single [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/><p>This uses a simple vbs script I made (Using a function to get user input from <a title='Original Link: http://www.robvanderwoude.com'  href="http://green.cx/?wvJ4j95J" target="_blank">Rob van der Woude</a>) to get your input for a computer name or ip address on your Windows Domain, and returns the currently logged in user.</p>
<p><span id="more-1430"></span></p>
<p>This makes a nice icon you can click anytime, and with a single line type (or paste) the computer&#8217;s address and voila&#8217; you get a nice alert box with the currently logged in username! Just copy paste the following script into a new blank txt file, save and rename to WhosloggedIn.vbs It&#8217;s as easy as pie! The script leverages the WMI to ask for username. Many enterprise managment applications have similar features, but are slower to pull up. This is for those quick access trouble calls where you need it quick, and dirty! <img src='http://green.cx/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Script could be used as a base for expanding into collecting all the currently logged in users across the domain, and what computer they are logged in to.</p>
<p style="text-align: center"><a href="http://green.cx/files/2010/05/PC-Name-to-Username.png"><img class="size-full wp-image-1432 alignnone" title="PC Name to Username" src="http://green.cx/files/2010/05/PC-Name-to-Username.png" alt="" width="362" height="152" /></a></p>
<pre>
<div id="_mcePaste">'Get remote logged in user vbs script written by Jason Green http://green.cx
strComputer = UserInput( "Enter Computer Name:" )
Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\" &amp; strComputer &amp; "rootcimv2")
Set colComputer = objWMIService.ExecQuery ("Select * from Win32_ComputerSystem")
For Each objComputer in colComputer
    Wscript.Echo objComputer.UserName
Next
Function UserInput( myPrompt )
' This function Written by Rob van der Woude http://www.robvanderwoude.com
    ' Check if the script runs in CSCRIPT.EXE
    If UCase( Right( WScript.FullName, 12 ) ) = "CSCRIPT.EXE" Then
        ' If so, use StdIn and StdOut
        WScript.StdOut.Write myPrompt &amp; " "
        UserInput = WScript.StdIn.ReadLine
    Else
        ' If not, use InputBox( )
        UserInput = InputBox( myPrompt )
    End If
End Function</div>
</pre>
<p>*Please not that this requires administrative authority on the client machines. Which in a domain, shouldn&#8217;t be a problem.</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/guides/how-to-check-who-is-logged-on-to-a-computer-on-your-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Reset Local Group Policy</title>
		<link>http://green.cx/guides/reset-local-group-policy/</link>
		<comments>http://green.cx/guides/reset-local-group-policy/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 19:57:59 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://green.cx/?p=1094</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/>Sometimes viruses or people use Group Policy against us and we need to reset it back to the default. It can control access to a number of things in windows from logon scripts to access to the screensaver settings. Resetting it is actually pretty simple, which is why you shouldn&#8217;t rely on it solely to guard [...]]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/52.original.png" width="659" height="87" alt="" title="Guides" /><br/><p>Sometimes viruses or people use <a id="aptureLink_ImzGFhtiC5" title='Original Link: http://en.wikipedia.org/wiki/Group%20Policy' rel='nofollow' href="http://green.cx/?qrtoecXg">Group Policy</a> against us and we need to reset it back to the default. It can control access to a number of things in windows from logon scripts to access to the screensaver settings. Resetting it is actually pretty simple, which is why you shouldn&#8217;t rely on it solely to guard your network.<span id="more-1094"></span></p>
<p><div id="attachment_1095" class="wp-caption alignleft" style="width: 260px"><a href="http://green.cx/wp-content/uploads/2010/03/image005.gif"><img class="size-medium wp-image-1095 " title="Group Policy (GPO)" src="http://green.cx/wp-content/uploads/2010/03/image005-250x130.gif" alt="" width="250" height="130" /></a><p class="wp-caption-text">Group Policy</p></div>To reset the local group policy on a machine back to default issue this magical command and after a reboot the GPO settings will be set back to their defaults (enter this all on one line):</p>
<p><strong>secedit /configure /db reset /cfg &#8220;c:windowssecuritytemplatessetup security.inf&#8221; /overwrite</strong></p>
<p><strong><br />
</strong></p>
<p>Also, you should delete the registry.pol file if it exists:</p>
<p><strong>del c:windowssystem32grouppolicymachineregistry.pol</strong></p>
<p>Don&#8217;t forget to reboot! All the group policies should now be reset to default.</p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/guides/reset-local-group-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example E-Mail Security Policy</title>
		<link>http://green.cx/network-administration/email-security-policy/</link>
		<comments>http://green.cx/network-administration/email-security-policy/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 16:59:30 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[policy]]></category>

		<guid isPermaLink="false">http://green.cx/?p=275</guid>
		<description><![CDATA[<br/>In your company, communication is the circulatory system that keeps business moving. Next in line after telephone, E-Mail is the second easiest way to reach someone online. Sending documents, personal information, jokes and virsus are the most common types for information to be sent through e-mail. There are some serious security considerations that should be known to [...]]]></description>
			<content:encoded><![CDATA[<br/><p>In your company, communication is the circulatory system that keeps business moving. Next in line after telephone, E-Mail is the second easiest way to reach someone online. Sending documents, personal information, jokes and virsus are the most common types for information to be sent through e-mail.</p>
<p><img class="size-thumbnail wp-image-276" title="iconsetc-gmail-logo-square2.png" src="http://green.cx/wp-content/uploads/2009/08/iconsetc-gmail-logo-square2.png-150x150.jpg" alt="E-Mail Security" width="150" height="150" /></p>
<p>There are some serious security considerations that should be known to everyone who has any responsibility for their e-mail system and it&#8217;s users. E-Mail is NOT secure, <span style="text-decoration: underline;">EVER</span>. I say this because unless your using it in house only, you never know where it&#8217;s going to go when you send it.</p>
<p><span id="more-275"></span></p>
<p>If you make a typo, someone else may get the e-mail. If, for example, you send and e-mail to someone@here.com but you sent it to someone@there.com well, there may not be a someone@there.com but the domain owner of there.com may be using a catch-all to read mail sent to any address @there.com and knows that people often mistake here.com for there.com. By doing this the owner of there.com is skimming any information that may be intended for here.com and may also be selling any e-mail address he finds.</p>
<p><a id="aptureLink_8Ctikik8sd" title='Original Link: http://en.wikipedia.org/wiki/E-mail'  href="http://green.cx/?GhUc5Ooa">E-Mail</a> was invented in 1982 and was never intended to be used as long as it has been. So, as such it should be used appropriately and by implementing an E-Mail Security policy will help mitigate data leakage. Remember, educated users are in much less danger than users who are uninformed of the risks.</p>
<p>Here is sample E-Mail Policy that I use. Feel free to use it as a template for your own organization.</p>
<p><a id="aptureLink_1wRwXsP5tc" style="margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; text-align: center; display: block; padding-top: 0px; padding-right: 6px; padding-bottom: 0px; padding-left: 6px;" title='Original Link: http://www.scribd.com/doc/18384783'  href="http://green.cx/?_mQzIX2L"><img style="border: 0px initial initial;" title="Email_Security_Policy" src="http://placeholder.apture.com/ph/601x355_ScribdItem/" alt="" width="601px" height="355px" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/network-administration/email-security-policy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Example Laptop Security Policy</title>
		<link>http://green.cx/network-administration/laptop-security-policy/</link>
		<comments>http://green.cx/network-administration/laptop-security-policy/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 16:28:37 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[policy]]></category>

		<guid isPermaLink="false">http://green.cx/?p=213</guid>
		<description><![CDATA[<br/>It's a company trip and you leave the room for some dinner, to return to find that your laptop is missing. Not only is your work and resources now robbed from you, but the hidden costs of data leakage in enormous. An average estimate for stolen data from Laptops results in $70,000 in damages per laptop in 2008. Can you afford NOT to take precautions?]]></description>
			<content:encoded><![CDATA[<br/><h2>Why do you need a Laptop Policy?</h2>
<p><img class="size-thumbnail wp-image-259" title="laptop-security" src="http://green.cx/wp-content/uploads/2009/08/laptop-security-150x150.jpg" alt="Do you know what your users are doing with your laptop?" width="150" height="150" /></p>
<p>Here is an <a title="example Laptop security policy" href="http://green.cx/network-administration/laptop-security-policy/">example Laptop security policy</a>. I have found it extremely helpful in aiding me in making mine.  It&#8217;s difficult to think of all the different situations that can occur   and this template for a laptop security policy is just a lifesaver. I strongly encourage the enforcement of encrypting your company&#8217;s laptops because laptop theft is on the rise, and laptops were intended to be taken out into the world.  It&#8217;s a company trip and you leave the room for some dinner, to return to find that your laptop is missing. Not only is your work and resources now robbed from you, but the hidden costs of data leakage in enormous. An average estimate for stolen data from Laptops results in $70,000 in damages per laptop in 2008. Can you afford NOT to take precautions?</p>
<p><span id="more-213"></span></p>
<p>Start with a strong Laptop Policy that stresses the importance of such things. Let me know if it looks like anything is missing.</p>
<p>Download from From <a title="Download here Hold CTRL if not working" title='Original Link: http://www.iso27001security.com/ISO27k_model_policy_on_laptop_security.rtf' rel='nofollow' href="http://green.cx/?McTGZouO" target="_blank">ISO Security</a></p>
<p><a id="aptureLink_o0CtvMxG5r" style="margin-top: 0px; margin-right: auto; margin-bottom: 0px; margin-left: auto; text-align: center; display: block; padding-top: 0px; padding-right: 6px; padding-bottom: 0px; padding-left: 6px;" title='Original Link: http://www.scribd.com/doc/18243685'  href="http://green.cx/?ukfHvCzX"><img style="border: 0px initial initial;" title="Laptop Security Policy Example" src="http://placeholder.apture.com/ph/600x355_ScribdItem/" alt="" width="600px" height="355px" /></a></p>]]></content:encoded>
			<wfw:commentRss>http://green.cx/network-administration/laptop-security-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using OpenDNS to protect your network.</title>
		<link>http://green.cx/web-resources/online-tools/opendns/</link>
		<comments>http://green.cx/web-resources/online-tools/opendns/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 07:27:39 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Network Admin]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[content filter]]></category>
		<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://blog.jhawk.ws/?p=58</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><br/>Make your network safer, faster, smarter, and more reliable.
OpenDNS is a free service that works for networks of all sizes. I use it on my networks, even at home!
It's really easy to deploy, you only have to change your DNS Addresses to...]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/20.original.png" width="659" height="87" alt="" title="Web Services" /><br/><p>Make your network safer, faster, smarter, and more reliable.<br />
<span id="more-58"></span><br />
<a href="http://green.cx/wp-content/uploads/2009/07/opendns.gif"><img class="alignleft size-full wp-image-618" title="opendns" src="http://green.cx/wp-content/uploads/2009/07/opendns.gif" alt="" width="128" height="83" /></a>OpenDNS is a free service that works for networks of all sizes, from home networks to K-12 schools, SMBs and large enterprises.</p>
<p>Here is why I like OpenDNS and I use it on my networks, even at home!</p>
<p>It&#8217;s really easy to deploy, you only have to change your DNS Addresses to: <strong>208.67.222.222</strong> and <strong>208.67.220.220<!--more--><br />
</strong></p>
<ul>
<li>Security</li>
</ul>
<p>Industry-leading anti-phishing protects everyone on your network from fraudulent phishing scams.</p>
<p>Award-winning Web content filtering gives you the power to block up to 50 categories of content.</p>
<p>Detailed statistics empower you to understand your network traffic and spot trends before they become problems.</p>
<ul>
<li>Infrastructure</li>
</ul>
<p>OpenDNS&#8217;s distributed network makes Web sites load noticeably faster on your network.</p>
<p>They use something called Anycast routing technology which is supposed to make your Internet more reliable.</p>
<ul>
<li>Navigation</li>
</ul>
<p>Browser Shortcuts let your users map a short term to a long URL via the address bar.</p>
<p>Typo correction auto-corrects the most common typos in top-level domains.</p>
<p>OpenDNS Guide also provides helpful search results when your users try to visit a Web site that isn&#8217;t resolving. Ok, maybe that&#8217;s a little bit more for them to recoupe the costs of running those servers for us. But hey, at least I know they are not malicious&#8230;</p>
<div id="_mcePaste" style="width: 1px;height: 1px">Make your network safer, faster, smarter, and more reliable.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">OpenDNS is a free service that works for networks of all sizes, from home networks to K-12 schools, SMBs and large enterprises. Learn more about how OpenDNS can benefit you by selecting your network type on the left.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Here are just a few reasons millions of people have already made the switch:</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Security</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Industry-leading anti-phishing protects everyone on your network from fraudulent phishing scams.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Award-winning Web content filtering gives you the power to block up to 50 categories of content.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Detailed statistics empower you to understand your network traffic and spot trends before they become problems.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Infrastructure</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Our globally distributed network makes Web sites load noticeably faster on your network.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Anycast routing technology makes your Internet more reliable, freeing you of intermittent outages.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Navigation</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Browser Shortcuts let your users map a short term to a long URL via the address bar.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">Typo correction auto-corrects the most common typos in top-level domains.</div>
<div id="_mcePaste" style="width: 1px;height: 1px">OpenDNS Guide provides helpful search results when your users try to visit a Web site that isn&#8217;t resolving.</div>]]></content:encoded>
			<wfw:commentRss>http://green.cx/web-resources/online-tools/opendns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Hidden Users in Windows for Remote Manageability.</title>
		<link>http://green.cx/dark-tech/creating-hidden-users-in-windows-for-remote-manageability/</link>
		<comments>http://green.cx/dark-tech/creating-hidden-users-in-windows-for-remote-manageability/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 21:51:00 +0000</pubDate>
		<dc:creator>+Jason</dc:creator>
				<category><![CDATA[Dark Tech]]></category>
		<category><![CDATA[Network Admin]]></category>

		<guid isPermaLink="false">http://blog.jhawk.ws/2009/06/creating-hidden-users-in-windows-for-remote-manageability/</guid>
		<description><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/23.original.png" width="659" height="87" alt="" title="Dark Tech" /><br/>Make an Invisable Backdoor user on all the computers. Ok, obiously there are pros and cons to this approach, but for many, this could be the answer to your IT dreams.
The premise is simple, we will...]]></description>
			<content:encoded><![CDATA[<img src="http://green.cx/wp-content/blogs.dir/1/category-images/23.original.png" width="659" height="87" alt="" title="Dark Tech" /><br/><p>Sometimes we need to remotly checkup on our network users using tools such as <span id="more-31"></span>the Kaspersky Administration Kit, GoverLan, GFI Lan Guard, or the like. Or maybe we need to see what services they are running to check for spyware, or what printers are installed, etc. Well Microsoft has made this a breeze with Active Directory Servers, Domains, and Windows XP Pro and Vista Buisness.</p>
<div id="attachment_141" class="wp-caption alignleft" style="width: 210px"><img class="size-full wp-image-141 " title="Zorro" src="http://green.cx/wp-content/uploads/2009/06/Zorro1.jpg" alt="Secret Users?" width="200" height="235" /><p class="wp-caption-text">Hidden Users added secretly... lol </p></div>
<div>What what if your a growing business and as you grow you realize down the line that the XP Home Dell you got such a good deal on isn&#8217;t doing you any favors in tring to set up Access control, Sharing, and connecting to other computers. In other words XP home was called that for a reason. HOME.</div>
<div>So what do you do? Buy new computers? Upgrade the OSes on them all? How about an alternative:</div>
<div>Make an Invisable Backdoor user on all the computers. Ok, obiously there are pros and cons to this approach, but for many, this could be the answer to your IT dreams.</div>
<div>The premise is simple, we will:</div>
<div>
<ul>
<li>Create a script to do the dirty work for us.</li>
<li>Put on a thumb drive.</li>
<li>Install on each machine.</li>
</ul>
<div>Yes, going to each machine isn&#8217;t an attractive idea for any administrator, but neither is going to every machine everytime somthing changes on the network. But the script will cut down Ten Minuets per machine, and best of all you can do it all from notepad!</div>
<div>To Start off, our script will be comprised of a single cmd file with the code</div>
<div>
<p><span style="color: #333333;font-family: arial;font-size: 12px"> </span></p>
<pre>@echo off
set UserID=MySeceretUser
set FullName=Doe, John set Comment=Administrative user
set Password=MySeceretPassword
REM Create the user:
net user "%UserID%" "%Password%" /fullname:"%FullName%" /usercomment:"%Comment%" /add
REM Add him to the Administrators group:
net localgroup "Administrators" "%UserID%" /add
REM Remove account from logon screen:
reg add "HKLMSoftwareMicrosoftWindows NTCurrentVersionWinlogonSpecialAccountsUserList" /d "%UserID%" /t REG_DWORD /v "0"</pre>
<pre style="font-size: 12px;padding: 0px;margin: 0px"><span style="font-family: arial">  </span></pre>
</div>
<div>Ok after you copy/paste that into a file called CreateBackDoor.cmd you can copy that file to a flash drive. You can/should change the username and password to something that only you know, and don&#8217;t e-mail the script to your users or let anyone see it, as they will see the seceret username and password that you&#8217;ve made! Now all that is left is to put your flash drive in to each computer and double click it.</div>
</div>]]></content:encoded>
			<wfw:commentRss>http://green.cx/dark-tech/creating-hidden-users-in-windows-for-remote-manageability/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 79/158 queries in 0.343 seconds using apc

Served from: potpiedeluxe.com @ 2012-05-21 19:17:54 -->
