<?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>Greg&#039;s Technical Blog</title>
	<atom:link href="http://itsystemsllc.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://itsystemsllc.net</link>
	<description></description>
	<lastBuildDate>Mon, 10 May 2010 20:22:38 +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>Restore Missing &#8220;Compressed (Zipped) Folder&#8221; in Send To menu</title>
		<link>http://itsystemsllc.net/?p=82</link>
		<comments>http://itsystemsllc.net/?p=82#comments</comments>
		<pubDate>Mon, 10 May 2010 20:22:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itsystemsllc.net/?p=82</guid>
		<description><![CDATA[I have a Windows Server 2003 running Terminal Services setup for one of my clients.  2 of the users on that server need to be able to zip files and send them via email on a regular basis.  Because they are limited users (non-administrators) they are missing the Compressed (Zipped) Folder option under Send To [...]]]></description>
			<content:encoded><![CDATA[<p>I have a Windows Server 2003 running Terminal Services setup for one of my clients.  2 of the users on that server need to be able to zip files and send them via email on a regular basis.  Because they are limited users (non-administrators) they are missing the <em>Compressed (Zipped) Folder</em> option under <em>Send To </em>when they right-click the selected file(s).  To solve this problem each user executed the following command from the <em>Run</em> dialog box (Click <em>Start</em>, then <em>Run</em>).  The command is CASE SENSITIVE:</p>
<p><strong>rundll32  zipfldr.dll,RegisterSendto</strong></p>
<p>In the background, a zero byte file named <em>Compressed (zipped)  Folder.ZFSendToTarget</em> will automatically be created in the  <em>%Userprofile%\SendTo folder</em>.  This command works for both Windows Server 2003 and Windows XP.</p>
<p>For Windows Vista users the fix is similar but the command is different.  The <em>Compressed (zipped) Folder</em> icon is present in each user  profile and also in the Default user profile. Follow these steps  to restore the icon to your user account:</p>
<p>1. Click <em>Start,</em> type the following where it says <em>"Start Search" </em>and press Enter (case sensitive):</p>
<p><strong>%systemdrive%\Users\Default\AppData\Roaming\Microsoft\Windows\SendTo</strong></p>
<p>2. Right-click <em>Compressed (zipped) Folder</em> and choose Copy (Shortcut: <em>CTRL+C</em>)</p>
<p>3. Open the <em>SendTo</em> folder of your user profile. To do so, click  <em>Start</em>, type the following and press Enter:</p>
<p><strong>shell:sendto</strong></p>
<p>4. Right-click an empty area in the folder, and choose Paste (Shortcut: <em>CTRL+V</em>)</p>
<p>Happy Zipping!</p>
]]></content:encoded>
			<wfw:commentRss>http://itsystemsllc.net/?feed=rss2&amp;p=82</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the NET command to change group membership</title>
		<link>http://itsystemsllc.net/?p=78</link>
		<comments>http://itsystemsllc.net/?p=78#comments</comments>
		<pubDate>Thu, 15 Apr 2010 18:28:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://itsystemsllc.net/?p=78</guid>
		<description><![CDATA[Have you ever needed to change local administrator group membership on PC's in a Windows Server 2003 Active Directory domain?  I have come across a need to do this lately with a client who has about 60 workstations on a domain. I needed to remove the end users from the local administrator's group because always [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever needed to change local administrator group membership on PC's in a Windows Server 2003 Active Directory domain?  I have come across a need to do this lately with a client who has about 60 workstations on a domain. I needed to remove the end users from the local administrator's group because always running your PC as an administrator is a large security risk and I was tired of dealing with the consequences.   Since there were so many PC's I didn't want to physically touch each one.  The solution was to create a script utilizing the NET command in DOS.</p>
<p>I did a little research on what the NET command can do by opening a DOS prompt and typing 'net /?' and pressing Enter.  This showed me all the options available for the NET command such as NET USE for mapping resources and <a href="http://rafaelwolf.com/?p=386" target="_blank">NET TIME</a> for setting a computer's time.  The syntax I used is as follows:</p>
<p>net localgroup administrators %username% /delete</p>
<p>Using 'net localgroup' tells the computer I am going to reference items found in local groups on the local computer, meaning the computer on which the command is being executed.  Adding 'adminsitrators' to that string means I am looking specfically in the local administrators group.  I used the variable %username% to insert the currently logged in user into the string and the used the /delete switch to delete that user.  Final result?  The currently logged in user is deleted from the local administrators group.  This can be verified by using 'net localgroup adminsitrators' to print out a list of users in the local administrators group.</p>
<p>Since I didn't want each user to have to execute this command personally I created a batch file called removeadmin.bat which contained the command as seen above: net localgroup administrators %username% /delete.  I then added this as a logon script in a Group Policy that was applied to the OU containing the users.  In this way I was able to make the script run after login and remove the current user from the administrators group with relative ease.</p>
<p>See <a href="http://support.microsoft.com/kb/556003" target="_blank">http://support.microsoft.com/kb/556003</a> to learn more about the NET command.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsystemsllc.net/?feed=rss2&amp;p=78</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Long Range WiFi Solution</title>
		<link>http://itsystemsllc.net/?p=63</link>
		<comments>http://itsystemsllc.net/?p=63#comments</comments>
		<pubDate>Fri, 19 Mar 2010 17:59:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://itsystemsllc.net/?p=63</guid>
		<description><![CDATA[Do you ever wish you could extend your company network across the parking lot?  Across town?  With solutions from EnGenius Datacom you can!  I just completed a project for one of my clients who needed to extend their network across the parking lot.  They already have 2 buildings on the property networked together but, in [...]]]></description>
			<content:encoded><![CDATA[<p>Do you ever wish you could extend your company network across the parking lot?  Across town?  With solutions from <a href="http://www.engeniustech.com" target="_blank">EnGenius Datacom</a> you can!  I just completed a project for one of my clients who needed to extend their network across the parking lot.  They already have 2 buildings on the property networked together but, in that case, they had been able to run cables underground to facilitate the connection.  Now, wanting to connect a 3rd building about 200 cable feet away proved to be more challenging because there was no conduits under the parking lot.  Since trenching would be quite costly I decided to look at a wireless solution.  EnGenius products were recommended to me so I took a look.  After calling their sales team I was directed to the <a href="http://www.engeniustech.com/datacom/products/details.aspx?id=246" target="_blank">EOC-2610</a> device.  I purchased 2 of these from <a href="http://www.compusa.com/applications/searchtools/item-Details.asp?EdpNo=4199930&amp;sku=E155-1058&amp;srkey=eoc-2610" target="_blank">CompUSA</a> for a very reasonable $68 each (I got a $1 non-profit discount because of my client's tax status... sweet).</p>
<p>For physical installation of the devices I relied on the my client's maintenance staff.  The EOC-2610 comes with a hose clamp style mounting system that easily clamped on to a custom bracket that was attached to each building.  Power and network connection are delivered to the devices via their <a href="http://en.wikipedia.org/wiki/PoE" target="_blank">PoE</a> interface.  The PoE injector and A/C adapter are included with the devices.  Since they were mounted outdoors, I used direct burial <a href="http://en.wikipedia.org/wiki/Cat_6" target="_blank">Category 6</a> ethernet cable to reach the devices.  Once the cable came inside the building I terminated it and continued to the indoor switches with standard <a href="http://en.wikipedia.org/wiki/Cat_5e#Category_5e" target="_blank">Category 5e</a> cable.</p>
<p>Implementation was fairly painless once I deduced the appropriate operating mode for the devices.  The devices can be configured via web console in 4 modes: Access Point, Client Bridge, WDS Bridge and Client Router.  For the main building I chose <a href="http://en.wikipedia.org/wiki/Access_point" target="_blank">Access Point</a> (AP) and for the remote building I chose <a href="http://en.wikipedia.org/wiki/Wireless_bridge" target="_blank">Client Bridge</a>.  Once this was done I created a wireless network on the Access Point and enabled <a href="http://en.wikipedia.org/wiki/IEEE_802.11i-2004" target="_blank">WPA2-PSK</a>/<a href="http://en.wikipedia.org/wiki/Temporal_Key_Integrity_Protocol" target="_blank">TKIP</a> security.  To connect the AP and the bridge I logged into the web console on the bridge and all I had to do was scan for networks.  Once it found the network I wanted (and it found a bunch!) I could then connect with the appropriate <a href="http://en.wikipedia.org/wiki/Passphrase" target="_blank">passphrase</a> (set from the AP's wireless config). In the remote building I installed a 24 port switch that receives the up-link from the bridge and then allows me to operate wired PC's and printers within the remote building.</p>
<p>So far I am very satisfied with this solution.  The EnGenius website says this device can transmit up to 30km or 18+ miles.  I am not sure about the total range, but it does work great for the distance I needed to cover.</p>
<p>Pros:<br />
-Easy installation/configuration<br />
-Long range and strong signal<br />
-Cost effective</p>
<p>Cons:<br />
- I would like to have had a MAC filtering option so that I could limit the devices that can connect to this signal (limiting <a href="http://en.wikipedia.org/wiki/Wardriving" target="_blank">wardriving</a>)</p>
<p>Project Pictures:</p>
<div id="attachment_72" class="wp-caption alignnone" style="width: 235px"><a href="http://itsystemsllc.net/wp-content/uploads/2010/03/IMG00068-20100322-1538.jpg"><img class="size-medium wp-image-72" title="IMG00068-20100322-1538" src="http://itsystemsllc.net/wp-content/uploads/2010/03/IMG00068-20100322-1538-225x300.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">Remote building device</p></div>
<div id="attachment_73" class="wp-caption alignnone" style="width: 235px"><a href="http://itsystemsllc.net/wp-content/uploads/2010/03/IMG00064-20100322-1132.jpg"><img class="size-medium wp-image-73" title="IMG00064-20100322-1132" src="http://itsystemsllc.net/wp-content/uploads/2010/03/IMG00064-20100322-1132-225x300.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">Main building device</p></div>
<div id="attachment_74" class="wp-caption alignnone" style="width: 235px"><a href="http://itsystemsllc.net/wp-content/uploads/2010/03/IMG00065-20100322-1133.jpg"><img class="size-medium wp-image-74" title="IMG00065-20100322-1133" src="http://itsystemsllc.net/wp-content/uploads/2010/03/IMG00065-20100322-1133-225x300.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">Backside of main building device, showing mounting bracket</p></div>
]]></content:encoded>
			<wfw:commentRss>http://itsystemsllc.net/?feed=rss2&amp;p=63</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe 9 freezes Internet Explorer 8</title>
		<link>http://itsystemsllc.net/?p=53</link>
		<comments>http://itsystemsllc.net/?p=53#comments</comments>
		<pubDate>Thu, 18 Mar 2010 17:00:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itsystemsllc.net/?p=53</guid>
		<description><![CDATA[Recently I have been working with a client who utilizes a web application from Ameripath called Physician Web Portal.  This portal is used for reporting results of patient tests in PDF format.  The PDFs are viewed within the browser when the report is opened.  I encountered a problem with the application on a new laptop [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have been working with a client who utilizes a web application from <a href="http://www.ameripath.com/" target="_blank">Ameripath</a> called <a href="https://webportal.ameripath.com" target="_blank">Physician Web Portal</a>.  This portal is used for reporting results of patient tests in PDF format.  The PDFs are viewed within the browser when the report is opened.  I encountered a problem with the application on a new laptop that I setup for the client where viewing the reports would freeze IE8.</p>
<p>Relevant system details:<br />
Windows XP Pro <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5B33B5A8-5E76-401F-BE08-1E1555D4F3D4&amp;displaylang=en" target="_blank">SP3</a> (OEM installed)<br />
<a href="http://www.microsoft.com/windows/internet-explorer/worldwide-sites.aspx" target="_blank">Internet Explorer 8</a> version: 8.0.6001.18702<br />
<a href="http://www.adobe.com/go/EN_US-H-GET-READER" target="_blank">Adobe Reader</a> 9.3.0</p>
<p>I spoke with the Ameripath's support team and they initially told me that the application was not supported in IE versions later than 6!  However, after further investigation, I received a call back and I was informed that an upgrade had added support for IE7, 8 and Windows Vista/7.  This meant there was something wrong with the laptop in question.  After successfully testing the Ameripath application on my own laptop (XP Pro SP3, IE8, Adobe 9.3.1)  and successfully testing the application on the Ameripath tech's system (SP3, IE8, Adobe 9.2) I was lost as to why this new laptop was causing me problems.</p>
<p>Other steps taken:<br />
-reset IE8 to full defaults<br />
-disabled all IE8 add-ons/extensions</p>
<p>When tweaking settings in IE and Adobe didn't help I decided to fully uninstall Acrobat 9.3.0 and reinstall it.  After I uninstalled Acrobat 9.3.0 I changed my mind and installed 8.2.0 instead.  I found the MSI for this at this <a href="http://ardownload.adobe.com/pub/adobe/reader/win/8.x/8.2/enu/AdbeRdr820_en_US.msi" target="_blank">link.</a> Once I had Reader 8.2.0 I launched the Ameripath web application and to my great surprise it worked flawlessly!  Thinking that maybe the initial 9.3.0 install had been damaged, I upgraded from 8.2.0 to the 9.3.1 package.  After restarting and retrying the application IE8 again froze when viewing the PDF report.  I also considered uninstalling IE8 but was not able to do this because it was installed as part of SP3 at Dell.  I wanted to roll back SP3 as well but found no efficient way to do that either.</p>
<p>So... the final fix for this issue?  Uninstall Reader 9.3.0 and install 8.2.0.  I haven't tried incrementally upgrading to see how close to version 9 that I can get.  I just don't have the time or the patience to do that!  I cannot determine why the Ameripath application works with IE8 and Acrobat 9.3.1 on my system but does not work on the client's system.  The only difference is that the client's system had OEM installs of Windows XP, SP3 and IE8.  My system has been slowly updated over the years as these updates have come out.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsystemsllc.net/?feed=rss2&amp;p=53</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://itsystemsllc.net/?p=1</link>
		<comments>http://itsystemsllc.net/?p=1#comments</comments>
		<pubDate>Tue, 16 Mar 2010 16:35:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itsystemsllc.net/?p=1</guid>
		<description><![CDATA[Welcome to my technical blog site.  Here I will periodically update the world on the projects I am working on and technology I am utilizing in my business, Information Technology Systems, LLC.  You can also learn more at my LinkedIn page.]]></description>
			<content:encoded><![CDATA[<p><em>Welcome to my technical blog site.  Here I will periodically update the world on the projects I am working on and technology I am utilizing in my business, <a href="http://www.itsystemsllc.com" target="_blank">Information Technology Systems, LLC</a>.  You can also learn more at my <a href="http://www.linkedin.com/pub/greg-johnson/8/b82/651" target="_blank">LinkedIn</a> page.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://itsystemsllc.net/?feed=rss2&amp;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
