<?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>Diego Cabai &#187; Scripting</title>
	<atom:link href="http://www.cabai.com.ar/tag/scripting/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cabai.com.ar</link>
	<description>KEEP I.T. SIMPLE, KEEP I.T. CLEAN</description>
	<lastBuildDate>Tue, 01 Nov 2011 05:30:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>C&#243;mo Agregar Port Groups usando PowerCLI en VMware</title>
		<link>http://www.cabai.com.ar/2011/10/cmo-agregar-port-groups-usando-powercli-en-vmware.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cmo-agregar-port-groups-usando-powercli-en-vmware</link>
		<comments>http://www.cabai.com.ar/2011/10/cmo-agregar-port-groups-usando-powercli-en-vmware.html#comments</comments>
		<pubDate>Tue, 25 Oct 2011 05:23:45 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[Cluster]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Virtualizacion]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[cmdlet]]></category>
		<category><![CDATA[Comandos]]></category>
		<category><![CDATA[Configurar]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[HA]]></category>
		<category><![CDATA[Host]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Switch]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[VirtualPortGroup]]></category>
		<category><![CDATA[VM]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=1326</guid>
		<description><![CDATA[A veces necesitamos crear varios Port Group o simplemente uno pero en varios hosts dentro de un Cluster VMware. Si lo hacemos a mano puede que además de ser mucho trabajo tengamos que lidiar con errores humanos en el proceso y que luego provoque que una VM no pueda migrar por no tener el mismo [...]]]></description>
			<content:encoded><![CDATA[<p>A veces necesitamos crear varios Port Group o simplemente uno pero en varios hosts dentro de un Cluster VMware. Si lo hacemos a mano puede que además de ser mucho trabajo tengamos que lidiar con errores humanos en el proceso y que luego provoque que una VM no pueda migrar por no tener el mismo Port Group en el destino.</p>
<p>Para esto podemos usar scripting a través de PowerCLI, así como en Windows el PowerShell nos deja hacer de todo acá lo mismo pero para administrar y configurar ambientes VMware.</p>
<p>El cmdlet a utilizar es <strong>New-VirtualPortGroup</strong> y tiene varios atributos a pasarle a la sentencia para poder generar el Port Group deseado, entre ellos el Nombre, el vSwitch y el VlanID como los mas importantes.</p>
<p>En el siguiente ejemplo ejecuté la siguiente sintaxis entre muchos…</p>
<p>
<pre>Get-Cluster "Poner Nombre del Cluster" | Get-VMHost | Get-VirtualSwitch -Name "Poner Nombre del Virtual Switch" | New-VirtualPortGroup -Name "Nombre del Port Group" -VLanId XX</pre>
</p>
<p>Luego vemos el resultado en pantalla del Ok de la ejecución y la creación de los Port Groups. El comando ejecutado primero trae el Cluster con el cmdlet <strong>Get-Cluster</strong>, luego trae los Hosts de dicho Cluster con el <strong>Get-VMHost</strong>, como ultimo input trae el Virtual Switch especificado que tiene cada Host con <strong>Get-VirtualSwitch</strong> donde se crearán los Port Groups y luego del pipe genera el Port Group con el <strong>New-VirtualPortGroup</strong>.</p>
<p> <span id="more-1326"></span>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="PowerCLI New-VirtualPortGroup" border="0" alt="PowerCLI New-VirtualPortGroup" src="http://www.cabai.com.ar/images/posts/2ebbabdcac2e_11DE7/image.png" width="484" height="240" /></p>
<p>Podemos ver la evidencia de los comandos ejecutados correctamente en el log de tareas recientes de VMware y vemos como se van ejecutando. Esto incluso puede generar el mismo Port Group en todos los Hosts de un Cluster y cuando son varios si que puede ser de gran ayuda.</p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="VMware Recent Tasks" border="0" alt="VMware Recent Tasks" src="http://www.cabai.com.ar/images/posts/2ebbabdcac2e_11DE7/image_3.png" width="484" height="76" /></p>
<p>Por ultimo podemos revisar el Virtual Switch y ver que realmente se hayan generado los Port Group deseados.</p>
<p><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="VMware Port Groups" border="0" alt="VMware Port Groups" src="http://www.cabai.com.ar/images/posts/2ebbabdcac2e_11DE7/image_4.png" width="244" height="173" /></p>
<p>Incluso podríamos hacer algo mas avanzado y utilizar un archivo CSV con toda la información de Port Groups que necesitamos generar en qué Hosts y con qué Virtual Switches y podríamos utilizar el <strong>Import-CSV</strong> y el <strong>foreach</strong> para ejecutar cada uno de los Port Groups deseados, pero eso es un poco mas avanzado que podemos ver mas adelante.</p>
<p>Pido disculpas por tapar los nombres de las imagenes pero lo tomé de algunos equipos productivos y por eso no puedo dejar los nombres originales.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2011/10/cmo-agregar-port-groups-usando-powercli-en-vmware.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listar los Distribution Groups Filtrando por AcceptMessagesOnlyFrom</title>
		<link>http://www.cabai.com.ar/2009/11/listar-los-distribution-groups-filtrando-por-acceptmessagesonlyfrom.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=listar-los-distribution-groups-filtrando-por-acceptmessagesonlyfrom</link>
		<comments>http://www.cabai.com.ar/2009/11/listar-los-distribution-groups-filtrando-por-acceptmessagesonlyfrom.html#comments</comments>
		<pubDate>Wed, 18 Nov 2009 05:23:57 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Exchange 2010]]></category>
		<category><![CDATA[Filter]]></category>
		<category><![CDATA[Get-DistributionGroup]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Object]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[PS]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=1019</guid>
		<description><![CDATA[A veces surgen estos artículos de tareas cotidianas que uno requiere hacer y lo lleva a investigar la mejor forma de hacerlo. En este caso necesitábamos una lista de todas las listas de distribución o Distribution Groups de un ambiente con Exchange 2007 que tengan configurada la aceptación de correo de sólo ciertos usuarios y [...]]]></description>
			<content:encoded><![CDATA[<p>A veces surgen estos artículos de tareas cotidianas que uno requiere hacer y lo lleva a investigar la mejor forma de hacerlo. En este caso necesitábamos una lista de todas las listas de distribución o Distribution Groups de un ambiente con Exchange 2007 que tengan configurada la aceptación de correo de sólo ciertos usuarios y además que me liste esos usuarios por cada DL.   </p>
<p>Para esto como estamos usando Exchange 2007 creo que lo mejor era usar PowerShell, de esta manera podemos unificar todo en un comando y hacer un export del resultado de los grupos que estan restringidos y a su vez el listado de los usuarios que tienen acceso a enviarle correo.    </p>
<p>Si no estas al tanto de PowerShell o cómo se usa podes revisar este sitio que hay otros artículos donde explico un poco mejor ese punto. En esta ocasión voy a asumir que existe algo de conocimiento y el comando a ejecutar sería el siguiente: <span id="more-1019"></span></p>
<pre>Get-DistributionGroup -ResultSize Unlimited -filter {AcceptMessagesOnlyFrom –ne $null} | select-object Name,@Name="AcceptMessagesOnlyFrom";Expression={[string]::join(";",$_.AcceptMessagesOnlyFrom)}} | export-csv c:\acceptmessages.csv</pre>
<p>El comando a usar es <strong>Get-DistributionGroup</strong> que si en vez de las DL comunes debemos obtener las dinámicas entonces tendríamos que cambiarlo por <strong>Get-DynamicDistributionGroup</strong>. Luego con el <strong>–ResultSize Unlimited</strong> hacemos que pueda obtener todos los datos y no que esté limitado como si lo está por defecto. Hasta ahora nos va a listar todas las DL, por eso usamos el <strong>–filter</strong> junto con el parámetro <strong>AcceptMessageOnlyFrom</strong>, gracias a eso filtramos las DL que estan restringidas y por último lo exportamos en CSV con el <strong>export-csv</strong>. Importante, el comando debe quedar todo en una sola línea, es probable que se copie con saltos, pero arreglenlo para que quede en una sola.</p>
<p>El resultado que obtenemos es algo así:</p>
<p>#TYPE System.Management.Automation.PSCustomObject   <br />Name,AcceptMessagesOnlyFrom   <br />“ListaUno”,&quot;dominio.com/OU/usuario1;dominio.com/OU/usuario2;dominio.com/OU/usuario3”   <br />&quot;ListaDos&quot;,&quot;dominio.com/OU/usuario4”  <br />&quot;ListaTres&quot;,&quot;dominio.com/OU/usuario4;dominio.com/OU/usuario1”</p>
<p>Como ven es muy intuitivo de identificar el Grupo o Lista y luego los usuarios que si tienen permiso para enviar correo a dicha Lista. Espero que les sirva y les haga un poco mas sencilla la vida de administrar Exchange 2007. Dejo algunos links interesantes de Technet.</p>
<p>Link | <a href="http://technet.microsoft.com/en-us/library/bb124755.aspx" rel="nofollow" target="_blank">Get-DistributionGroup on Microsoft Technet</a>  <br />Link | <a href="http://technet.microsoft.com/en-us/library/bb430744.aspx" rel="nofollow" target="_blank">–Filter Parameter on Microsoft Technet</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2009/11/listar-los-distribution-groups-filtrando-por-acceptmessagesonlyfrom.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mover un Usuario u Objeto entre Dominios en el mismo Forest</title>
		<link>http://www.cabai.com.ar/2009/10/mover-un-usuario-u-objeto-entre-dominios-en-el-mismo-forest.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mover-un-usuario-u-objeto-entre-dominios-en-el-mismo-forest</link>
		<comments>http://www.cabai.com.ar/2009/10/mover-un-usuario-u-objeto-entre-dominios-en-el-mismo-forest.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:40:09 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Comandos]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Movetree]]></category>
		<category><![CDATA[Netdom]]></category>
		<category><![CDATA[Object]]></category>
		<category><![CDATA[Objeto]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Support Tools]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[User]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=999</guid>
		<description><![CDATA[[ad#ad4] El otro día me encontré con un requerimiento que era mover un usuario entre dominios de un mismo forest nativo. Obviamente no se puede hacer Drag &#38; Drop y desde la GUI tampoco funciona aunque te pares en el RID master del dominio destino. Entonces busqué la opción por comandos porque la tarea en [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad4]</div>
<p>El otro día me encontré con un requerimiento que era mover un usuario entre dominios de un mismo forest nativo. Obviamente no se puede hacer Drag &amp; Drop y desde la GUI tampoco funciona aunque te pares en el RID master del dominio destino.   </p>
<p>Entonces busqué la opción por comandos porque la tarea en si, se puede realizar. Al hacer esto me topé con un comando que no había utilizado nunca y me pareció que vale la pena comentar, <strong>MoveTree</strong>.    </p>
<p>Este comando me pareció muy útil y viene cuando se instalan las Support Tools de Windows Server 2003. Te permite mover cualquier objeto entre dominios del mismo forest siempre y cuando esté todo en modo nativo.    </p>
<p>El comando trabaja de la siguiente manera, cuando se mueve un objeto primero se pone en el contenedor <strong>Lost &amp; Found</strong> del dominio origen y luego si todo está bien en cuanto a los requisitos es movido al dominio destino. Si se encuentra un error lo deja ahí. Ahora bien antes podemos ejecutar un modo de chequeo que nos alerta ante cualquier posible problema, lo cual es extremadamente útil.    </p>
<p>El comando tiene los siguientes modificadores u opciones: <span id="more-999"></span></p>
<div style="border-bottom: gray 1px solid; border-left: gray 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; max-height: 200px; font-size: 8pt; overflow: auto; border-top: gray 1px solid; cursor: text; border-right: gray 1px solid; padding-top: 4px">
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">THE SYNTAX OF THIS COMMAND IS:</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">&#160;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">MoveTree [/start | /continue | /check] [/s SrcDSA] [/d DstDSA]</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">         [/sdn SrcDN] [/ddn DstDN] [/u Domain\Username] [/p Password] [/verbose]</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">&#160;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">&#160;</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /start        : Start a move tree operation with /check option by default.</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">                : Instead, you could be able to use /startnocheck to start</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">                : a movtree operation without any check.</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /continue     : Continue a failed move tree operation.</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /check        : Check the whole tree before actually move any object.</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /s <span style="color: #0000ff">&lt;</span><span style="color: #800000">SrcDSA</span><span style="color: #0000ff">&gt;</span>   : Source server's fully qualified primary DNS name. Required</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /d <span style="color: #0000ff">&lt;</span><span style="color: #800000">DstDSA</span><span style="color: #0000ff">&gt;</span>   : Destination server's fully qualified primary DNS name.</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">                : Required</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /sdn <span style="color: #0000ff">&lt;</span><span style="color: #800000">SrcDN</span><span style="color: #0000ff">&gt;</span>  : Source sub-tree's root DN.</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">                : Required in Start and Check case. Optional in Continue case</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /ddn <span style="color: #0000ff">&lt;</span><span style="color: #800000">DstDN</span><span style="color: #0000ff">&gt;</span>  : Destination sub-tree's root DN. RDN plus Destinaton Parent DN.</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">                : Required</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /u <span style="color: #0000ff">&lt;</span><span style="color: #800000">Domain</span>\<span style="color: #ff0000">UserName</span><span style="color: #0000ff">&gt;</span>  : Domain Name and User Account Name. Optional</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /p <span style="color: #0000ff">&lt;</span><span style="color: #800000">Password</span><span style="color: #0000ff">&gt;</span> : Password. Optional</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">  /verbose      : Verbose Mode. Pipe anything onto screen. Optional</pre>
</p></div>
</div>
<p>Algunos puntos que debemos tener en cuenta en el movimiento de los objetos es que se resuelvan correctamente los nombres de los servidores, que se tengan los permisos necesarios para la operación, y pararse en el domain controller con el rol de RID master.</p>
<p>También podemos usar este comando para mover cuentas de máquina pero como dice la documentación, una vez movida la máquina no se va a poder loguear al nuevo dominio, para eso habría que utilizar el comando anterior y conocido <strong>netdom</strong>.</p>
<p>Un ejemplo para mover un usuario sería el siguiente:</p>
<div style="border-bottom: gray 1px solid; border-left: gray 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; max-height: 200px; font-size: 8pt; overflow: auto; border-top: gray 1px solid; cursor: text; border-right: gray 1px solid; padding-top: 4px">
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">movetree /start /s servidor_origen.dominio1.com /d servidor_destino.dominio2.com</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">/sdn &quot;CN=Diego Cabai,OU=Usuarios,OU=Empresa,DC=dominio1,DC=com&quot; /ddn </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">&quot;CN=Diego Cabai,CN=Users,DC=dominio2,DC=com&quot; /verbose</pre>
</p></div>
</div>
<p>Como se ve en el comando también podemos cambiar la OU donde va a parar el usuario ya que tal vez no tengamos creada la misma estructura pero si debemos especificarla. Lo mismo con el nombre completo del usuario también debe figurar.</p>
<p>Por último si queremos saber si este comando correría correctamente debemos cambiar el <strong>/start</strong> por un <strong>/check</strong> y ahí nos dirá si el movimiento será exitoso. Por último si el usuario tenía una cuenta de correo en Exchange luego de que la replicación se realice entre los domain controllers podrán ejecutar el Move Mailbox común y corriente para depositar la casilla en un servidor de Exchange del nuevo dominio.</p>
<p>Link | <a href="http://technet.microsoft.com/en-us/library/cc755718%28WS.10%29.aspx" rel="nofollow" target="_blank">Movetree.exe Technet Archive</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2009/10/mover-un-usuario-u-objeto-entre-dominios-en-el-mismo-forest.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desinstalar el Cliente de Symantec Endpoint Protection (SEP)</title>
		<link>http://www.cabai.com.ar/2009/07/desinstalar-el-cliente-de-symantec-endpoint-protection-sep.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=desinstalar-el-cliente-de-symantec-endpoint-protection-sep</link>
		<comments>http://www.cabai.com.ar/2009/07/desinstalar-el-cliente-de-symantec-endpoint-protection-sep.html#comments</comments>
		<pubDate>Sun, 19 Jul 2009 07:09:04 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Seguridad]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Antivirus]]></category>
		<category><![CDATA[Batch]]></category>
		<category><![CDATA[Client]]></category>
		<category><![CDATA[Endpoint]]></category>
		<category><![CDATA[Protection]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[SEP]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Symantec]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=885</guid>
		<description><![CDATA[[ad#ad4] Esta es una tarea sencilla siempre y cuando sale bien. Muchas veces la desinstalación sale bien según el asistente pero luego cuando lo reinstalamos podemos tener algún problema que arrastraba la versión anterior. Esto se debe a que al remover el cliente de SEP hay muchas entradas en el registro que no elimina. Esta [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad4]</div>
<p>Esta es una tarea sencilla siempre y cuando sale bien. Muchas veces la desinstalación sale bien según el asistente pero luego cuando lo reinstalamos podemos tener algún problema que arrastraba la versión anterior. Esto se debe a que al remover el cliente de SEP hay muchas entradas en el registro que no elimina. Esta basura que deja el SEP en nuestro registro de Windows debe ser eliminada a mano si queremos quitar todo rastro del producto de nuestros equipos.   </p>
<p>Acá dejo una lista de las entradas en el registro a eliminar y está en formato de batch, así que es tan sencillo como copiar y pegar el contenido que dejo a continuación en un notepad, guardarlo como .cmd o .bat y luego ejecutarlo en el equipo que ya hayan removido el cliente desde “Add &amp; Remove Programs” o “Programs and Features”.    </p>
<p>Repito, esto es si el cliente no funciona bien contra la consola, y deben desinstalarlo y luego reinstalarlo y ven que el problema persiste. Si hacen la desinstalación del producto y luego al reinstalarlo queda todo bien entonces no hizo falta utilizar esto. Pero hay casos donde si deja esta basura en nuestro registro y tenemos que eliminarla a mano. Para esos casos si pueden utilizar las líneas que dejo a continuación.<span id="more-885"></span></p>
<div style="border-bottom: gray 1px solid; border-left: gray 1px solid; padding-bottom: 4px; line-height: 12pt; background-color: #f4f4f4; margin: 20px 0px 10px; padding-left: 4px; width: 97.5%; padding-right: 4px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; max-height: 200px; font-size: 8pt; overflow: auto; border-top: gray 1px solid; cursor: text; border-right: gray 1px solid; padding-top: 4px">
<div style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shellex\ContextMenuHandlers\LDVPMenu /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\ccEvtCli.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\ccProSub.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\ccSetEvt.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\ccSvcHst.exe /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\CliProxy.DLL] /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\HPPProtectionProviderUI.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\PatchWrap.EXE /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\ProtectionUtil.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\RTVScan.EXE /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\SavMainUI.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\SavUI.EXE /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\SepLuCallback.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\SescLU.EXE /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\SmcGui.EXE /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\SPBBCEVT.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\Srtsp32.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\SyKnAppS.DLL /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CcErrDsp.ErrorDisplay /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CcErrDsp.ErrorDisplay.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CcWebWnd.ccWebWindow /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CcWebWnd.ccWebWindow.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\cliproxy.objects /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\cliproxy.objects.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cliproxy.ScanManagerCOMCallback /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cliproxy.ScanManagerCOMCallback.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shellex\ContextMenuHandlers\LDVPMenu /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\EXCHNGUI.ExchngUICtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shellex\ContextMenuHandlers\LDVPMenu /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.CAutoprotectFw /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.CAutoprotectFw.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.CCmcManagement /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.CCmcManagement.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.CNacManagement /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.CNacManagement.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.FwsProtectionProvider /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FwsCtrl.FwsProtectionProvider.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HPPProtectionProviderUI.HPPProtection /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HPPProtectionProviderUI.HPPProtection.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HPPProtectionProviderUI.HPPProtectionPr /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HPPProtectionProviderUI.HPPProtectionProvider.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\INETMAILUI.InetMailUICtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Features\03E4A8BF51994184DA9F240ED0F9CDD3 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products\03E4A8BF51994184DA9F240ED0F9CDD3 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\UpgradeCodes\20A7FB42A06BB49448A397B3CB77ED4D /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDDATETIME.LDDateCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDDATETIME.LDStaticDateTimeCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDDATETIME.LDTimeCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPCTLS.LDVPActionsCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPCTLS.LDVPEditCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPCTLS.LDVPExtensionsCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPCTLS.LDVPResultsCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPCTLS.LDVPVirusDetailsCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPAboutDlgCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPCompressedCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPEmailNotifySettingsCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPMessageConfigCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPSchedule2Ctrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPScheduleCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPStorageViewCtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPDLGS.LDVPThreatExclusionsDlgCtl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LDVPUI.LDVPUICtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LOTNOTESUI.LotNotesUICtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PatchWrap.PatchWrapper /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PatchWrap.PatchWrapper.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.ProtectionCollection /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.ProtectionCollection.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.ProtectionProviderColl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.ProtectionProviderCollec /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.Protection_GUID_Contai.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.Protection_GUID_Containe /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusFinder /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusFinder.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_Autoprot.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_Autoprotec /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_Containe.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_Container /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_Definiti.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_Definition /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_HostInte.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_HostIntegr /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_NetworkA.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_NetworkAcc /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_NetworkQ.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_NetworkQua /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_Provider.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_ProviderAu /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_ProviderEr /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ProtectionUtil.StatusProblem_ProviderOf /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.CSavInfo /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.CSavInfo.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.CSavQuarantine /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.CSavQuarantine.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.OEMSettingsManager /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.OEMSettingsManager.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.ResultsViewCOMCallback /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.ResultsViewCOMCallback.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.ScanManagerService /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.ScanManagerService.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.VirusFoundCOMCallback /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Rtvscan.VirusFoundCOMCallback.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.ConfigureableScanCollection /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.ConfigureableScanCollection.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectExchange /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectExchange.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectFilesystem /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectFilesystem.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectInternetEmail /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectInternetEmail.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectNotes /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavAutoprotectNotes.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavConfigureableScan /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavConfigureableScan.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavProtectionProvider /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavProtectionProvider.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavQuarantineItem /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavQuarantineItem.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavQuarantineItemCollection /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.SavQuarantineItemCollection.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.TamperProtectionProvider /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.TamperProtectionProvider.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.TamperProtectProcess /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavMainUI.TamperProtectProcess.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavUI.ResultsViewCOMAdapter /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavUI.ResultsViewCOMAdapter.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavUI.VirusFoundCOMAdapter /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SavUI.VirusFoundCOMAdapter.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SEP.AV.ScanDlgs /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SepLuCallback.SepLuCallbackHandler /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SepLuCallback.SepLuCallbackHandler.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.AvLuCallback /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.AvLuCallback.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.ContentUpdateManager /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.ContentUpdateManager.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.MonikerInfo /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.MonikerInfo.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.MonikerInfoCollection /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.MonikerInfoCollection.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.SepContentService /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SescLu.SepContentService.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Shelsel2.Shelsel2 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Shelsel2.Shelsel2.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.ControlEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.ControlEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.ErrorEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.ErrorEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.MountEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.MountEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.NonViralEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.NonViralEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.StateChangeEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.StateChangeEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.ViralEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\srtsp32.ViralEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SyKnAppS.LUCallback /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SyKnAppS.LUCallback.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccEvtMgr.EventManager /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccEvtMgr.EventManager.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccEvtMgr.LogManager /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccEvtMgr.LogManager.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccEvtMgr.ModuleManager /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccEvtMgr.ModuleManager.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccProSub.ProviderProxy /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccProSub.ProviderProxy.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccProSub.SubscriberProxy /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccProSub.SubscriberProxy.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccSetEvt.SettingsChangeEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccSetEvt.SettingsChangeEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccSetMgr.SettingsService /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.CommonClient.ccSetMgr.SettingsService.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.SSHelper /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.SSHelper.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stCallbackManager /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stCallbackManager.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stCheckForUpdates /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stCheckForUpdates.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stDisScriptEngine /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stDisScriptEngine.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stHost /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stHost.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stHostCatalog /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stHostCatalog.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetBatchGet /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetBatchGet.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetConnParms /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetConnParms.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetGetFile /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetGetFile.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetTransferItem /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stInetTransferItem.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stLog /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stLog.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stLUProgressCallback /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stLUProgressCallback.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stPatch /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stPatch.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stPatchCatalog /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stPatchCatalog.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stSettings /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.stSettings.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.SymNeti.SymNetiProviderProxy /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.SymNeti.SymNetiProviderProxy.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.SymNeti.SymNetiSubscriberProxy /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Symantec.SymNeti.SymNetiSubscriberProxy.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.AlertEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.AlertEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.LocationChangeEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.LocationChangeEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.LocationEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.LocationEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.LogEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.LogEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.NetworkChangeEvent /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SymNeti.NetworkChangeEvent.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SYMPROTECTUI.SymProtectUICtrl.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TSSAFILE /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VpshellEx.VpshellEx /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VpshellEx.VpshellEx.1 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Intel\LANDesk\AMS2 /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ESENT\Process\ccSvcHst /va /f </pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\Client\Extensions /v Outlook Setup Extension /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\Client\Extensions /v Symantec AntiVirus Outlook Protection /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\RFC1156Agent /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\ccApp.exe /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Smc.exe /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Controls Folder\Display\shellex\PropertySheetHandlers\LDVP Shell Extensions /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UpgradeCodes\20A7FB42A06BB49448A397B3CB77ED4D /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\03E4A8BF51994184DA9F240ED0F9CDD3 /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v ccApp /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ShellExtensions\Approved /v {8BEEE74D-455E-4616-A97A-F6E86C317F32} /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\COH_PVLInfo /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Common Client /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v AMSUsageCount /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v COHDataDIR /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v COHDIR /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v GEH /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v IPSEngine /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v MSL /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SAV Install Directory /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SAVCE /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v Savrt /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SavSubmissionEngine /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SavSubmissionEngineData /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SPBBC /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SRTSP /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SRTSPQuarantine /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SyKnAppS /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SYKNAPPSDEF /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v SymNetDrv /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v VP6ClientInstalled /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\InstalledApps /v VP6UsageCount /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\PatchInst /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\SPBBC /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\SRTSP /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\SyKnAppS /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec AntiVirus /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\SymNetDrv /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\VxMSLight /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\ccEvtMgr /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\ccSetMgr /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\Symantec Antivirus /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal\Symantec Antvirus /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\ccEvtMgr /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\ccSetMgr /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\SmcService /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\Symantec Antivirus /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Network\Symantec Antvirus /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ccEvtMgr /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ccSetMgr /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\COH_Mon /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\ccEvtMgr /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\ccSvcHst /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\Symantec AntiVirus /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\System\SRTSP /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\System\SRTSPL /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v ConfigUiPath /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v IdentityPath /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v InteractiveUIPath /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v <span style="color: #0000ff">Path</span> /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v ConfigUiPathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v IdentityPathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v InteractiveUIPathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\13 /v PathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v ConfigUiPath /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v IdentityPath /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v InteractiveUIPath /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v <span style="color: #0000ff">Path</span> /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v ConfigUiPathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v IdentityPathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v InteractiveUIPathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\25 /v PathBackup /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan\PPP\EAP\88 /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SmcService /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNAC /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SnacNp /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SPBBCDrv /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SRTSP /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SRTSPL /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SRTSPX /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Symantec AntiVirus /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SYMREDRV /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SYMTDI /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysPlant /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\vsdatant /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WPS /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: white; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px">REG <span style="color: #0000ff">DELETE</span> HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WpsHelper /va /f</pre>
<pre style="border-bottom-style: none; padding-bottom: 0px; line-height: 12pt; border-right-style: none; background-color: #f4f4f4; margin: 0em; padding-left: 0px; width: 100%; padding-right: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-top-style: none; color: black; font-size: 8pt; border-left-style: none; overflow: visible; padding-top: 0px"><span style="color: #0000ff">SHUTDOWN</span> -r -t 01</pre>
</p></div>
</div>
<p>Una vez que tengan el bat armado pueden ejecutarlo luego de haber desinstalado el cliente y luego de haber reiniciado. Este batch luego de eliminar las entradas en el registro también reinicia el equipo automáticamente. Al finalizar esto se puede instalar el cliente de nuevo y que tenga todas las configuraciones de cero. Espero les sirva.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2009/07/desinstalar-el-cliente-de-symantec-endpoint-protection-sep.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Scripting en Microsoft Hyper-V</title>
		<link>http://www.cabai.com.ar/2009/03/scripting-en-microsoft-hyper-v.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=scripting-en-microsoft-hyper-v</link>
		<comments>http://www.cabai.com.ar/2009/03/scripting-en-microsoft-hyper-v.html#comments</comments>
		<pubDate>Sat, 14 Mar 2009 03:47:49 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Virtualizacion]]></category>
		<category><![CDATA[Herramienta]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Machine]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Server Core]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=767</guid>
		<description><![CDATA[[ad#ad4] Microsoft Hyper-V es la otra opción a la hora de virtualizar para quienes no quieran o no estén utilizando VMware. Una de las grandes funciones que nos permite Hyper-V es la opción de utilizar scripts para tareas repetitivas o para repetir una instalación. Estos scripts los pueden ver desde los links que voy a [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad4]</div>
<p>Microsoft Hyper-V es la otra opción a la hora de virtualizar para quienes no quieran o no estén utilizando VMware. Una de las grandes funciones que nos permite Hyper-V es la opción de utilizar scripts para tareas repetitivas o para repetir una instalación.   </p>
<p>Estos scripts los pueden ver desde los links que voy a publicar ya que no los hice yo, sino que fueron armados por Ben de <a href="http://blogs.msdn.com/virtual_pc_guy" target="_blank">Virtual PC Guy</a> y fueron publicados en su sitio. Yo solo te los traigo para poder compartirlos.    </p>
<p><strong>Script: Creando una red virtual interna con Hyper-V     <br /></strong>Este script está pensado para crear redes que no estan conectadas a ninguna placa física pero permite a las máquinas virtuales conectarse entre si.    <br /><a href="http://blogs.msdn.com/virtual_pc_guy/archive/2009/02/17/script-creating-an-internal-virtual-network-with-hyper-v.aspx" target="_blank">Link »</a>    </p>
<p><strong>Script: Creando una red virtual&#160; interna con Hyper-V – Plus</strong>    <br />Este es similar al anterior y con el mismo propósito salvo que agrega una funcionalidad extra de configurar la dirección IP a una instalación Server Core ya que puede llegar a ser una tarea molesta.   <span id="more-767"></span> <br /><a href="http://blogs.msdn.com/virtual_pc_guy/archive/2009/03/02/script-creating-an-internal-virtual-network-with-hyper-v-plus.aspx" target="_blank">Link »</a>    </p>
<p><strong>Script: Creando una red privada virtual con Hyper-V</strong>    <br />Este script es para crear una red sólo para máquinas virtuales que comparten una red privada.    <br /><a href="http://blogs.msdn.com/virtual_pc_guy/archive/2009/02/16/script-creating-a-private-virtual-network-with-hyper-v.aspx" target="_blank">Link »</a>    </p>
<p>Todos estos scripts de redes virtuales generan los switches virtuales necesarios y las configuraciones necesarias para que las VMs se puedan conectar entre si, si es lo requerido.    </p>
<p><strong>Scripting: Usando Asociaciones con Hyper-V</strong>    <br />Este es un tutorial que hace comentando una técnica de programación de scripts para Hyper-V utilizando WMI. Esto nos puede ser realmente útil si dejamos libre a nuestra imaginación con los scripts y con nuestras tareas de administración.    <br /><a href="http://blogs.msdn.com/virtual_pc_guy/archive/2009/03/12/scripting-hyper-v-using-associations.aspx" target="_blank">Link »</a>    </p>
<p><img title="image" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 10px 0px 0px; border-left: 0px; border-bottom: 0px" height="173" alt="image" src="http://www.cabai.com.ar/images/posts/ScriptingenMicrosoftHyperV_143E9/image.png" width="240" align="left" border="0" /> Otro tema aparte del scripting quería comentar una herramienta para monitorear la performance de las máquinas virtuales (VMs). Uno por defecto utilizaría el Task Manager dentro de las mismas pero esos datos no son del todo ciertos ya que el hypervisor se encarga de algunas tareas extra y no muestra la verdadera performance del equipo virtual. Para esto <a href="http://www.tmurgent.com" target="_blank">TMurget</a> creó el <a href="http://www.tmurgent.com/tools.aspx" target="_blank" rel="nofollow">HyperV_Mon</a> desde donde podemos monitorear la performance de las mismas.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2009/03/scripting-en-microsoft-hyper-v.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Los Clientes de WSUS Aparecen y Desaparecen de la Consola</title>
		<link>http://www.cabai.com.ar/2009/01/los-clientes-de-wsus-aparecen-y-desaparecen-de-la-consola.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=los-clientes-de-wsus-aparecen-y-desaparecen-de-la-consola</link>
		<comments>http://www.cabai.com.ar/2009/01/los-clientes-de-wsus-aparecen-y-desaparecen-de-la-consola.html#comments</comments>
		<pubDate>Mon, 26 Jan 2009 14:31:46 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[WSUS]]></category>
		<category><![CDATA[Automatic Updates]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Update]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Windows Update]]></category>
		<category><![CDATA[wuauclt]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=734</guid>
		<description><![CDATA[[ad#ad4] Muchas veces tenemos un problema en los equipos clientes que empiezan a aparecer y desaparecer de la consola, o sino puede que nunca aparezcan en la consola de WSUS. Algunas veces se debe al servicio de Windows Update en la misma PC, pero otras veces puede deberse a que el cliente fue clonado. Cuando [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad4]</div>
<p>Muchas veces tenemos un problema en los equipos clientes que empiezan a aparecer y desaparecer de la consola, o sino puede que nunca aparezcan en la consola de WSUS. Algunas veces se debe al servicio de Windows Update en la misma PC, pero otras veces puede deberse a que el cliente fue clonado. Cuando alguien clona un equipo y éste ya se había conectado al WSUS puede que mantenga el mismo ID en los equipos y esto genera una especie de conflicto lo que hace que el mismo no aparezca en la consola. Otro comportamiento es que a veces aparezca uno de los equipos y otro día otro y hace que el anterior desaparezca misteriosamente.   </p>
<p>Tal vez tengas este comportamiento pero no hayas clonado el equipo o no estes seguro, igualmente puedes probar si esto resuelve tu problema de conexión de los equipos a la consola de WSUS. Para estos casos cree un script que simplemente borra algunas entradas del registro que se van a regenerar cuando se vuelva a conectar con el servidor de WSUS. Si el ID está repetido le asignará uno nuevo y así no tendremos mas este problema.    </p>
<p>Si tu problema es general también se puede asignar este script a una política (GPO) de dominio y así te aseguras que le corra a todos los equipos. También podrías agregar un flag para que no corra mas de una vez sino estaría borrando las entradas en cada logon. El flag puede ser un archivo o una entrada, cualquier condición que haga que no corra dos veces.   <span id="more-734"></span> </p>
<p>Para poder usar el script copiá y pegá el contenido que paso a continuación en un notepad, grabalo con extensión .cmd o .bat y luego lo ejecutas o lo asignas a una GPO. Luego de eliminar las entradas en el registro se reconecta con el servidor de WSUS y regenera la autorización con el mismo.</p>
<div style="border-right: gray 1px solid; padding-right: 4px; border-top: gray 1px solid; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; margin: 20px 0px 10px; overflow: auto; border-left: gray 1px solid; width: 97.5%; cursor: text; max-height: 200px; line-height: 12pt; padding-top: 4px; border-bottom: gray 1px solid; font-family: consolas, &#39;Courier New&#39;, courier, monospace; background-color: #f4f4f4">
<div style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">@echo off</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">REM WSUS: Script para Eliminar entradas en el Registro por Clonado de Equipos</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">net stop wuauserv</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">REG DELETE &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate&quot; /v AccountDomainSid /f</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">REG DELETE &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate&quot; /v PingID /f</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">REG DELETE &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate&quot; /v SusClientId /f</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">REG DELETE &quot;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate&quot; /v SUSClientIDValidation /f</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">net start wuauserv</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: white; border-bottom-style: none">wuauclt /resetauthorization /detectnow</pre>
<pre style="padding-right: 0px; padding-left: 0px; font-size: 8pt; padding-bottom: 0px; margin: 0em; overflow: visible; width: 100%; color: black; border-top-style: none; line-height: 12pt; padding-top: 0px; font-family: consolas, &#39;Courier New&#39;, courier, monospace; border-right-style: none; border-left-style: none; background-color: #f4f4f4; border-bottom-style: none">exit</pre>
</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2009/01/los-clientes-de-wsus-aparecen-y-desaparecen-de-la-consola.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Configurando la Red usando netsh</title>
		<link>http://www.cabai.com.ar/2008/08/configurando-la-red-usando-netsh.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=configurando-la-red-usando-netsh</link>
		<comments>http://www.cabai.com.ar/2008/08/configurando-la-red-usando-netsh.html#comments</comments>
		<pubDate>Sun, 10 Aug 2008 06:07:10 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[Comandos]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[Herramienta]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Netsh]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Technet]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=567</guid>
		<description><![CDATA[[ad#ad4] El comando de Windows netsh sirve para administrar y configurar las conexiones de red de nuestros equipos y servidores. La ventaja es que nos sirve para hacer estas modificaciones tanto localmente como remotamente y hasta podemos utilizarlo en scripting lo que hace de esta herramienta una utilidad muy poderosa. También podemos generar un archivo [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad4]</div>
<p>El comando de Windows <strong>netsh</strong> sirve para administrar y configurar las conexiones de red de nuestros equipos y servidores. La ventaja es que nos sirve para hacer estas modificaciones tanto localmente como remotamente y hasta podemos utilizarlo en scripting lo que hace de esta herramienta una utilidad muy poderosa.     </p>
<p>También podemos generar un archivo con la configuración deseada e importarla en otros equipos. Esto es realmente útil para el caso de los servidores y dejarlos todos de forma standard.     </p>
<p>La idea de este artículo es mostrarles algunos de los comandos mas utilizados en netsh para la administración diaria de un ambiente de IT. Hay muchísimas mas opciones y comandos disponibles así que te invito a investigarlo a fondo. Es importante que todo los comandos que explico tomo como nombre de la conexión de red “<strong>Local Area Connection</strong>”. Esto deben cambiarlo por el nombre de su conexión de red de lo contrario no funcionarán los comandos.<span id="more-567"></span></p>
<h2>Configurar la Placa para que tome DHCP</h2>
<pre class="csharpcode">netsh int ip set address name=&quot;Local Area Connection&quot; dhcp
netsh int ip set dns name=&quot;Local Area Connection&quot; dhcp
netsh int ip set wins name=&quot;Local Area Connection&quot; dhcp</pre>
<p align="justify">
<p align="justify">El primer comando es para configurar la IP en modo de DHCP. El segundo es para configurar los DNS para que los tome de DHCP y el tercero y último es para hacer lo mismo pero con el WINS. Esto se utiliza generalmente cuando tenemos los equipos con IPs estáticas y migramos a un ambiente con dhcp. Estos comandos se envían via script o GPO a todo el ambiente. </p>
<h2>Agregando DNS y WINS a una Conexión</h2>
<pre class="csharpcode">netsh int ip add dns name=&quot;Local Area Connection&quot; addr=192.168.20.201
netsh int ip add dns name=&quot;Local Area Connection&quot; addr=192.168.20.202 index=2
netsh int ip add wins name=&quot;Local Area Connection&quot; addr=192.168.1.2</pre>
<p align="justify">En este caso se utiliza cuando queremos agregar una IP determinada tanto a los DNS como a los WINS de las placas. En el primer comando agrega un DNS a la lista de la conexión. En el segundo caso agrega un DNS pero con el index=2 lo agrega como DNS Secundario. El tercer caso es igual al primero pero para el WINS. </p>
<p>Hay casos donde el “name=” y el “addr=” no son correctamente aceptados así que puedes omitirlos. </p>
<h2>Tomando Backup de nuestra Configuración e Importarla</h2>
<pre class="csharpcode">netsh -c interface dump <span class="kwrd">&gt;</span> c:\conf.txt
netsh -f c:\conf.txt </pre>
<p align="justify">En este caso tenemos el primer comando para exportar la configuración de red y con el segundo para importarla. Esto es también muy útil si tenemos varias ubicaciones y queremos conservar la configuración de cada una. Luego podemos con un simple comando ir importando la configuración según la ubicación. </p>
<p>Así como existen los comandos con <strong>add</strong> para el dns y el wins también existe el mismo comando pero con <strong>delete</strong>. De esta manera estaríamos eliminando alguna IP que ya no corresponda sobre los equipos. También tenemos la opción de <strong>show</strong> con el que podremos ver la información que querramos. Algunos ejemplos… </p>
<h2>Mostrando Información de las Conexiones de Red</h2>
<pre class="csharpcode">netsh int ip show icmp
netsh int ip show interface
netsh int ip show ipstats
netsh int ip show tcpconn
netsh int ip show config</pre>
<p align="justify">En este caso tenemos el primer comando que nos va a mostrar las estadísticas de ICMP. El segundo comando nos muestra los nombres de las conexiones de red o interfaces. El tercero muestra la estadísticas del protocolo IP. El cuarto muestra las conexiones TCP de nuestro equipo con sus respectivos puertos y el ultimo muestra la configuración para cada una de las placas. Como mencioné antes hay mas comandos disponibles y mas abajo dejo algunos links para que sigan leyendo del tema. </p>
<p>Este comando también sirve para administrar el Firewall de Windows. Ya había comentado otro artículo con un ejemplo sobre este tema y lo pueden ver en el siguiente link: </p>
<p><a href="http://www.cabai.com.ar/2007/11/habilitando-la-respuesta-de-ping-en.html" target="_blank">Habilitando la respuesta de Ping en Windows Server 2008</a> </p>
<p>Dejo otros links útiles para que sigan jugando con este comando. Obviamente lo que mostré en este artículo es algo básico del uso del mismo pero es lo mas común. Luego se pueden hacer scripts mucho mas avanzados para ambientes mas avanzados. Si tienes alguna duda deja un comentario en este artículo o contáctame y de seguro intentaré ayudarte. </p>
<p>Link | <a href="http://technet.microsoft.com/en-us/library/cc778503.aspx" target="_blank">Netsh Commands – Microsoft Technet</a>   <br />Link | <a href="http://support.microsoft.com/kb/242468" target="_blank">Netsh and Command-Line Switches</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2008/08/configurando-la-red-usando-netsh.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Filtros WMI t&#237;picos para ser usados en GPO&#8217;s</title>
		<link>http://www.cabai.com.ar/2008/07/filtros-wmi-tpicos-para-ser-usados-en-gpos.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=filtros-wmi-tpicos-para-ser-usados-en-gpos</link>
		<comments>http://www.cabai.com.ar/2008/07/filtros-wmi-tpicos-para-ser-usados-en-gpos.html#comments</comments>
		<pubDate>Wed, 09 Jul 2008 22:09:32 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Filter]]></category>
		<category><![CDATA[Filtro]]></category>
		<category><![CDATA[GPMC]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[Group Policy]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Políticas]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=518</guid>
		<description><![CDATA[[ad#ad4] Los que trabajamos con dominios basados en Active Directory estamos trabajando continuamente con políticas (GPO). Muchas veces estas políticas no tienen una OU determinada para ser aplicadas o bien tampoco podemos asignarlas utilizando autenticación ya sea de usuario o equipo. Para eso podemos utilizar los filtros WMI dentro de nuestra GPO. WMI (Windows Management [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad4]</div>
<p>Los que trabajamos con dominios basados en Active Directory estamos trabajando continuamente con políticas (GPO). Muchas veces estas políticas no tienen una OU determinada para ser aplicadas o bien tampoco podemos asignarlas utilizando autenticación ya sea de usuario o equipo. Para eso podemos utilizar los filtros WMI dentro de nuestra GPO.   </p>
<p><a href="http://en.wikipedia.org/wiki/Windows_Management_Instrumentation" target="_blank"><strong>WMI</strong></a> (Windows Management Instrumentation), nos va a permitir interactuar con el equipo al que se le aplican las políticas y dependiendo de los filtros que nosotros usemos, decidirá si aplicarla o no. Por ejemplo, supongamos que generamos una política para instalar un Service Pack de Windows, asignamos el MSI a la misma y la aplicamos a toda la OU de equipos de nuestro ambiente. Pero qué pasa si tenemos equipos en nuestro ambiente con poco espacio en disco C como para instalarse el Service Pack, nosotros no queremos que en esos equipos se instale el mismo y tampoco tenemos todo relevado para poder excluir la misma. Para eso usamos un simple filtro WMI que se fije el espacio en disco libre y si supera la cantidad que nosotros designamos se aplique la política o no. <span id="more-518"></span>   </p>
<p>Obviamente para poder manejar fácilmente estos filtros debemos administrar y generar las políticas con la <a href="http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=0a6d4c24-8cbd-4b35-9272-dd3cbfc81887&amp;displaylang=en" target="_blank">GPMC (Group Policy Management Console)</a>. En la misma veremos a la izquierda abajo de todo una carpeta llamada <strong>WMI Filters</strong>. Ahí podemos guardar todos los filtros WMI que nosotros querramos y luego utilizarlos desde las políticas. Cada política puede tener un único filtro WMI asociado, pero ese filtro puede tener varias consultas.    </p>
<p><img title="image" style="border-right: 0px; border-top: 0px; margin: 0px 10px 0px 0px; border-left: 0px; border-bottom: 0px" height="236" alt="image" src="http://www.cabai.com.ar/images/posts/FiltrosWMItpicosparaserusadosenGPOs_7DB/image.png" width="258" align="left" border="0" />Cuando hacemos click derecho con el mouse y elegimos New nos aparece una ventana como la que se muestra a la izquierda.    </p>
<p>Ahí debemos escribir nuestra consulta WMI que mas abajo comento. Una vez escrita toda la consulta hacemos click en Ok y ya va a estar disponible en las políticas para ser seleccionada y utilizada.    <br />&#160; </p>
<p>&nbsp;    <br />&nbsp;    <br />&nbsp;    <br />&nbsp;    <br /><img title="image" style="border-right: 0px; border-top: 0px; margin: 0px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="59" alt="image" src="http://www.cabai.com.ar/images/posts/FiltrosWMItpicosparaserusadosenGPOs_7DB/image_3.png" width="244" align="right" border="0" /> En las políticas tenemos la opción de linkear directamente a un filtro WMI con sólo elegirla desde un menú desplegable. Esta opción aparece cuando hacemos click sobre alguna política.    </p>
<p>Ahora bien, paso a comentar algunos filtros comunes que suelen ser utilizados para políticas de dominio, pero esto es mucho mas poderoso que estos filtros comunes ya que puedes armar el filtro que tu quieras, mientras que el resultado de la consulta no sea un array, porque en ese caso no se tomará en cuenta.    </p>
<p><strong>Filtro WMI para espacio libre en disco:     <br /><font color="#008000">Select * from Win32_LogicalDisk where FreeSpace &gt; 629145600</font>      <br /></strong>El espacio debe estar definido en bytes.    </p>
<p><strong>Filtro WMI según sistema operativo, en este caso Windows XP Pro:     <br /></strong><font color="#008000"><strong>Select * from Win32_OperatingSystem where Caption = &quot;Microsoft Windows XP Professional&quot;       <br /></strong></font>Recomiendo primero probar la consulta en el equipo con el SO destino deseado ya que muchas veces el caption cambia según la versión.    </p>
<p><strong>Filtro WMI según marca y modelo del fabricante:     <br /><font color="#008000">Select * from Win32_ComputerSystem where manufacturer = &quot;Toshiba&quot; and Model = &quot;Tecra 800&quot; OR Model = &quot;Tecra 810&quot;</font></strong>    <br />Nuevamente como en el ejemplo anterior, correrlo localmente para corrobar los datos a utilizar.    </p>
<p><strong>Filtro WMI según nomenclatura de nombre de equipo:     <br /><font color="#008000">Select * from Win32_ComputerSystem where Caption LIKE 'NYC%'</font></strong>    <br />Esto se usa cuando los equipos tienen una nomenclatura por ejemplo para la oficina u otro motivo y podemos utilizarlo a nuestro gusto.    </p>
<p><strong>Filtro WMI para corroborar la existencia de algún producto:     <br /><font color="#008000">Select * from Win32_Product where name = &quot;MSIPackage1&quot;</font></strong>    </p>
<p><strong>Filtro WMI según algun parche instalado en el equipo destino:     <br /><font color="#008000">Select * from Win32_QuickFixEngineering where HotFixID = 'KB950760'</font></strong>    <br />Aquí incluso podemos utilizar el OR al final para agregar mas de un hotfix.    </p>
<p><strong>Filtro WMI según la zona horaria del equipo:     <br /><font color="#008000">Select * from win32_timezone where bias =-180</font></strong>    <br />Ejecutarlo localmente en algún equipo con la zona horaria deseada para conocer el ID de la misma que se debe introducir al final de la consulta.    </p>
<p>Como ven las posibilidades son infinitas. En este caso puse los filtros mas comunes pero cada uno puede armar su propio filtro según su necesidad.    </p>
<p>Para las pruebas locales recomiendo utilizar el prodcuto de Microsoft <a href="http://www.microsoft.com/downloads/details.aspx?familyid=2CC30A64-EA15-4661-8DA4-55BBC145C30E&amp;displaylang=en" target="_blank">WMI Code Creator</a>, donde podrán dar rienda suelta a su imaginación y armar el filtro que deseen.    </p>
<p>Si queres armar un filtro de algún parámetro en especial y no te funciona no dudes en dejar un comentario o la consulta y lo vemos juntos.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2008/07/filtros-wmi-tpicos-para-ser-usados-en-gpos.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sysinternals Live !! No hace falta descargar las herramientas !!</title>
		<link>http://www.cabai.com.ar/2008/05/sysinternals-live-no-hace-falta-descargar-las-herramientas.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sysinternals-live-no-hace-falta-descargar-las-herramientas</link>
		<comments>http://www.cabai.com.ar/2008/05/sysinternals-live-no-hace-falta-descargar-las-herramientas.html#comments</comments>
		<pubDate>Thu, 29 May 2008 22:32:43 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Utilidades]]></category>
		<category><![CDATA[Comandos]]></category>
		<category><![CDATA[Herramientas]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Sysinternals]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=425</guid>
		<description><![CDATA[[ad#ad2] As&#237; es, estoy emocionado el encontrar esta informaci&#243;n ya que ahora podemos ejecutar las herramientas de Sysinternals directamente desde la web. Si no sabes que son las herramientas de Sysinternals recuerda que ya he comentado algunas en este Blog, podes encontrar los art&#237;culos haciendo una b&#250;squeda de &#34;sysinternals&#34; desde el formulario de la derecha. [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad2]</div>
<p>As&#237; es, estoy emocionado el encontrar esta informaci&#243;n ya que ahora podemos ejecutar las herramientas de Sysinternals directamente desde la web. Si no sabes que son las herramientas de Sysinternals recuerda que ya he comentado algunas en este Blog, podes encontrar los art&#237;culos haciendo una b&#250;squeda de &quot;<a href="http://www.cabai.com.ar/?s=sysinternals&amp;x=0&amp;y=0">sysinternals</a>&quot; desde el formulario de la derecha.     </p>
<p>Desde el <a href="http://blogs.technet.com/sysinternals/archive/2008/05/28/updates-process-explorer-v11-20-zoomit-v2-0-sigcheck-v1-53-handle-v3-4-and-introducing-sysinternals-live-beta.aspx" target="_blank">Blog de Sysinternals</a> anunciaron algunas actualizaciones a sus herramientas como as&#237; tambi&#233;n la posibilidad de utilizarlas Live!.     <br />C&#243;mo funciona? F&#225;cil, simplemente acced&#233; a la URL <a title="http://live.sysinternals.com/" href="http://live.sysinternals.com/" target="_blank">http://live.sysinternals.com/</a> y vas a encontrar todas las herramientas listadas. Para poder utilizarlas debes ejecutar directamente desde &quot;Ejecutar&quot; o &quot;Run&quot; en el men&#250; Inicio de Windows o bien desde una l&#237;nea de comandos &quot;<strong>\\live.sysinternals.com\tools\&lt;herramienta&gt;&quot;</strong>.    <span id="more-425"></span> </p>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 10px 0px 0px; border-right-width: 0px" height="105" alt="image" src="http://www.cabai.com.ar/images/posts/SysinternalsLiveNohacefaltadescargarlash_9A85/image.png" width="129" align="left" border="0" /> Por ejemplo, supongamos que ejecutamos desde el Run de Windows el comando http://live.sysinternals.com/Tools/Tcpview.exe para conocer las conexiones de nuestro equipo. Podremos abrir la aplicaci&#243;n sin necesidad de bajarla, descomprimirla, etc.     </p>
<p>As&#237; como esta herramienta podremos ejecutar toda la gama de utilidades de Sysinternals que tanto nos sirven a la hora de soportar equipos Windows.     </p>
<p>Algunas de estas herramientas se pueden utilziar en scripts para automatizar tareas. Lejos es uno de los packs de herramientas mas completo para Windows, sin contar los Resource Kits, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2008/05/sysinternals-live-no-hace-falta-descargar-las-herramientas.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WSUS y PowerShell ??</title>
		<link>http://www.cabai.com.ar/2008/05/wsus-y-powershell.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wsus-y-powershell</link>
		<comments>http://www.cabai.com.ar/2008/05/wsus-y-powershell.html#comments</comments>
		<pubDate>Sat, 24 May 2008 22:19:58 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[WSUS]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft Update]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Updates]]></category>
		<category><![CDATA[Windows Update]]></category>
		<category><![CDATA[WSUS 3.0]]></category>
		<category><![CDATA[WSUS 3.0 SP1]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/?p=404</guid>
		<description><![CDATA[[ad#ad4] Si es posible. Gracias a un art&#237;culo en el Blog de Daniel Matey encuentro la posibilidad de utilizar PowerShell para obtener informaci&#243;n, cambiar datos y trabajar con el WSUS. En su art&#237;culo comenta la posibilidad de utilizar este gran sistema de automatizaci&#243;n llamado PowerShell (he comentado sobre esto antes en este sitio, mas que [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 10px 2px 0; float:left">[ad#ad4]</div>
<p>Si es posible. Gracias a un art&#237;culo en el Blog de <a href="http://geeks.ms/blogs/dmatey" target="_blank">Daniel Matey</a> encuentro la posibilidad de utilizar <a href="http://en.wikipedia.org/wiki/Powershell" target="_blank">PowerShell</a> para obtener informaci&#243;n, cambiar datos y trabajar con el WSUS. En su art&#237;culo comenta la posibilidad de utilizar este gran sistema de automatizaci&#243;n llamado PowerShell (he comentado sobre esto antes en este sitio, mas que nada en la parte de Exchange 2007) para poder hacer tareas en el WSUS.    </p>
<p>Link | <a href="http://geeks.ms/blogs/dmatey/archive/2007/05/06/un-vistazo-r-225-pido-a-wsus-3-0-y-powershell.aspx" target="_blank">Un vistazo r&#225;pido a WSUS 3.0 y PowerShell</a>    </p>
<p>En el post explica c&#243;mo conectar PowerShell con el API de WSUS 3.0 para luego obtener o modificar la informaci&#243;n que querramos.   <span id="more-404"></span> </p>
<p>Lo bueno de PowerShell es que podemos automatizar el script, as&#237; que todo lo que nos permita hacer PowerShell ser&#225; programable y podremos ahorrar much&#237;simo tiempo de administraci&#243;n. Algunas de las tareas que nos dejar&#225; ejecutar:    </p>
<p>CancelAllDownloads    <br />ExportUpdates    <br />GetCleanupManager    <br />GetComputerStatus&#160; <br />GetConfiguration    <br />GetDatabaseConfiguration    <br />GetInventory    <br />[...]    </p>
<p>Ahora que sabemos como conectar PowerShell y WSUS en breve voy a publicar algunos scripts que ayuden a automatizar las tareas diarias. Te propongo que te suscribas desde la barra de la derecha para poder tener los art&#237;culos al d&#237;a en tu correo o lector de noticias favorito.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2008/05/wsus-y-powershell.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cambio de Hora en Chile &#124; Marzo 2008</title>
		<link>http://www.cabai.com.ar/2008/03/cambio-de-hora-en-chile-marzo-2008.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cambio-de-hora-en-chile-marzo-2008</link>
		<comments>http://www.cabai.com.ar/2008/03/cambio-de-hora-en-chile-marzo-2008.html#comments</comments>
		<pubDate>Tue, 04 Mar 2008 14:58:00 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Server Core]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[Chile]]></category>
		<category><![CDATA[Daylight]]></category>
		<category><![CDATA[DST]]></category>
		<category><![CDATA[GPO]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/2008/03/04/cambio-de-hora-en-chile-marzo-2008/</guid>
		<description><![CDATA[Como algunos de ustedes saben, este mes debería cambiar la hora de Chile automáticamente por el "horario de verano". Lamentablemente los gobiernos no se cansan de cambiar las fechas del cambio de hora por mas que las zonas ya estén definidas. No se dan cuenta que a nivel de software y tecnología es un verdadero [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none ; margin: 0px 5px 0px 0px;" alt="kworldclock" src="http://www.cabai.com.ar/images/posts/CambioHoraChileMarzo2008/kworldclock%5B6%5D.png" align="left" border="0" height="125" width="125" /> Como algunos de ustedes saben, este mes debería cambiar la hora de Chile automáticamente por el "horario de verano". Lamentablemente los gobiernos no se cansan de cambiar las fechas del cambio de hora por mas que las zonas ya estén definidas. No se dan cuenta que a nivel de software y tecnología es un verdadero trastorno cuando toman esa decisión y como si un par de días mas o menos realmente fuese a cambiar el ahorro energético.   </p>
<p>Bueno, ya basta de quejarme y a ponerme a trabajar porque el cambio de hora de Chile se corrió del 8 de Marzo, al 29 de Marzo a las 23:59:59. Microsoft generalmente distribuye parches o hotfixes para solucionar estos temas, pero no puede estar haciendo un hotfix cada vez que al gobierno se le ocurre cambiar la fecha estipulada en la zona horaria. Ya nos pasó hace poco en Argentina que avisaron una semana antes del cambio.   </p>
<p>Como no tenemos nada entregado por parte de Microsoft, les voy a decir cómo hacerlo en forma manual y en forma automática modificando el registro de Windows. De esta manera podrán tener los equipos de Chile actualizados con el nuevo cambio de horario.  <span id="more-188"></span> </p>
<p>La actualización de la zona horaria puede hacerse en forma manual con la herramienta <a href="http://download.microsoft.com/download/5/8/a/58a208b7-7dc7-4bc7-8357-28e29cdac52f/tzedit.exe">TZedit.exe</a> y modificar las fechas manualmente. Esta es la opción mas molesta. Otra opción es ejecutando un archivo .reg con todos los parámetros de la nueva zona.   </p>
<p>Mas abajo voy a dejar un ZIP con todos los archivos comentados en este post, pero si queres ir ejecutando los pasos deberías abrir un notepad, copiar el siguiente contenido, pegarlo en el notepad y luego guardar el archivo con un nombre cualquiera, por ejemplo <strong>TZUpdateChile.reg    <br /></strong>   <br /><u>TZUpdateChile.reg:</u></p>
<pre class="csharpcode">Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones\Pacific SA Standard Time]
"Display"="(GMT-04:00) Santiago"
"Dlt"="Pacific SA Daylight Time"
"Std"="Pacific SA Standard Time"
"MapID"="-1,82"
"Index"=dword:00000038
"TZI"=hex:f0,00,00,00,00,00,00,00,c4,ff,ff,ff,00,00,03,00,06,00,05,00,17,00,3b,\ 00,3b,00,00,00,00,00,0a,00,06,00,02,00,17,00,3b,00,3b,00,00,00</pre>
<p>
Si lo ejecutamos localmente y aceptamos las ventanas de advertencia del sistema operativo ya nos va a actualizar la zona de Santiago para que el <u>cambio de hora de verano sea el último Sábado de Marzo</u> en vez del segundo como estaba antes.
<p>Podemos verificarlo si abrimos nuevamente el TZedit.exe, ahí nos va a mostrar la nueva fecha para el cambio de hora.</p>
<p><u>IMPLEMENTACIÓN AUTOMÁTICA POR GPO:</u></p>
<p>Otro punto importante es cómo hacemos en un enterprise para hacer un deploy masivo de esta modificación en todos los equipos. Sería muy útil, de otra manera deberíamos pasar equipo por equipo.</p>
<p>Para esto, vamos a necesitar el archivo que creamos antes (TZUpdateChile.reg) y un par de archivos mas. Como segundo archivo vamos a crear un VBS para que actualice la zona horaria luego de modificarla. De esa manera nos aseguramos que el sistema operativo tome los nuevos parámetros. A veces no es necesario pero otras si, por eso nos conviene hacerlo ya que no nos complica para nada.</p>
<p>Nuevamente abrimos el notepad.exe, copiamos el siguiente código, lo pegamos en el notepad y lo guardamos como <strong>refreshTZInfo.vbs</strong>.</p>
<p><u>refreshTZInfo.vbs:</u></p>
<pre class="csharpcode"><span class="kwrd">Set</span> objSh = CreateObject(<span class="str">"WScript.Shell"</span>)

<span class="rem">'Get the StandardName key of the current time zone</span>
szStandardName = objSh.RegRead(<span class="str">"HKLM\SYSTEM\CurrentControlSet\Control\TimeZoneInformation\StandardName"</span>)

<span class="rem">'Enumerate the subkeys in the time zone database</span>
<span class="kwrd">const</span> HKEY_LOCAL_MACHINE = &amp;H80000002
<span class="kwrd">Set</span> objReg=GetObject(<span class="str">"winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv"</span>)
szTzsKeyPath = <span class="str">"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones"</span>
objReg.EnumKey HKEY_LOCAL_MACHINE, szTzsKeyPath, arrTzSubKeys

<span class="rem">'Step through the time zones to find the matching Standard Name</span>
szTzKey = <span class="str">"&lt;Unknown&gt;"</span>
<span class="kwrd">For</span> <span class="kwrd">Each</span> subkey <span class="kwrd">In</span> arrTzSubKeys
   <span class="kwrd">If</span> (objSh.RegRead(<span class="str">"HKLM\"</span> &amp; szTzsKeyPath &amp; <span class="str">"\"</span> &amp; subkey &amp; <span class="str">"\Std"</span>) = szStandardName) <span class="kwrd">Then</span>
       <span class="rem">'Found matching StandardName, now store this time zone key name</span>
       szTzKey = subkey
   <span class="kwrd">End</span> <span class="kwrd">If</span>
<span class="kwrd">Next</span>

<span class="kwrd">If</span> szTzKey = <span class="str">"&lt;Unknown&gt;"</span> <span class="kwrd">Then</span>
      <span class="rem">'Write entry to the Application event log stating that the update has failed to execute</span>
      objSh.LogEvent 1, <span class="str">"DST 2007 Registry Update and Refresh failed to execute on this computer.  Time zones failed to enumerate properly or matching time zone not found."</span>
      Wscript.Quit 0
<span class="kwrd">End</span> <span class="kwrd">If</span>

<span class="kwrd">Dim</span> process, processid, result, strUpdateCommand
<span class="kwrd">Set</span> process = GetObject(<span class="str">"winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2:Win32_process"</span>)

<span class="rem">'Add time change privilege to the process object</span>
process.Security_.Privileges.AddAsString <span class="str">"SeSystemTimePrivilege"</span>,<span class="kwrd">True</span>
strUpdateCommand = <span class="str">"control.exe timedate.cpl,,/Z"</span> &amp; szTzKey

<span class="rem">'Launch control.exe to refresh time zone information using the TZ key name obtained above </span>
result = process.create(strUpdateCommand,Null,Null,processid)
<span class="kwrd">If</span> result &lt;&gt; 0 <span class="kwrd">Then</span>
   objSh.LogEvent 1, <span class="str">"DST 2007 Registry Update and Refresh failed to execute on this computer.  Unable to refresh the Timezone database."</span>
   Wscript.Quit 0
<span class="kwrd">End</span> <span class="kwrd">If</span>

<span class="rem">'Get current display name of refreshed time zone</span>
szCurrDispName = objSh.RegRead(<span class="str">"HKLM\"</span> &amp; szTzsKeyPath &amp; <span class="str">"\"</span> &amp; szTzKey &amp; <span class="str">"\Display"</span>)

<span class="rem">'Write entry to the Application event log stating that the update has executed</span>
objSh.LogEvent 4, <span class="str">"DST 2007 Registry Update and Refresh has been executed on this computer."</span> &amp; chr(13) &amp; chr(10) &amp; chr(13) &amp; chr(10) &amp; <span class="str">"Current time zone is: "</span> &amp; szCurrDispName &amp; <span class="str">"."</span></pre>
<p>
Listo los dos archivos que necesitamos para hacer el deploy, sólo nos falta uno y es el que ejecuta ambos desde la GPO o política del dominio. Para esto volvemos a abrir el notepad y hacemos los mismos pasos que antes pero con el siguiente código y lo llamamos <strong>TZUpdateChile.cmd</strong>.
<p><u>TZUpdateChile.cmd:</u></p>
<pre class="csharpcode">@echo off
regedit /s \\contoso\NETLOGON\TZUpdateChile.reg
cscript \\contoso\NETLOGON\refreshTZInfo.vbs</pre>
<p>Tengan en cuenta donde dice <u>\\contoso</u> que deben modificarlo por su propio dominio y los archivos deben estar copiados en esa ruta. Si los copiaron en otra ruta alternativa dentro de NETLOGON deben especificarla aquí. Si los copiaron en otra ruta alternativa deben asegurarse que el grupo "Authenticated Users" tenga permisos de lectura. La ruta NETLOGON puede ubicarse dentro del Domain Controller de su dominio bajo C:\WINDOWS\SYSVOL\domain\scripts. La unidad C: puede cambiar según instalaciones, incluso puede no estar dentro del directorio WINDOWS. Esa ubicación es por defecto en una instalación de Windows como Domain Controller.
<p>
<div style="margin:2px 0 2px 10px; float:right">[ad#ad2]</div>
<p><u>GPO:</u></p>
<p>Como último paso debemos crear la política o GPO. Para esto podemos utilizar la herramienta "<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=0A6D4C24-8CBD-4B35-9272-DD3CBFC81887&amp;displaylang=en" target="_blank">Group Policy Management Console</a>". Creamos una nueva política, ponemos un nombre que nos guste como <strong>DST Chile Update</strong> y luego hacemos click derecho "Edit".<br />Ahí navegamos hasta <strong>Computer Configuration -&gt; Windows Settings -&gt; Scripts (Startup/Shutdown)<br /></strong>Hacemos doble click sobre <strong>Startup</strong> y luego hacemos click en <strong>Add.</strong></p>
<p>Donde nos pide el nombre (Name) debemos escribir la ruta completa donde tenemos el archivo TZUpdateChile.cmd que también debe ser copiado al netlogon junto con los anteriores, por ende en este caso sería <strong>\\contoso.com\NETLOGON\TZUpdateChile.cmd</strong>.<br />Hacemos click en Ok hasta cerrar la política y por último nos queda aplicarla a la OU que contenga los equipos que queremos modificar. Si queremos que aplique a toda la compañía podemos aplicarla a nivel dominio.</p>
<p>Listo, eso es todo, ahora podemos relajarnos que los equipos no se nos van a cambiar de horario antes de lo que dispuso el gobierno. Ojo, tal vez cambien de día nuevamente jaja así que estate atento.</p>
<p>Links útiles:</p>
<p><a href="http://blogs.technet.com/dst2007/default.aspx" target="_blank">Microsoft Daylight Saving Time &amp; Time Zone FAQs Blog</a><br /><a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;914387" target="_blank">How to configure daylight saving time for Microsoft Windows operating systems</a><br /><a href="http://support.microsoft.com/gp/cp_dst" target="_blank">Daylight Saving Time Help and Support Center</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2008/03/cambio-de-hora-en-chile-marzo-2008.html/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Identificando Cuentas de Equipos Inactivas en AD</title>
		<link>http://www.cabai.com.ar/2007/12/identificando-cuentas-de-equipos.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=identificando-cuentas-de-equipos</link>
		<comments>http://www.cabai.com.ar/2007/12/identificando-cuentas-de-equipos.html#comments</comments>
		<pubDate>Wed, 26 Dec 2007 13:36:00 +0000</pubDate>
		<dc:creator>Diego Cabai</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Comandos]]></category>
		<category><![CDATA[MVP]]></category>

		<guid isPermaLink="false">http://www.cabai.com.ar/2007/12/26/identificando-cuentas-de-equipos-inactivas-en-ad/</guid>
		<description><![CDATA[[ad#ad2] Ultimamente me consultaron c&#243;mo identificar las cuentas de equipos inactivas en un dominio Active Directory. Muchas veces el personal de soporte agrega o quita equipos del dominio pero no depura las cuentas viejas o no las borra una vez que la m&#225;quina tuvo un problema o se di&#243; de baja, etc. Esto lleva a [...]]]></description>
			<content:encoded><![CDATA[<p>
<div style="margin:0 0 2px 10px; float:right">[ad#ad2]</div>
<p><img style="border-right: 0px; border-top: 0px; margin: 0px 5px 0px 0px; border-left: 0px; border-bottom: 0px" height="100" alt="demo" src="http://www.cabai.com.ar/images/posts/IdentificandoCuentasEquiposInactivasAD/demo%5B6%5D.png" width="100" align="left" border="0" /> Ultimamente me consultaron c&#243;mo identificar las cuentas de equipos inactivas en un dominio Active Directory. Muchas veces el personal de soporte agrega o quita equipos del dominio pero no depura las cuentas viejas o no las borra una vez que la m&#225;quina tuvo un problema o se di&#243; de baja, etc. Esto lleva a que existan muchos objetos de computadora que ya no se utilizan y su &#250;nico prop&#243;sito es ensuciar el AD. La unica forma de identificar estas cuentas es por su inactividad y luego depurarlas elimin&#225;ndolas. En este caso son unas 8 mil cuentas inactivas de computadoras as&#237; que es una gran depuraci&#243;n.    </p>
<p>Para esta tarea nos podemos ayudar con un par de comandos o como deben conocer tambi&#233;n hay algunas herramientas gr&#225;ficas que pueden servir. El primero de los comandos es de gran sitio <a href="http://www.joeware.net" target="_blank">joeware.net</a> con excelentes herramientas desarrolladas por MVPs. En este sitio existe una gran cantidad de comandos y herramientas muy &#250;tiles para el d&#237;a a d&#237;a, entre ellas se encuentra OldCmp.  <span id="more-141"></span>  </p>
<p><strong>OldCmp</strong>: Sirve &#250;nicamente para buscar y limpiar el AD de cuentas de computadoras viejas. Muy &#250;til, funciona perfectamente con AD, se puede hacer un reporte, se debe deshabilitar primero y luego eliminar. Por default saca un reporte de m&#225;quinas de mas de 90 d&#237;as de inactividad. (La mas recomendada de las soluciones)&#160; <a title="Bajar OldCmp.exe" href="http://www.joeware.net/freetools/tools/oldcmp/index.htm" target="_blank">Bajar esta herramienta</a>    </p>
<p>Luego nos podemos topar con el sitio de Richard Mueller, otro MVP con excelentes herramientas y utilidades en <a href="http://www.rlmueller.net/" target="_blank">Hilltop Lab</a>. En este caso nos encontramos con un VBS que b&#225;sicamente hace la misma tarea que el comando anterior, pero un poco mas limitada.    </p>
<p><strong>MoveOldComputers.vbs</strong>: Busca en el AD a trav&#233;s de consultas LDAP por el atributo del cambio de password de la cuenta de m&#225;quina y se procesa el resultado.&#160; <a title="Bajar MoveOldComputers.vbs" href="http://www.rlmueller.net/MoveOldComputers.htm" target="_blank">Bajar esta herramienta</a>    </p>
<p>Como &#250;tlima opci&#243;n podemos usar una herramienta gr&#225;fica para que nos asista, que en realidad es un scripting con salida gr&#225;fica, no mas que eso. No es una utilidad muy robusta pero <a href="http://www.absolutedynamics.com/inactive-computers/product.htm" target="_blank">Inactive Computers for Active Directory</a> de <a href="http://www.absolutedynamics.com" target="_blank">Absolute Dynamics</a> nos puede ayudar. Nos muestra una ventana gr&#225;fica con el resultado de la b&#250;squeda que hagamos, con la cantidad de d&#237;as de inactividad, el sistema operativo reportado, el objecto LDAP y una serie de botones desde donde podemos deshabilitar la cuenta, borrarla, moverla, etc. Si bien para algunos les resultar&#225; mucho mas f&#225;cil esta soluci&#243;n, sigo recomendando los comandos anteriores por el origen de los mismos y no una aplicaci&#243;n cerrada.    </p>
<p>Espero que si estabas buscando eliimnar cuentas de PC inactivas en Active Directory, con estas herramientas puedas solucionar tu problema.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cabai.com.ar/2007/12/identificando-cuentas-de-equipos.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.cabai.com.ar @ 2012-02-09 10:29:57 -->
