<?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>Ohjeah! &#187; content filtering</title>
	<atom:link href="http://www.ohjeah.net/tag/content-filtering/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ohjeah.net</link>
	<description>The writings of JRO...</description>
	<lastBuildDate>Wed, 09 Jun 2010 20:58:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Uninstalling Websense Desktop Client</title>
		<link>http://www.ohjeah.net/2009/04/29/uninstalling-websense-desktop-client/</link>
		<comments>http://www.ohjeah.net/2009/04/29/uninstalling-websense-desktop-client/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 14:38:56 +0000</pubDate>
		<dc:creator>jro</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[content filtering]]></category>
		<category><![CDATA[wdc]]></category>
		<category><![CDATA[websense]]></category>

		<guid isPermaLink="false">http://www.ohjeah.net/?p=220</guid>
		<description><![CDATA[We&#8217;ve been using Websense as our content filtering solution for about a year now, primarily utilizing the Remote Desktop Client in conjunction with the Remote Filtering service to handle our remote users and offices.  While Websense is probably the most featured packed content filtering solution, it comes at a cost due to a per [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">We&#8217;ve been using Websense as our content filtering solution for about a year now, primarily utilizing the Remote Desktop Client in conjunction with the Remote Filtering service to handle our remote users and offices.  While Websense is probably the most featured packed content filtering solution, it comes at a cost due to a per user licensing model and heavy hardware requirements.</p>
<p style="text-align: left;">Barracuda recently entered the content filtering market with their appliance, and after a 30-day demo of their 610 model we decided it was the way to go. While it lacks some of the features of Websense, it will free up 2 servers and $8,000/yr in software renewals which is well worth the initial appliance cost.</p>
<p style="text-align: left;">The primary downside to the Barracuda was the lack of a Remote Filtering agent, which means our remote users and offices will have to proxy through our central office.  With our new 50mb Opteman on the way, and utilizing Frontmotion Firefox ADM to force proxy settings, this won&#8217;t be a problem.</p>
<p style="text-align: left;"><strong>However..</strong></p>
<p style="text-align: left;">Attempting to remove the Websense Desktop Client turned out to be more of a hassle then expected.  When attempting to use the same .msi for the uninstall as used for the initial install, I would get &#8220;This action is only valid for products that are installed&#8221; as seen here:</p>
<p style="text-align: left;"><a rel="attachment wp-att-222" href="http://www.ohjeah.net/2009/04/29/uninstalling-websense-desktop-client/error/"><img class="size-medium wp-image-222 aligncenter" title="error" src="http://www.ohjeah.net/wp-content/uploads/2009/04/error-300x122.png" alt="error" width="300" height="122" /></a></p>
<p style="text-align: left;">After ensuring the .msi I was using was identical to what was used for the installation, I reinstalled the WDC then proceeded to remove it immediately which worked without issue.  With a little GPO help, I was able to push this out to all workstations:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">@</span><span style="color: #7a0874; font-weight: bold;">echo</span> off
REM WDC_Uninstall.bat
REM Copyright <span style="color: #7a0874; font-weight: bold;">&#40;</span>c<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000;">2009</span> Jared Orzechowski <span style="color: #000000; font-weight: bold;">&amp;</span>lt;jaredo at ameritech dot net<span style="color: #000000; font-weight: bold;">&amp;</span>gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> exist <span style="color: #ff0000;">&quot;C:\Program Files\Websense\WDC&quot;</span> GOTO :Uninstall
GOTO :End
&nbsp;
:Uninstall
<span style="color: #7a0874; font-weight: bold;">echo</span> Removing Remote Client Filter
net use Y: \\domain.com\DFS\Client_installs\CPMClient <span style="color: #000000; font-weight: bold;">/</span>Y
start <span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">wait</span> msiexec <span style="color: #000000; font-weight: bold;">/</span>i Y:\CPMClient.msi <span style="color: #007800;">REINSTALL</span>=ALL <span style="color: #007800;">REINSTALLMODE</span>=veums <span style="color: #007800;">PASSPHRASE</span>=somepass <span style="color: #007800;">REBOOT</span>=NO <span style="color: #000000; font-weight: bold;">/</span>qn
<span style="color: #ff0000;">&quot;C:\Program Files\Websense\WDC\wdc.exe&quot;</span> <span style="color: #660033;">-ds</span> somepass
sc stop WebsenseDesktopClient
start <span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">wait</span> msiexec <span style="color: #000000; font-weight: bold;">/</span>x<span style="color: #7a0874; font-weight: bold;">&#123;</span>14D74337-01C2-4F8F-B44B-67FC613E5B1F<span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #000000; font-weight: bold;">/</span>qn <span style="color: #000000; font-weight: bold;">/</span>norestart
net use Y: <span style="color: #000000; font-weight: bold;">/</span>DELETE <span style="color: #000000; font-weight: bold;">/</span>Y
<span style="color: #c20cb9; font-weight: bold;">rmdir</span> <span style="color: #000000; font-weight: bold;">/</span>S <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;C:\Program Files\Websense\WDC&quot;</span>
GOTO :End
&nbsp;
:End
<span style="color: #7a0874; font-weight: bold;">echo</span> Operation Complete..</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.ohjeah.net/2009/04/29/uninstalling-websense-desktop-client/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
