<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type='text/xsl' href='http://sedelrio.spaces.live.com/mmm2008-07-24_12.50/rsspretty.aspx?rssquery=en-US;http%3a%2f%2fsedelrio.spaces.live.com%2ffeed.rss' version='1.0'?><rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:msn="http://schemas.microsoft.com/msn/spaces/2005/rss" xmlns:live="http://schemas.microsoft.com/live/spaces/2006/rss" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:cf="http://www.microsoft.com/schemas/rss/core/2005" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Sebastian del Rio</title><description /><link>http://sedelrio.spaces.live.com/</link><language>en-US</language><pubDate>Wed, 06 Aug 2008 20:45:41 GMT</pubDate><lastBuildDate>Wed, 06 Aug 2008 20:45:41 GMT</lastBuildDate><generator>Microsoft Spaces v1.1</generator><docs>http://www.rssboard.org/rss-specification</docs><ttl>60</ttl><live:identity><live:id>-7495334125223653715</live:id><live:alias>sedelrio</live:alias></live:identity><cf:listinfo><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="typelabel" label="Type" /><cf:group ns="http://schemas.microsoft.com/live/spaces/2006/rss" element="tag" label="Tag" /><cf:group element="category" label="Category" /><cf:sort element="pubDate" label="Date" data-type="date" default="true" /><cf:sort element="title" label="Title" data-type="string" /><cf:sort ns="http://purl.org/rss/1.0/modules/slash/" element="comments" label="Comments" data-type="number" /></cf:listinfo><item><title>Abrir .evt de Windows 2003 en Windows Vista</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!554.entry</link><description>&lt;pre&gt; &lt;/pre&gt;&lt;pre&gt;Por si en algun momento lo intentan se encontraran con algun que otro &lt;br&gt;incoveniente para visualizar un .evt exportado de Windows 2003 en un Windows Vista.&lt;br&gt;En el siguiente link se muestran varias soluciones aunque creo la mejor es utilizar&lt;br&gt;el Script abajo mencionado , ya que nos generara una opcion en el menu Contextual.&lt;br&gt;&lt;br&gt;&lt;/pre&gt;&lt;pre&gt;&lt;a title="http://blogs.technet.com/askperf/archive/2007/10/12/windows-vista-and-exported-event-log-files.aspx" href="http://blogs.technet.com/askperf/archive/2007/10/12/windows-vista-and-exported-event-log-files.aspx"&gt;Aqui esta el Link&lt;/a&gt;&lt;/pre&gt;&lt;pre&gt; &lt;/pre&gt;&lt;pre&gt;'==========================================================================
'
' NAME: ConvertEVTtoEVTX.vbs
'
' AUTHOR: Steve Paruszkiewicz, Microsoft
' DATE  : 10/04/2007
'
' COMMENT:  Adds &amp;quot;Convert to .EVTX&amp;quot; to the shell context menu for .evt files
'            calls wevtutil to convert evt file for use on Vista/Longhorn
'             then opens the converted .evtx file in event viewer
'
'            If you would later like to remove the Convert to .EVTX context
'            menu option you can delete the following registry key
'            &amp;quot;HKEY_CLASSES_ROOT\evtfile\shell\Convert to .EVTX\&amp;quot;
'==========================================================================
Option Explicit
Const LAST_MODIFIED = &amp;quot;10/11/2007&amp;quot;
Const AUTO_OPEN_EVTX = True            
'Set this to False if you want to be prompted to open the converted file instead of &lt;br&gt;'opening autmatically


'On Error Resume Next
CheckReg()                                                
'Check to see if script is already registered - NEEDS ADMIN TOKEN ON VISTA


If WScript.Arguments.Count &amp;lt; 1 Then ExitScript(&amp;quot;** No File Argument Specified **&amp;quot; &amp;amp; VbCrLf &amp;amp; _ 
 &amp;quot;Script Exiting...&amp;quot; &amp;amp; VbCrLf &amp;amp; VbCrLf &amp;amp; &amp;quot;Convert to .EVTX has been added to the context menu&amp;quot;)

Dim strInputFile : strInputFile = WScript.Arguments(0)

ConvertEvtToEVTx(strInputFile)



'************************   Subs and Functions ****************************
Sub ConvertEvtToEVTx(strFileName)
    Dim Shell : Set Shell = CreateObject(&amp;quot;Wscript.Shell&amp;quot;)
    Dim FSO : Set FSO = CreateObject(&amp;quot;Scripting.FileSystemObject&amp;quot;)
    Dim strCommand, ret, shortname
    
    If Not(FSO.FileExists(strFileName &amp;amp; &amp;quot;x&amp;quot;)) Then
        
        strCommand = &amp;quot;wevtutil export-log &amp;quot;&amp;quot;&amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;&amp;quot;&amp;quot; &amp;quot;&amp;quot;&amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;x&amp;quot;&amp;quot; /lf&amp;quot;
    
        WScript.Echo &amp;quot;Converting &amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;  to .EVTX file&amp;quot;
    
        Shell.Run strCommand,0,True
    
    Else
        shortname = Right(strFileName,Len(strFileName)-InStrRev(strFilename,&amp;quot;\&amp;quot;))
        ret = MsgBox (&amp;quot;The file: &amp;quot; &amp;amp; shortname &amp;amp; &amp;quot;x&amp;quot; &amp;amp; VbCrLf &amp;amp; VbCrLf &amp;amp; &amp;quot;Already Exists.&amp;quot; &amp;amp; VbCrLf &amp;amp; _ 
                       &amp;quot;Would you like to overwrite it?&amp;quot;,vbYesNo+vbInformation,&amp;quot;File exists&amp;quot;)

        If ret = vbYes Then
            strCommand = &amp;quot;wevtutil export-log &amp;quot;&amp;quot;&amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;&amp;quot;&amp;quot; &amp;quot;&amp;quot;&amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;x&amp;quot;&amp;quot; /lf /ow:true&amp;quot;
            WScript.Echo &amp;quot;Converting &amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;  to .EVTX file&amp;quot;
    
            Shell.Run strCommand,0,True
    
        Else
            WScript.Echo &amp;quot;File already exists:  Skipping conversion.&amp;quot;
        End If
    
    End If    
    
    WScript.Echo &amp;quot;WEvtUtil Command Done.&amp;quot;
    
    If AUTO_OPEN_EVTX Then
    
        If fso.FileExists(strFileName &amp;amp; &amp;quot;x&amp;quot;) Then 
            Shell.Run &amp;quot;eventvwr.exe /l:&amp;quot;&amp;quot;&amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;x&amp;quot;&amp;quot;&amp;quot;
        Else
            MsgBox &amp;quot;The EVTX file: &amp;quot; &amp;amp; strFileName &amp;amp; VbCrLf &amp;amp; VbCrLf &amp;amp; &amp;quot;Could not be created. &amp;quot; &amp;amp; VbCrLf &amp;amp; _ 
            &amp;quot; Please check drive space and permissions on the target folder.&amp;quot; &amp;amp; VbCrLf &amp;amp; VbCrLf &amp;amp; &amp;quot;Script Exiting...&amp;quot; _ 
            ,vbOKOnly+vbExclamation,&amp;quot;Error&amp;quot;
            WScript.Quit
        End If     
        
    Else
        ret = MsgBox (&amp;quot;Would you like to open the .EVTX file now?&amp;quot;,vbYesNo+vbInformation,&amp;quot;Conversion complete.&amp;quot;)
        If ret = vbYes then
            
            If fso.FileExists(strFileName &amp;amp; &amp;quot;x&amp;quot;) Then 
                Shell.Run &amp;quot;eventvwr.exe /l:&amp;quot;&amp;quot;&amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;x&amp;quot;&amp;quot;&amp;quot;
            Else
                MsgBox &amp;quot;The EVTX file: &amp;quot; &amp;amp; strFileName &amp;amp; VbCrLf &amp;amp; VbCrLf &amp;amp; &amp;quot;Could not be created. &amp;quot; &amp;amp; VbCrLf &amp;amp; _ 
                &amp;quot; Please check drive space and permissions on the target folder.&amp;quot; &amp;amp; VbCrLf &amp;amp; VbCrLf &amp;amp; &amp;quot;Script Exiting...&amp;quot; _ 
                ,vbOKOnly+vbExclamation,&amp;quot;Error&amp;quot;
                WScript.Quit
            End If     
            
            Shell.Run &amp;quot;eventvwr.exe /l:&amp;quot;&amp;quot;&amp;quot; &amp;amp; strFileName &amp;amp; &amp;quot;x&amp;quot;&amp;quot;&amp;quot;
            
        Else
        
            WScript.Quit
            
        End If
    End If
            
End Sub 



'*** Checks to see if script has already registered right-click menu entries
Function CheckReg()
    On Error Resume next
    Dim retval, Shell : Set Shell = CreateObject(&amp;quot;WScript.Shell&amp;quot;)
    retval = Shell.RegRead(&amp;quot;HKEY_CLASSES_ROOT\evtfile\shell\Convert to .EVTX\command\&amp;quot;)
    
    If Err.Number &amp;lt;&amp;gt; 0 Then
        'WScript.Echo Err.Description &amp;amp; &amp;quot;  &amp;quot; &amp;amp; Err.Number
        Err.Clear
        AddSelfToReg()                                                    
'adds ability to run from context menu

    End If
End Function

Sub AddSelfToReg()
    ElevateThisScript()
    On Error Resume Next
    Dim strCommand, Shell
    
    Set Shell = CreateObject(&amp;quot;WScript.Shell&amp;quot;)
    If IsWin64bit() Then
        'Use 32-bit wscript.exe to overcome problems creating excel.application object when passing in a file on x64
        strCommand = Shell.ExpandEnvironmentStrings(&amp;quot;%systemroot%&amp;quot;) &amp;amp; &amp;quot;\SysWOW64\cscript.exe &amp;quot;&amp;quot;&amp;quot; &amp;amp; _
        WScript.ScriptFullName &amp;amp; &amp;quot;&amp;quot;&amp;quot; &amp;quot;&amp;quot;%1&amp;quot;&amp;quot;&amp;quot;
    Else
        strCommand = Shell.ExpandEnvironmentStrings(&amp;quot;%systemroot%&amp;quot;) &amp;amp; &amp;quot;\System32\cscript.exe &amp;quot;&amp;quot;&amp;quot; &amp;amp; _
        WScript.ScriptFullName &amp;amp; &amp;quot;&amp;quot;&amp;quot; &amp;quot;&amp;quot;%1&amp;quot;&amp;quot;&amp;quot;
    End If
    
    Shell.RegWrite &amp;quot;HKEY_CLASSES_ROOT\evtfile\shell\Convert to .EVTX\command\&amp;quot;,strCommand,&amp;quot;REG_SZ&amp;quot;
        
    If Err.Number &amp;lt;&amp;gt; 0 Then
            ExitScript(&amp;quot;Unable to write to HKEY_CLASSES_ROOT &amp;quot; &amp;amp; VbCrLf &amp;amp; _
            &amp;quot;This Script may need to be run with a full administrative token once to register context menu entries.&amp;quot;)
    End If
End Sub

Function IsWin64bit()
    On Error Resume Next
    Dim fso : Set fso = CreateObject(&amp;quot;Scripting.FileSystemObject&amp;quot;)
    Dim shell : Set shell = CreateObject(&amp;quot;wscript.shell&amp;quot;)
    Dim Windir : Windir = shell.ExpandEnvironmentStrings(&amp;quot;%SYSTEMROOT%&amp;quot;)
    If fso.FolderExists(Windir &amp;amp; &amp;quot;\SysWOW64&amp;quot;) Then
        IsWin64bit = True
    Else
        IsWin64bit = False
    End If
End Function

Sub ExitScript(ByVal MSG)
  Msg = Msg &amp;amp; VbCrLf
  Msg = Msg &amp;amp; &amp;quot;_______________________________________________________&amp;quot; &amp;amp; vbCrLf 
  Msg = Msg &amp;amp; &amp;quot;VBS script created by Steve Paruszkiewicz. Last modified on: &amp;quot; &amp;amp; LAST_MODIFIED &amp;amp; vbCrLf &amp;amp; VbCrLf
  DisplayMsg(Msg)
  wscript.quit   
End Sub

Sub DisplayMsg(Msg)
      On error resume Next
    Msgbox Msg
End Sub

'*********************************************************************************
'    Subroutine: ElevateThisScript()    
'
'    Author: Steve Paruszkiewicz, Microsoft
'    Last Modified:  August 2, 2007
'    
'    Purpose: (Intended for Vista and Windows Server 2008)
'    Forces the currently running script to prompt for UAC elevation if it detects
'    that the current user credentials do not have administrative priviliges
'
'    If run on Windows XP this script will cause the RunAs dialog to appear if the user
'    does not have administrative rights, giving the opportunity to run as an administrator  
'
'    This Sub Attempts to call the script with its original arguments.  Arguments that contain a space
'    will be wrapped in double quotes when the script calls itself again.
'
'    Usage:  Add a call to this sub (ElevateThisScript) to the beginning of your script to ensure
'            that the script gets an administrative token
'**********************************************************************************        
Sub ElevateThisScript()
    
    Const HKEY_CLASSES_ROOT  = &amp;amp;H80000000
    Const HKEY_CURRENT_USER  = &amp;amp;H80000001
    Const HKEY_LOCAL_MACHINE = &amp;amp;H80000002
    Const HKEY_USERS         = &amp;amp;H80000003
    const KEY_QUERY_VALUE      = 1
    Const KEY_SET_VALUE          = 2

    Dim scriptEngine, engineFolder, argString, arg, Args, scriptCommand, HasRequiredRegAccess
    Dim objShellApp : Set objShellApp = CreateObject(&amp;quot;Shell.Application&amp;quot;)
        
    
    scriptEngine = Ucase(Mid(Wscript.FullName,InstrRev(Wscript.FullName,&amp;quot;\&amp;quot;)+1))
    engineFolder = Left(Wscript.FullName,InstrRev(Wscript.FullName,&amp;quot;\&amp;quot;))
    argString = &amp;quot;&amp;quot;
    
    Set Args = Wscript.Arguments
    
    For each arg in Args                        'loop though argument array as a collection to rebuild argument string
        If instr(arg,&amp;quot; &amp;quot;) &amp;gt; 0 Then arg = &amp;quot;&amp;quot;&amp;quot;&amp;quot; &amp;amp; arg &amp;amp; &amp;quot;&amp;quot;&amp;quot;&amp;quot;    'if the argument contains a space wrap it in double quotes
        argString = argString &amp;amp; &amp;quot; &amp;quot; &amp;amp; Arg
    Next

    scriptCommand = engineFolder &amp;amp; scriptEngine
        
    Dim strComputer : strComputer = &amp;quot;.&amp;quot;
        
    Dim objReg, bHasAccessRight
    Set objReg=GetObject(&amp;quot;winmgmts:&amp;quot;_
        &amp;amp; &amp;quot;{impersonationLevel=impersonate}!\\&amp;quot; &amp;amp;_ 
        strComputer &amp;amp; &amp;quot;\root\default:StdRegProv&amp;quot;)
    

    'Check for administrative registry access rights
    objReg.CheckAccess HKEY_LOCAL_MACHINE, &amp;quot;System\CurrentControlSet\Control\CrashControl&amp;quot;, _
        KEY_SET_VALUE, bHasAccessRight
    
    If bHasAccessRight = True Then
    
        HasRequiredRegAccess = True
        Exit Sub
        
    Else
        
        HasRequiredRegAccess = False
        objShellApp.ShellExecute scriptCommand, &amp;quot; &amp;quot;&amp;quot;&amp;quot; &amp;amp; Wscript.ScriptFullName &amp;amp; &amp;quot;&amp;quot;&amp;quot;&amp;quot; &amp;amp; argString, &amp;quot;&amp;quot;, &amp;quot;runas&amp;quot;
        WScript.Quit
    End If
        
    
End Sub&lt;/pre&gt;
&lt;p&gt;Once you have the script installed, right click on a .EVT file and you should have the option to convert the file to .EVTX format as shown below: 
&lt;p&gt;&lt;img height=341 alt=image src="http://blogs.technet.com/blogfiles/askperf/WindowsLiveWriter/TheTroublewithEventLogFiles_8EE2/image_18691042-b8a1-4d95-9997-13ec3ecb7e9a.png" width=459 border=0&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Abrir+.evt+de+Windows+2003+en+Windows+Vista&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!554.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!554.entry</guid><pubDate>Fri, 15 Feb 2008 15:12:07 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!554/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!554.entry#comment</wfw:comment><dcterms:modified>2008-02-15T15:13:53Z</dcterms:modified></item><item><title>Windows Vista Service Pack 1 Release Candidate</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!535.entry</link><description>&lt;p&gt;  &lt;p&gt;La verdad no me habia enterado de esto , :) pero bueno ya hay disponible una RC del Service Pack 1 de Windows Vista. &lt;p&gt;Aqui les dejo el link &lt;p&gt;&lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyID=9de6260e-4275-482d-9524-de850c4dd91c&amp;amp;DisplayLang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9de6260e-4275-482d-9524-de850c4dd91c&amp;amp;DisplayLang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=9de6260e-4275-482d-9524-de850c4dd91c&amp;amp;DisplayLang=en&lt;/a&gt;.&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Windows+Vista+Service+Pack+1+Release+Candidate&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!535.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!535.entry</guid><pubDate>Thu, 24 Jan 2008 15:52:43 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!535/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!535.entry#comment</wfw:comment><dcterms:modified>2008-01-24T15:52:43Z</dcterms:modified></item><item><title>Microsoft Active Directory Topology Diagrammer (ADTD) - Topologia Active directory</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!533.entry</link><description>&lt;p&gt;&lt;a href="http://docsharing.wordpress.com/2007/10/31/microsoft-active-directory-topology-diagrammer-adtd/"&gt;&lt;/a&gt; &lt;a href="http://docsharing.wordpress.com/2007/10/31/microsoft-active-directory-topology-diagrammer-adtd/"&gt;&lt;/a&gt;&lt;a href="http://docsharing.wordpress.com/2007/10/31/microsoft-active-directory-topology-diagrammer-adtd/"&gt;&lt;/a&gt;&lt;a href="http://docsharing.wordpress.com/2007/10/31/microsoft-active-directory-topology-diagrammer-adtd/"&gt;&lt;/a&gt; &lt;p&gt;&lt;a href="http://docsharing.wordpress.com/2007/10/31/microsoft-active-directory-topology-diagrammer-adtd/"&gt;Microsoft Active Directory Topology Diagrammer (ADTD)&lt;/a&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=cb42fc06-50c7-47ed-a65c-862661742764&amp;amp;displaylang=en"&gt;&lt;/a&gt; &lt;p&gt;Les dejo una utilidad sumamente util a la hora de diagramar nuestro AD, para analizar la estructura , o cuando entramos a un nuevo trabajo , o caso de consultoria y no sabemos como estan armadas las cosas , en fin ...  &lt;p&gt;ADTD nos permite generar desde nuestro equipo y mediante el software Microsoft Visio un grafico de nuestra infraestructura de Active Directory de forma automática. La instalación y uso es realmente sencilla. Una vez la tengamos instalada y ejecutada nos permite seleccionar el grado de detalle, pudiendo llegar a mostrar entre otras cosas OU´s, servidores Exchange, conectores de correo, controladores de dominio y los roles que están realizando actualmente. &lt;p&gt;Una utilidad altamente recomendable que nos permite analizar gráficamente nuestra arquitectura de Active Directory e incluso poder llegar a detectar posibles problemas de diseño de nuestra infraestructura. &lt;p&gt;Para su ejecucción necesitamos tener instalado .Net Framework 2.0 y Microsoft Visio para dejar al ADTD dibujar a sus anchas. &lt;p&gt;Puedes descargar esta utilidad desde el siguiente enlace: &lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=cb42fc06-50c7-47ed-a65c-862661742764&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=cb42fc06-50c7-47ed-a65c-862661742764&amp;amp;displaylang=en&lt;/a&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Microsoft+Active+Directory+Topology+Diagrammer+(ADTD)+-+Topologia+Active+directory&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!533.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!533.entry</guid><pubDate>Mon, 21 Jan 2008 15:51:21 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!533/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!533.entry#comment</wfw:comment><dcterms:modified>2008-01-21T15:51:21Z</dcterms:modified></item><item><title>Ocultar Maquina en Mis sitios de Red.</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!474.entry</link><description>&lt;div&gt;
&lt;table cellspacing=0 cellpadding=1 width="100%" border=0&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td background="themes/bluebyu2/images/bar_news_left.gif" height=25&gt;&lt;font color="#ffffff"&gt;&lt;b&gt;:: ¿Cómo ocultar un equipo en el entorno red?&lt;/b&gt;&lt;/font&gt;
&lt;tr&gt;
&lt;td&gt;&lt;br&gt;
&lt;table width="98%" align=center border=0&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://sedelrio.spaces.live.com/mmm2007-10-25_18.59/topic16.html"&gt;&lt;img alt=Windows src="http://sedelrio.spaces.live.com/mmm2007-10-25_18.59/images/topics/sow.gif" align=right border=0&gt;&lt;/a&gt;&lt;font&gt;Se explica como hacer que nuestro nombre y pc no aparezca en la red, y solo se podrá acceder al pc desde la red conociendo el nombre o su dirección IP.&lt;br&gt;&lt;br&gt;(DT, AGENCIAS) Para ello es necesario usar el registro de Windows, pinchamos en Inicio después ejecutar, escribimos &amp;quot;regedit&amp;quot; y pulsamos aceptar.&lt;br&gt;&lt;br&gt;En el editor de registro nos vamos al siguiente registro, lo hacemos navegando por el árbol de directorios que tenemos en la parte de la izquierda hasta llegar a:&lt;br&gt;&lt;br&gt;HKEY_LOCAL_MACHINESYSTEMCURRENTCONTROLSETSET SERVICESLANMANSERVERPARAMETERS&lt;br&gt;&lt;br&gt;A partir de ahí creamos una nueva clave de registro, con la opción valor DWORD, poniendo como nombre de la nueva clave la palabra hidden.&lt;br&gt;&lt;br&gt;Como valor del nuevo registro asignaremos un 1, el valor le podremos insertar con tan solo hacer doble clic sobre la nueva clave que acabamos de crear (hidden) o seleccionándola y dando al botón derecho y se elige modificar.&lt;br&gt;&lt;br&gt;Solo resta cerrar el editor de registro y posteriormente reiniciar el sistema, los efectos de este cambio serán percibido después de minutos o incluso horas, todo esto depende del tiempo de actualización de la red local.&lt;/font&gt; &lt;/tbody&gt;&lt;/table&gt;



&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Ocultar+Maquina+en+Mis+sitios+de+Red.&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Tips</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!474.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!474.entry</guid><pubDate>Mon, 19 Nov 2007 19:17:30 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!474/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!474.entry#comment</wfw:comment><dcterms:modified>2007-11-19T19:17:30Z</dcterms:modified></item><item><title>Cambiar Pasword Administrador Local Remotamente</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!330.entry</link><description>&lt;div&gt;
&lt;h4 style="margin-bottom:0px"&gt;Changing local admin password?&lt;/h4&gt;
&lt;div&gt;
&lt;div&gt;I just find a good method to change the local admin password of client PC remotely from MCPMAG. By using this method, you don't need to put the new password in script in order to make it work. You may reference this:&lt;br&gt;&lt;/div&gt;
&lt;div&gt;SysInternals offers a free too called PsPasswd &lt;br&gt;&lt;a href="http://www.sysinternals.com/Utilities/PsPasswd.html"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;http://www.sysinternals.com/Utilities/PsPasswd.html&lt;/font&gt;&lt;/u&gt;&lt;/a&gt; , which &lt;br&gt;allows you to remotely reset passwords on a range of computers &lt;br&gt;on your network. The tool will also report successes and &lt;br&gt;failures of changed passwords, and allows you to run a single &lt;br&gt;command against a list of computers. Since the password is just &lt;br&gt;included within the syntax of a command that you run, it will &lt;br&gt;never be stored as plain text in a batch or script file.&lt;br&gt;&lt;br&gt;To use PsPasswd, you'll first need a list of all computers in &lt;br&gt;your domain. To enumerate all computer objects in a domain, &lt;br&gt;you could run this script:&lt;br&gt;&lt;br&gt;LogFile = &amp;quot;C:\computers.txt&amp;quot;&lt;br&gt;Const ForWriting = 2&lt;br&gt;Const ADS_SCOPE_SUBTREE = 2&lt;br&gt;&lt;br&gt;Set objConnection = CreateObject(&amp;quot;ADODB.Connection&amp;quot;)&lt;br&gt;Set objCommand = CreateObject(&amp;quot;ADODB.Command&amp;quot;)&lt;br&gt;objConnection.Provider = &amp;quot;ADsDSOObject&amp;quot;&lt;br&gt;objConnection.Open &amp;quot;Active Directory Provider&amp;quot;&lt;br&gt;&lt;br&gt;Set objCOmmand.ActiveConnection = objConnection&lt;br&gt;objCommand.CommandText = _&lt;br&gt;&amp;quot;Select Name, Location from 'LDAP://DC=mcpmag,DC=com' &amp;quot; _&lt;br&gt;&amp;amp; &amp;quot;Where objectClass='computer'&amp;quot;&lt;br&gt;objCommand.Properties(&amp;quot;Page Size&amp;quot;) = 1000&lt;br&gt;objCommand.Properties(&amp;quot;Searchscope&amp;quot;) = ADS_SCOPE_SUBTREE&lt;br&gt;Set objRecordSet = objCommand.Execute&lt;br&gt;objRecordSet.MoveFirst&lt;br&gt;&lt;br&gt;Set objFSO =&lt;br&gt;CreateObject(&amp;quot;Scripting.FileSystemObject&amp;quot;)&lt;br&gt;Set objFile = objFSO.CreateTextFile(LogFile, ForWriting)&lt;br&gt;&lt;br&gt;Do Until objRecordSet.EOF&lt;br&gt;objFile.WriteLine objRecordSet.Fields(&amp;quot;Name&amp;quot;).Value&lt;br&gt;objRecordSet.MoveNext&lt;br&gt;Loop&lt;br&gt;&lt;br&gt;Note that the script will output to a file named &amp;quot;computers.txt&amp;quot; &lt;br&gt;on the C drive. This could be changed by editing the LogFile &lt;br&gt;variable assignment in the first line of the script. Note that &lt;br&gt;in your environment, you will also need to change the domain &lt;br&gt;referenced in line 12. In my example, I use mcpmag.com &lt;br&gt;(DC=mcpmag,DC=com).&lt;br&gt;&lt;br&gt;Once you have a list of all computers, you can then run &lt;br&gt;pspasswd.exe to change the local administrator password on &lt;br&gt;all systems in the list. Here's the syntax that I used on my&lt;br&gt;test network:&lt;br&gt;&lt;br&gt;pspasswd.exe @c:\computers.txt administrator &lt;a href="mailto:P@ssword"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;P@ssword&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;!&lt;br&gt;&lt;br&gt;Following the @ symbol in the command syntax is the path to &lt;br&gt;the file containing all computer names. The next part of the &lt;br&gt;syntax is the name of the account whose password will be &lt;br&gt;changed, followed by the new password (&lt;a href="mailto:P@ssword"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;P@ssword&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;!).&lt;br&gt;&lt;br&gt;Now here is the output that was generated from the command:&lt;br&gt;&lt;br&gt;PsPasswd v1.21 - Local and remote password changer&lt;br&gt;Copyright (C) 2003-2004 Mark Russinovich&lt;br&gt;Sysinternals - &lt;a href="http://www.sysinternals.com/"&gt;&lt;font color="#0000ff"&gt;&lt;u&gt;www.sysinternals.com&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;a&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;\\PC1&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;:&lt;br&gt;Error changing password:&lt;br&gt;The network path was not found.&lt;br&gt;&lt;br&gt;&lt;a&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;\\BSODME&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;:&lt;br&gt;Password for BSODME\administrator successfully changed.&lt;br&gt;&lt;br&gt;Since the output will list both success and failures, you will &lt;br&gt;be able to note the systems in which the password was not &lt;br&gt;successfully changed. In my case, the system named PC1 was not &lt;br&gt;located. So I would have to ensure that PC1 was online and then &lt;br&gt;run the command a second time. (Note that PsPasswd can also be &lt;br&gt;run against a single computer.) Since the command relies on UNC &lt;br&gt;paths to connect to systems, you will need to ensure that the &lt;br&gt;target systems have File and Print Sharing enabled and that File &lt;br&gt;and Print Sharing is not being blocked by the system's firewall. &lt;br&gt;By default, the Windows XP Pro SP2 firewall does not allow File &lt;br&gt;and Print sharing. However, this can be quickly changed via &lt;br&gt;Group Policy.&lt;br&gt;&lt;br&gt;As you can see, with a simple list of computers on your network, &lt;br&gt;remotely changing the local administrator password using PsPasswd &lt;br&gt;is a relatively painless process.&lt;br&gt;&lt;/div&gt;&lt;/div&gt; &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Cambiar+Pasword+Administrador+Local+Remotamente&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Windows Server</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!330.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!330.entry</guid><pubDate>Tue, 04 Sep 2007 12:23:01 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!330/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!330.entry#comment</wfw:comment><dcterms:modified>2007-09-04T12:23:01Z</dcterms:modified></item><item><title>Activar Ip route - Windows XP</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!316.entry</link><description>&lt;div&gt; &lt;a href="http://www.windowsnetworking.com/articles_tutorials/w2kprout.html"&gt;http://www.windowsnetworking.com/articles_tutorials/w2kprout.html&lt;/a&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Activar+Ip+route+-+Windows+XP&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Tips</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!316.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!316.entry</guid><pubDate>Wed, 15 Aug 2007 01:41:22 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!316/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!316.entry#comment</wfw:comment><dcterms:modified>2007-08-15T01:41:22Z</dcterms:modified></item><item><title>No se puede Abrir Agregar o Quitar Programas</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!314.entry</link><description>If the Add/Remove Programs applet does NOT open, or flashes briefly, you may have some missing registry entries.&lt;br&gt;&lt;br&gt;To fix the problem:&lt;br&gt;&lt;br&gt;1. Open a CMD.EXE prompt.&lt;br&gt;&lt;br&gt;2. Type regsvr32 mshtml.dll and press Enter and OK.&lt;br&gt;&lt;br&gt;3. Type regsvr32 shdocvw.dll -i and press Enter and OK.&lt;br&gt;&lt;br&gt;4. Type regsvr32 shell32.dll -i and press Enter and OK. &lt;br&gt;
&lt;div&gt; &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+No+se+puede+Abrir+Agregar+o+Quitar+Programas&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Tips</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!314.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!314.entry</guid><pubDate>Tue, 14 Aug 2007 16:11:35 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!314/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!314.entry#comment</wfw:comment><dcterms:modified>2007-08-14T16:11:35Z</dcterms:modified></item><item><title>Caso de Consultoria  - Implementacion de RRAS + Terminal Services</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!311.entry</link><description>&lt;div&gt;En el dia de hoy me encontre con un incoveniente de un cliente , el cual me contacto para implementar un servidor VPN, y Terminal Services para ejecutar una aplicacion remota desde una Branch Office mediante la VPN.&lt;br&gt;&lt;br&gt;Escenario : &lt;br&gt;1 DC Windows 2000 Server.  &lt;br&gt;&lt;br&gt;Oficina Remota en Rio Negro&lt;br&gt;1 Windows 2003 Server. &lt;br&gt;&lt;br&gt;Analisis de la situacion , lo primero que se chequeo es el hecho de tener licencias de Terminal Service , por el tema de VPN se verifico la existencia de un servidor DHCP, el mismo utilizaba el DHCP de un router del cual disponian. Se verifico componentes instalados , se actualizo el servidor con los ultimos parches disponibles , y manos a la Obra&lt;br&gt;&lt;br&gt;El primer incoveniente que me encontre fue que no se podia abrir el SNAP IN , de Agregar o Quitar Programas, al querer abrirlo se veia un destello , pero sin dar un error ni nada no se abria la pantalla correspondiente , por lo cual no se podia agregar RRAS , ni Terminal Service , buscando un poco de informacion en internet di con un foro en el cual indicaba un Articulo con un problema similar y la solucion era registrar ciertas DLL nuevamente. Asi que agarre una maquina virtual desregistre esas DLLs , reproduci el problema , y luego las volvi a registrar volviendo todo a funcionar.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;If the Add/Remove Programs applet does NOT open, or flashes briefly, you may have some missing registry entries.&lt;br&gt;&lt;br&gt;To fix the problem:&lt;br&gt;&lt;br&gt;1. Open a CMD.EXE prompt.&lt;br&gt;&lt;br&gt;2. Type regsvr32 mshtml.dll and press Enter and OK.&lt;br&gt;&lt;br&gt;3. Type regsvr32 shdocvw.dll -i and press Enter and OK.&lt;br&gt;&lt;br&gt;4. Type regsvr32 shell32.dll -i and press Enter and OK. &lt;br&gt;&lt;br&gt;Una vez hecho esto ya pude abrir el SNAP IN por lo cual todo fue mas rapido&lt;br&gt;&lt;br&gt;Instalacion de RRAS,&lt;br&gt;Se configuro el mismo como servidor de acceso remoto. El primer problema que me encontre una vez hechoo el fowarding del puerto 1723 hacia la ip interna del RRAS server. Fue que al conectar la VPN recibia un error 733&lt;br&gt;El mismo se daba por que no habia ninguna direccion IP disponible para el cliente ( De hecho no habia DHCP) asi que se asigno un pool de direcciones desde el RRAS para los clientes VPN. Luego de eso la conexion fue normal.&lt;br&gt;&lt;br&gt;&lt;br&gt;Instalacion de Terminal Service en Modo Aplicacion ( Era un Windows 2000 server )&lt;br&gt;Se instalo el servicio de Terminal Services ,  el servidor de licencias de terminal services. Todo quedo funcionando correctamente.&lt;br&gt;&lt;br&gt;La unica  complicacion fue el tema del panel de Control , lo cual queria dejar en este BLOG , por si a alguien le sucede !&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Caso+de+Consultoria++-+Implementacion+de+RRAS+%2b+Terminal+Services&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!311.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!311.entry</guid><pubDate>Mon, 13 Aug 2007 22:35:52 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!311/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!311.entry#comment</wfw:comment><dcterms:modified>2007-08-13T22:35:52Z</dcterms:modified></item><item><title>Problema ISA SERVER 2006 - "Setup was unable to update array storage data"</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!289.entry</link><description>&lt;div&gt;El dia Sabado estuve tratando un incoveniente con un cliente, el cual para ponerlos en escenario tenia instalado un ISA SERVER 2006 EE, funcionando correctamente , tenia la necesidad de agregar un segundo Nodo de ISA SERVER 2006.&lt;br&gt;&lt;br&gt;Escenario:&lt;br&gt;Maquina instalada y funcionando&lt;br&gt;ISASRV01&lt;/div&gt;
&lt;div&gt;1 Windows 2003 SP2 - ISA SERVER 2006 EE - Configuration Storage Server + Array Member&lt;br&gt;&lt;br&gt;Maquina a Instalar &lt;br&gt;ISASRV02&lt;/div&gt;
&lt;div&gt;1 Windows 2003 SP2 - ISA SERVER 2006 EE - Configuration Storage Server + Array Member&lt;br&gt;3 Placas de Red.  &lt;/div&gt;
&lt;div&gt;LAN , Conectada a la Red Interna&lt;/div&gt;
&lt;div&gt;DMZ ,  Conectada a la DMZ&lt;/div&gt;
&lt;div&gt;Intra Array , Cable cruzado conectado de maquina a maquina para comunicacion entre servidores.&lt;br&gt;&lt;br&gt;Al querer agregar la segunda maquina como una replica del Configuration storage server ISASRV01 , obtenia el siguiente error mientras se efectuaba la instalacion y luego daba un rolling Back, y se paraba la instalacion. El error que recibia era el siguiente.&lt;br&gt;&lt;br&gt;&amp;quot;Setup was unable to update array storage data.  To update storage data, &lt;br&gt;there must be connectivity between this computer and at least one ISA &lt;br&gt;server array member and between that array member and the configuration &lt;br&gt;storage.&amp;quot;&lt;br&gt;&lt;br&gt;Pruebas efectuadas.&lt;br&gt;En primer punto se chequeo que el ISASRV01 estuvieran todos los servicios Arriba.&lt;br&gt;Se probo conectividad, utilizando ping desde ambas maquinas tenian conectividad una con la otra.&lt;br&gt;&lt;br&gt;Despues de chequear y chequear , el cliente me comento que habian estado haciendo pruebas con NLB y luego sacaron un servidor antiguo, asi que me fui al ISASRV01 y empece a chequearlo.&lt;br&gt;El problema era el siguiente , cuando se tiene mas de un servidor ISA SERVER 2006 interconectados uno debe configurar mediante que placa de red se comunican los mismos, &lt;br&gt;&lt;br&gt;Esto se hace desde, &lt;br&gt;Array - MyArray - Configuration - Servers &lt;br&gt;Ahi en mi server Boton derecho y Propiedades. En la solapa Communication la primer opcion es &amp;quot;Use This IP Addres for communication with array members&amp;quot;&lt;br&gt;Este campo tenia ingresado 0.0.0.0 solo se cambio esa opcion por la IP de la placa Intra Array Local.&lt;br&gt;&lt;br&gt;Luego el Wizard siguio correctamente y se pudo efectuar la instalacion de manera correcta.&lt;br&gt;&lt;br&gt;Bueno espero le sirva de ayuda a alguien :)&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Problema+ISA+SERVER+2006+-+%22Setup+was+unable+to+update+array+storage+data%22&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Isa Server</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!289.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!289.entry</guid><pubDate>Tue, 10 Jul 2007 13:05:17 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!289/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!289.entry#comment</wfw:comment><dcterms:modified>2007-07-10T13:05:17Z</dcterms:modified></item><item><title>IsaBPA Version 5 - ISA Best Practices Analyzer</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!287.entry</link><description>&lt;div&gt;
&lt;p style=""&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;Una nueva version del Best Practices Analyzer , aqui les dejo algunas de las nuevas mejoras.   ( No tenia ganas de traducir todo :) )&lt;/span&gt;
&lt;p style=""&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;&lt;/span&gt; 
&lt;p style=""&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;The ISA Server Team is excited to announce the version 5.0 release of the Microsoft© ISA Server Best Practices Analyzer Tool (IsaBPA V5).&lt;/span&gt;
&lt;p style=""&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt; &lt;/span&gt;
&lt;p style=""&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;New in Version 5 of IsaBPA:&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;
&lt;p style=""&gt; 
&lt;p style="text-indent:-0.25in;tab-stops:list .5in"&gt;&lt;span style="font-size:10pt;font-family:Wingdings"&gt;&lt;span&gt;ü&lt;span style="font:7pt 'Times New Roman'"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir=ltr&gt;&lt;/span&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;ISA Data Packager (IDP) GUI&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt; – The IDP collects all information needed for troubleshooting with a single click. For this version, we added a GUI for our data collection tool. This GUI will allow easier configuration and better use of the IDP.&lt;/span&gt;
&lt;p style="text-indent:-0.25in;tab-stops:list .5in"&gt;&lt;span style="font-size:10pt;font-family:Wingdings"&gt;&lt;span&gt;ü&lt;span style="font:7pt 'Times New Roman'"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir=ltr&gt;&lt;/span&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;BPA2Visio&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt; – we added a super cool application that takes the IsaBPA report and converts this report into a Visio network diagram, so that the ISA administrator or the support engineer can see how the ISA Server views its environment (networks, published web/non-web servers/server farms, CSS, VPN sites and clients). You need to have Visio 2003 or Visio 2007 installed on one of your machines (not necessary the ISA Server machine). Check out this &lt;a title="IsaBPA - BPA2Visio screenshot" href="http://blogs.technet.com/photos/isablog/picture1438009.aspx"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;screenshot&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;! &lt;/span&gt;
&lt;p style="text-indent:-0.25in;tab-stops:list .5in"&gt;&lt;span style="font-size:10pt;font-family:Wingdings"&gt;&lt;span&gt;ü&lt;span style="font:7pt 'Times New Roman'"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir=ltr&gt;&lt;/span&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;We added &lt;b&gt;&lt;u&gt;new checks&lt;/u&gt;&lt;/b&gt; to Version 5. There are now 218 rules, and more than 900 settings are displayed. The focus of this release was to target Windows Server SP2 issues. This new suite joins the Hardware, Authentication, OWA, SSL Certificates, Site-to-site VPN with IPsec, WPLB, Branch Office, and logging suites that were introduced in previous IsaBPA versions.&lt;/span&gt;
&lt;p style="text-indent:-0.25in;tab-stops:list .5in"&gt;&lt;span style="font-size:10pt;font-family:Wingdings"&gt;&lt;span&gt;ü&lt;span style="font:7pt 'Times New Roman'"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir=ltr&gt;&lt;/span&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;More documentation.&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt; The documentation (UE) team enhanced the Help file. It now contains more than 100 pages. You can now find which checks are being performed, how to operate the IsaBPA, and of course how to fix the found issues. &lt;/span&gt;
&lt;p style="text-indent:-0.25in;tab-stops:list .5in"&gt;&lt;span style="font-size:10pt;font-family:Wingdings"&gt;&lt;span&gt;ü&lt;span style="font:7pt 'Times New Roman'"&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir=ltr&gt;&lt;/span&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;Bug fixes.&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt; We fixed a few bugs that were discovered in the previous version.&lt;/span&gt;
&lt;p style=""&gt;&lt;font face=Calibri size=3&gt; &lt;/font&gt;
&lt;p style=""&gt;&lt;span style="font-size:10pt;font-family:'Arial','sans-serif'"&gt;You can get the IsaBPAv5 using the integrated live update mechanism or by simply going to &lt;a title="http://www.microsoft.com/downloads/details.aspx?FamilyId=D22EC2B9-4CD3-4BB6-91EC-0829E5F84063&amp;amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=D22EC2B9-4CD3-4BB6-91EC-0829E5F84063&amp;amp;displaylang=en"&gt;&lt;font color="#800080"&gt;&lt;u&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=D22EC2B9-4CD3-4BB6-91EC-0829E5F84063&amp;amp;displaylang=en&lt;/u&gt;&lt;/font&gt;&lt;/a&gt; and downloading the new version. The tool requires .NET 1.1 framework and above.&lt;/span&gt;
&lt;p style=""&gt;&lt;font face=Calibri size=3&gt; &lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+IsaBPA+Version+5+-+ISA+Best+Practices+Analyzer&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Isa Server</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!287.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!287.entry</guid><pubDate>Thu, 05 Jul 2007 14:11:06 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!287/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!287.entry#comment</wfw:comment><dcterms:modified>2007-07-05T14:11:06Z</dcterms:modified></item><item><title>Leer Direccion Ip en MDF de ISA SERVER 2006</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!282.entry</link><description>&lt;div&gt;
&lt;p&gt;Muchas veces los administradores de redes, precisamos hacer auditoria por ejemplo de la Navegacion en Internet que pasa por nuestro ISA SERVER. En principio y como regla basica para poder hacer una auditoria de este tipo , todos nuestros clientes deben salir a internet por el ISA ya sea como clientes Web Proxy o Secure Nat. Isa server 2006 trae de por si algunas opciones de reporte las mismas se encuentran en Monitoring - Reports  el problema es que no son muy completos y muy poco flexibles estos reportes , por lo cual podemos utilizar programas de terceros como GFI Web monitor.&lt;br&gt;&lt;br&gt;&lt;br&gt;Si asi y todo necesitamos hacer una auditoria utilizando la base de datos del ISA SERVER , veremos que la direccion IP aparece cifrada , aqui les dejo una respuesta de un post de Technet , donde se explica como descifrar este numero y pasarla a la lengua de Cervantes.&lt;br&gt;&lt;br&gt;1. Primera abris la calculadora de Windows y la pones en la vista Cientifica.
&lt;p&gt;2. Asegurate que este seleccionado el modo DEC y pegas tu número 3232236068 .
&lt;p&gt;3. Ahora moves la selección de DEC a HEX eso como resultado te va a dar C0A802224 que son los 4 octetos juntos en HEXA, cada octeto son 2 números hexa.
&lt;p&gt;4. Ahora tomas de a pares del número en HEXA y haces el procedimiento inverso por cada par en la calculadora y te queda conformada tu IP:
&lt;p&gt;CA = 192
&lt;p&gt;A8 = 168
&lt;p&gt;02 = 2
&lt;p&gt;24 = 18
&lt;p&gt; 
&lt;p&gt;La IP que te muestra es 192.168.2.18 ==&amp;gt; C0.A8.02.24 ==&amp;gt; C0A80224 ==&amp;gt; 3232236068&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Leer+Direccion+Ip+en+MDF+de+ISA+SERVER+2006&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Isa Server</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!282.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!282.entry</guid><pubDate>Tue, 26 Jun 2007 14:39:27 GMT</pubDate><slash:comments>1</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!282/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!282.entry#comment</wfw:comment><dcterms:modified>2007-06-26T14:39:27Z</dcterms:modified></item><item><title>Certificacion Windows 2008 - MCSE ha muerto</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!280.entry</link><description>&lt;div&gt;
&lt;img title="Windows Server 2008 Certifications" height=168 alt="Windows Server 2008 Certifications" src="http://www.trainsignaltraining.com/wpnew/wp-content/uploads/2007/06/Windows_2008_Logo.jpg" width=500 border=0&gt;
&lt;p&gt;
&lt;p&gt;I watched the Microsoft webinar on the new Server 2008 (formerly Longhorn) certifications last week and came away feeling a little underwhelmed. In case you didn’t know already the MCSE is “dead” for Server 2008 and they are moving on to a “job based” approach to their certifications. Read on for more details.
&lt;p&gt;&lt;strong&gt;Windows Server 2008 MCTS Certifications&lt;/strong&gt;&lt;br&gt;To begin with, there will be several Microsoft Certified Technology Specialist (MCTS) exams that you can take to certify specific skills on the Server 2008 platform. These are roughly equivalent to becoming a MCP in Windows 2000/2003. You will earn MCTS certification for each different exam that you pass. Here are the initial MCTS exams that will be released:
&lt;p&gt;70-640 MCTS: Configuring Windows Server 2008 Active Directory&lt;br&gt;70-642 MCTS: Configuring Windows Server 2008 Network Infrastructure&lt;br&gt;70-643 MCTS: Configuring Windows Server 2008 Application Platforms
&lt;p&gt;70-640 and 70-642 are no surprise but 70-643 is interesting. It will cover Internet Information Services (IIS 7) and Microsoft Virtual Server among other things. Pretty cool. These exams are scheduled to be available 30 days after Server 2008 goes RTM.&lt;br&gt;&lt;a&gt;&lt;/a&gt;
&lt;p&gt;&lt;strong&gt;Windows Server 2008 MCITP Certifications&lt;/strong&gt;&lt;br&gt;There are two different Server 2008 tracks, the Server Administrator and the Enterprise Server Administrator. Both of these are MCITP level certifications, requiring multiple exams. These are the highest level of certification (outside of the MCA program) that you can attain. Here are the requirements for each.
&lt;p&gt;Windows Server 2008 Administrator:&lt;br&gt;70-640 Active Directory&lt;br&gt;70-642 Network Infrastructure&lt;br&gt;70-646 Windows 2008 Server Administrator Exam&lt;br&gt;***Only 3 exams required; the MCTS exams 70-640 and 70-642 and the main MCITP exam for this track, 70-646
&lt;p&gt;Windows Server 2008 Enterprise Administrator:&lt;br&gt;70-640 Active Directory&lt;br&gt;70-642 Network Infrastructure&lt;br&gt;70-643 Applications Platform&lt;br&gt;70-620 OR 70-624 Windows Vista Client&lt;br&gt;70-647 Windows Server 2008 Enterprise Administrator Exam&lt;br&gt;***5 exams required; the MCTS exams 70-640, 70-642, 70-643, 70-620 (or 70-624) and the main MCITP exam for this track, 70-647
&lt;p&gt;The two MCITP exams are schedlued to be available 60 days after Server 2008 goes RTM.
&lt;p&gt;&lt;strong&gt;Do I lose my MCSE/MCSA?&lt;/strong&gt;&lt;br&gt;No. You get to keep your MCSE or any credential earned under the Windows 2000/2003 certification track. You essentially have a “MCSE in Windows 2003″ (for example). However, you do not become a “MCSE in Windows 2008″, because the MCSE no longer exists. You will have to upgrade to one of the MCITP certifications referenced above. Your Windows 2000/2003 certifications will not expire and will continue to be valuable as long as Windows 2000/2003 is used on company networks. If you are currently working on your MCSE/MCSA keep working on it…it is still valuable and will provide you with excellent base knowledge that will also apply to Windows 2008.
&lt;p&gt;&lt;strong&gt;Can you upgrade your MCSE/MCSA to Windows Server 2008 Certifications?&lt;/strong&gt;&lt;br&gt;Yes, there is an upgrade path but only for WINDOWS 2003 MCSEs and MCSAs. If you are certified in Windows 2000, you must upgrade to Windows 2003 first or just take the Windows 2008 exams individually. Here are the upgrade details:
&lt;p&gt;Windows 2003 MCSE - Pass the 70-649 (upgrade) exam and you do not have to take 70-640, 70-642, 70-643. You DO have to take the MCITP: Enterprise Server Administrator exam and the Vista client exam.
&lt;p&gt;Windows 2003 MCSA - Pass the 70-648 (upgrade) exam and you do not have to take 70-640, 70-642. You DO have to take the MCITP: Server Administrator exam.
&lt;p&gt;&lt;strong&gt;My Thoughts on the Windows 2008 Certifications&lt;/strong&gt;&lt;br&gt;Like I said in the opening, I came away a little underwhelmed. It just seems like the main MCITP certifications do not have enough substance. I am all for simplicity (only 2 or 3 different professional tracks) but I would like to see a few more exams attached to the higher level certs to make them a little tougher to attain. I also think it will be a bit clunky to say (or put on a resume), “I am a MCITIP: Enterprise Administrator, MCTS: ISA Server, MCTS: Exchange Server”, etc. There should be one certification (probably the Enterprise Administator certification) that requires Exchange Server, ISA Server and perhaps SQL Server knowledge, in addition to all of the core Windows Server 2008 requirements. This would be of value to companies and IT professionals alike.
&lt;p&gt;What do you think?
&lt;p&gt;Looking for more information on Windows Server 2008 Certifications? Check out &lt;a href="http://blogs.msdn.com/trika/archive/2007/06/14/windows-server-2008-certification-paths.aspx"&gt;&lt;strong&gt;&lt;u&gt;&lt;font color="#385090"&gt;Trika’s Microsoft site&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;; it is loaded with Microsoft certification information and she is very helpful.
&lt;p&gt;&lt;strong&gt;&lt;a href="http://digg.com/microsoft/Windows_Server_2008_Certifications_Death_to_the_MCSE"&gt;&lt;u&gt;&lt;font color="#385090"&gt;Digg Us!&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;/strong&gt; If you like this post, please help us out and vote for us at &lt;a href="http://digg.com/microsoft/Windows_Server_2008_Certifications_Death_to_the_MCSE"&gt;&lt;strong&gt;&lt;u&gt;&lt;font color="#385090"&gt;Digg!&lt;/font&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Certificacion+Windows+2008+-+MCSE+ha+muerto&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!280.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!280.entry</guid><pubDate>Tue, 26 Jun 2007 14:03:18 GMT</pubDate><slash:comments>2</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!280/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!280.entry#comment</wfw:comment><dcterms:modified>2007-06-26T14:03:18Z</dcterms:modified></item><item><title>Log Inicio y Cierre de Sesion</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!276.entry</link><description>&lt;div&gt;
&lt;p&gt;&lt;strong&gt;Muy frecuentemente preguntan en los foros de Technet como auditar los eventos de Inicio - Cierre de Sesion a lo que normalmente se responde que se puede hacer mediante la politica de Auditoria , aca les dejo un metodo alternativo el cual nos dejara un log , el cual sera mas practico que mirar el Event Viewer :)&lt;/strong&gt;
&lt;p&gt;&lt;strong&gt;Crear los siguientes archivos con el notepad o su editor de texto favorito&lt;/strong&gt;&lt;br&gt;&lt;br&gt;------logon.cmd----&lt;br&gt;echo logon %username% %computername% %date% %time% &amp;gt;&amp;gt; &lt;a&gt;&lt;font color="#0088ff"&gt;\\dc1\carpeta\logon.log&lt;/font&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;-----logoff.cmd-----&lt;br&gt;echo logoff %username% %computername% %date% %time% &amp;gt;&amp;gt; &lt;a&gt;&lt;font color="#0088ff"&gt;\\dc1\carpeta\logoff.log&lt;/font&gt;&lt;/a&gt;
&lt;p&gt;&lt;strong&gt;Ahora deberemos incluir estos dos archivos dentro de la Default Domain Policy por ejemplo para que se ejecuten al inicio y cierre de sesion&lt;/strong&gt;&lt;br&gt;User Configuration-&amp;gt; Windows Settings-&amp;gt; Scripts (Logon/Logoff)-&amp;gt; Logon&lt;br&gt;User Configuration-&amp;gt; Windows Settings-&amp;gt; Scripts (Logon/Logoff)-&amp;gt; Logoff&lt;br&gt;&lt;br&gt;&lt;strong&gt;Como resultado veremos nuestros dos archivos con los siguientes contenidos , los cuales seran bastante mas facil de consultar en el caso de tener que auditar Inicio - Cierre de Sesion&lt;/strong&gt;&lt;br&gt;&lt;br&gt;logon Richard WS01 Tue 22/02/2005 10:39:51.12&lt;br&gt;logon Peter WS02 Tue 22/02/2005 10:42:01.07&lt;br&gt;&lt;br&gt;logoff Richard WS01 Tue 22/02/2005 10:41:08.45&lt;br&gt;logoff Peter WS02 Tue 22/02/2005 10:42:46.81&lt;br&gt;&lt;br&gt;Espero les sirva&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Log+Inicio+y+Cierre+de+Sesion&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Windows Server</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!276.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!276.entry</guid><pubDate>Tue, 19 Jun 2007 18:44:45 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!276/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!276.entry#comment</wfw:comment><dcterms:modified>2007-06-19T18:44:45Z</dcterms:modified></item><item><title>Denegar ejecucion de Software</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!275.entry</link><description>&lt;div&gt;&lt;/div&gt;
&lt;div&gt;
&lt;p&gt;&lt;em&gt;If you missed the first part in this article series please go to &lt;a href="http://www.windowsecurity.com/articles/Default-Deny-All-Applications-Part1.html"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;Default Deny All Applications (Part 1)&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;.&lt;/em&gt;
&lt;h2&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Since Windows XP, administrators around the world have had the option to define Software Restriction Policies (&lt;b&gt;SRP&lt;/b&gt;) for their client computers to control what software is allowed, or not allowed, to run. So far too few organizations have implemented this functionality despite the fact that it could actually bring a very high level of security, depending on how it is enforced. In this second article about SRP we will look at how to implement what we could also refer to as “software filter policies”.
&lt;h2&gt;Danger zone&lt;/h2&gt;
&lt;p&gt;Before we get too far it is important to point out that, prior to introducing SRP on production computers, you should plan and test them thoroughly. This can be done in Active Directory (&lt;b&gt;AD&lt;/b&gt;) by isolating a single test machine or user object in an Organizational Unit (&lt;b&gt;OU&lt;/b&gt;) or by setting “&lt;i&gt;Apply Group Policy&lt;/i&gt;” permission on the Group Policy Object (&lt;b&gt;GPO&lt;/b&gt;) to only that single test-machine or -user account. SRP can even be used on Stand-alone computers if you don’t want to touch the production environment at all. I would recommend you use virtual machines for basic testing and ‘production-like’ machines for the final tests. After heavy testing, the SRP should be implemented on pilot users in groups – it’s better to take small steps than hurrying into disaster!
&lt;h2&gt;The overall process&lt;/h2&gt;
&lt;p&gt;Mistakes in the design or implementation of this can cause considerable user frustration, and even loss of money or productivity, so watch out as you go along. This takes a lot of planning work, testing and probably some maintenance from the day it is introduced in the production environment. From that point on you will be able to sleep tight at night… 
&lt;p&gt;The following list gives a quick view of what to have in mind when introducing SRP in a Windows environment.
&lt;p&gt;&lt;b&gt;&lt;i&gt;When designing the SRP setup, different decisions must be made, for example:&lt;/i&gt;&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Decide between user and computer GPOs: what AD objects should the SRP policies apply to? 
&lt;li&gt;Decide between a Blacklisting (&lt;b&gt;BL&lt;/b&gt;) and a Whitelisting (&lt;b&gt;WL&lt;/b&gt;) approach (WL is recommended if possible) 
&lt;li&gt;If using the BL approach, a list of everything that should &lt;b&gt;not&lt;/b&gt; run must be made 
&lt;li&gt;If using the WL approach, a list of everything that should run must be made 
&lt;li&gt;Decide what SRP options to use (enforcement, designated file types, administrator exceptions etc.) 
&lt;li&gt;Decide what type of rules to use (path, HASH, certificate or Internet zone)&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;&lt;i&gt;When testing the SRP setup, different steps must be taken, for example:&lt;/i&gt;&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Test the basic functionality in a virtual lab (using Virtual PC/Server, VMware or similar) 
&lt;li&gt;Test the functionality in your environment by using ‘production-like’ machines (and user accounts) 
&lt;li&gt;Test with small groups of pilot users in steps of 5-10 users over a few weeks, then scale up 
&lt;li&gt;Continue to the next pilot group only after successful implementation for the previous pilot users 
&lt;li&gt;Be sure to test all the different user types and machine types you need to secure with SRP 
&lt;li&gt;Be sure to test upgrade scenarios, like patching of the operating system, upgrading third party applications, migrations etc. 
&lt;li&gt;Also focus on performance on the different hardware in your organization. Implementing SRP will in most cases affect system performance a bit, depending on how it is implemented (see the part about Trusted Publishers) 
&lt;li&gt;Sometimes applications launch other applications, make sure this is under full control 
&lt;li&gt;By default Desktop and Start Menu shortcuts (.&lt;b&gt;LNK&lt;/b&gt;) are blocked, make sure to modify this as needed 
&lt;li&gt;Be sure that any admin scripts (e.g. login scripts in SYSVOL/NETLOGON shares etc.) are able to run  &lt;br&gt;&lt;br&gt;&lt;/ul&gt;&lt;b&gt;&lt;i&gt;&lt;/i&gt;&lt;/b&gt;
&lt;p&gt;&lt;b&gt;&lt;i&gt;Before introducing SRP in production, some procedures should be in place:&lt;/i&gt;&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;Introduce a written workflow on how applications, updates etc. should be tested, approved and introduced on the network, so everybody is aware of the procedures required 
&lt;li&gt;Be sure that management knows SRP pros and cons and that they agree on the decision to introduce it 
&lt;li&gt;Have a fallback plan on how to get rid of the SRP GPOs fast, for certain users, groups, computers, sites etc. 
&lt;li&gt;User education: inform users why SRP is important and what the procedure is to acquire new software 
&lt;li&gt;&lt;i&gt;A small tip&lt;/i&gt;: Put descriptions on SRP rules, over time a good naming convention will save you some time&lt;/ul&gt;
&lt;h2&gt;Different paths to SRP&lt;/h2&gt;
&lt;p&gt;Configuring a Software Restriction Policy is basically only a few steps:
&lt;ol&gt;
&lt;li&gt;Creating a User or a Computer GPO and placing it on a Site, Domain or OU (or as a local policy) and enabling SRP within the Group Policy. The SRP settings are located here (see Figure 1):&lt;br&gt;&lt;br&gt;&lt;b&gt;Computer Configuration| Windows Settings | Security Settings | Software Restriction Policies&lt;br&gt;User Configuration | Windows Settings | Security Settings | Software Restriction Policies&lt;br&gt;&lt;br&gt;&lt;/b&gt;The first time SRP is introduced in a GPO, the option “&lt;b&gt;New Software Restriction Policies&lt;/b&gt;” will be available.&lt;/ol&gt;
&lt;p&gt;&lt;img alt="" hspace=0 src="http://www.windowsecurity.com/img/upl/image0011180950678139.jpg" align=baseline border=0&gt;&lt;br&gt;&lt;strong&gt;Figure 1&lt;/strong&gt;
&lt;ol start=2&gt;
&lt;li&gt;Setting the &lt;b&gt;Default Security Level&lt;/b&gt;. Figure 2 shows how the level is set by right-clicking the wanted level and choosing “&lt;b&gt;Set as default&lt;/b&gt;”.&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;The default level is ‘&lt;b&gt;Unrestricted&lt;/b&gt;’ which means that all software can run and that additional rules for disallowed &lt;i&gt;software&lt;/i&gt; should be made – this is also known as &lt;b&gt;Blacklisting&lt;/b&gt;. 
&lt;li&gt;The most secure level is ‘&lt;b&gt;Disallowed&lt;/b&gt;’ which means that no software can run and that additional rules for allowed software should be made – this is also known as &lt;b&gt;Whitelisting&lt;/b&gt;. 
&lt;li&gt;By default the system creates a few rules that allow the operating system to run without any inconvenient blocking&lt;br&gt;NB! If those rules are removed or changed without any thought, the affected system(s) could become &lt;i&gt;unusable&lt;/i&gt;.&lt;/ul&gt;&lt;/ol&gt;
&lt;p&gt;&lt;img alt="" hspace=0 src="http://www.windowsecurity.com/img/upl/image0031180950678155.jpg" align=baseline border=0&gt;&lt;br&gt;&lt;strong&gt;Figure 2&lt;/strong&gt;
&lt;ol start=3&gt;
&lt;li&gt;With Windows Vista and Longhorn we have a new level called ‘&lt;b&gt;Basic User&lt;/b&gt;’ which allows programs to execute as a user that does not have Administrator access rights, so the user can access resources accessible by normal users only. This level is not addressed any further in this article.&lt;br&gt;&lt;br&gt;
&lt;p&gt;File types can be removed and added to fit any environment, but the default file type list includes the most common executables: &lt;b&gt;BAT&lt;/b&gt;, &lt;b&gt;CMD&lt;/b&gt;, &lt;b&gt;COM&lt;/b&gt;, &lt;b&gt;EXE&lt;/b&gt;, &lt;b&gt;HTA&lt;/b&gt;, &lt;b&gt;LNK&lt;/b&gt;, &lt;b&gt;MSI&lt;/b&gt;, &lt;b&gt;OCX&lt;/b&gt;, &lt;b&gt;PIF&lt;/b&gt;, &lt;b&gt;REG&lt;/b&gt; &amp;amp; &lt;b&gt;SCR &lt;/b&gt;and in addition these extensions: ADE, ADP, BAS, CHM, CPL, CRT, HLP, INF, INS, ISP, MDB, MDE, MSC, MSP, MST, PCD, SHS, URL, VB &amp;amp; WSC.
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; As the Designated Files Type Properties dialog states, the list is “in &lt;b&gt;&lt;i&gt;addition&lt;/i&gt;&lt;/b&gt; to the &lt;i&gt;standard program file types&lt;/i&gt;, such as EXE, DLL and VBS” – I haven’t been able to get a complete list of those, but I have confirmed that &lt;b&gt;VBS&lt;/b&gt;, &lt;b&gt;VBE&lt;/b&gt;, &lt;b&gt;JS&lt;/b&gt; and &lt;b&gt;JSE&lt;/b&gt; are blocked even though they are not in the list. I would have preferred a single list administrators around the world could change as needed, but that’s how it is.&lt;/ol&gt;
&lt;p&gt;&lt;img alt="" hspace=0 src="http://www.windowsecurity.com/img/upl/image0041180950678170.jpg" align=baseline border=0&gt;&lt;br&gt;&lt;strong&gt;Figure 3&lt;/strong&gt;
&lt;ol start=4&gt;
&lt;li&gt;Setting up &lt;b&gt;exceptions&lt;/b&gt; to the Default Security Level. These are known as ‘&lt;b&gt;Additional Rules&lt;/b&gt;’. Please see the subject “Additional Rules” in this article for further information. 
&lt;li&gt;Configuring ‘&lt;b&gt;Enforcement Properties&lt;/b&gt;’. See Figure 4, this includes: 
&lt;ul&gt;
&lt;li&gt;“&lt;b&gt;All software files&lt;/b&gt;”: We have the option to check &lt;b&gt;DLL&lt;/b&gt;’s (Dynamic Link Libraries) when they are executed too. This is not a default setting and will have some &lt;i&gt;impact&lt;/i&gt; on both performance and planning/implementation/maintenance tasks. 
&lt;li&gt;“&lt;b&gt;All users except local administrators&lt;/b&gt;”: Here we can choose whether or not SRP should apply for Local administrators. By default all users are hit by SRP. This policy option is only relevant for computer policies. 
&lt;li&gt;“&lt;b&gt;Enforce certificate rules&lt;/b&gt;”: Option to choose whether or not to use certificate rules should be applied. &lt;strong&gt;Note:&lt;/strong&gt; As stated in the dialog in Figure 4 “Certificate rules will negatively impact the performance of your machine”.&lt;/ul&gt;&lt;/ol&gt;
&lt;p&gt;&lt;img alt="" hspace=0 src="http://www.windowsecurity.com/img/upl/image0051180951406326.jpg" align=baseline border=0&gt;&lt;br&gt;&lt;strong&gt;Figure 4&lt;/strong&gt;
&lt;ol start=6&gt;
&lt;li&gt;Configuring ‘&lt;b&gt;Trusted Publishers Properties&lt;/b&gt;’, also known as Authenticode policy options (see Figure 5). In this dialog we can choose who should be able to select Trusted Publishers for certificate rules. We also have an option to verify whether a certificate is &lt;i&gt;revoked&lt;/i&gt; or not, and/or to check if the &lt;i&gt;timestamp&lt;/i&gt; is valid when it is added.&lt;/ol&gt;
&lt;p&gt;&lt;img alt="" hspace=0 src="http://www.windowsecurity.com/img/upl/image0061180951406326.jpg" align=baseline border=0&gt;&lt;br&gt;&lt;strong&gt;Figure 5&lt;/strong&gt;
&lt;h2&gt;Additional Rules&lt;/h2&gt;
&lt;p&gt;When configuring Additional Rules, a method - or a couple of methods - on &lt;b&gt;how to indentify software&lt;/b&gt; should be decided. We have 4 different software identification methods available: 
&lt;ol&gt;
&lt;li&gt;&lt;b&gt;HASH rules&lt;br&gt;&lt;br&gt;&lt;/b&gt;HASH’es are cryptographic fingerprints that remain regardless of the file name and location. These are especially good when using WL, but not that effective when BL (the reason for this is partly described by the ProduKey example in &lt;a href="http://www.windowsecurity.com/articles/Default-Deny-All-Applications-Part1.html"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;my first SRP article&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;): An MD5 or SHA-1 HASH gives strong software identification of the ‘ProduKey.exe’ binary file, so allowing a specific HASH value to run makes sure that only that version of the executable can run. However, disallowing a specific HASH only affects &lt;i&gt;one&lt;/i&gt; version (or compilation) of the application and a smart user can change the file pretty easily so it is identified as another (unknown) piece of software. The word ‘unknown’ is very important in this matter – it’s really the key to decide between BL or WL – do we want users to be able to execute software we don’t know, yes or no?&lt;br&gt;&lt;br&gt;If users should not be able to run an old version of a specific application, let’s say it’s ‘buggy’ and causing system crashes, using a ‘deny this HASH value’-rule would be a good decision. Please keep in mind that a new version of a given application will always result in a new HASH value that must be allowed – or disallowed. 
&lt;li&gt;&lt;b&gt;Certificate rules&lt;br&gt;&lt;br&gt;&lt;/b&gt;Certificate rules uses signed hashes and provides very strong software identification, but as we trust a given certificate we actually trust all software signed with that specific certificate. This could be a good thing or a bad thing. It’s a good thing if we, for instance, get an application from a third party vendor who signed all the significant files in the application (maybe including DLLs), so instead of making a given number of HASH rules we can just create a single rule that trusts the certificate and we are up and running. But, let’s say I trust a digital certificate used to sign some tool from Microsoft (or any other software vendor) – now my users are able to run all applications signed by that specific certificate… Hmm, so the problem is to know exactly what applications were signed by that certificate? Without that knowledge we don’t know what we have allowed. Instead of allowing just the single application we needed for our users, we might have allowed hundreds of applications from the vendor to run on our systems.&lt;br&gt;&lt;br&gt;Testing of Certificate rules can be done by using these tools: &lt;a href="http://msdn2.microsoft.com/en-us/library/9sh96ycy(vs.80).aspx" target="_blank"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;File Signing Tool (Signcode.exe)&lt;/font&gt;&lt;/u&gt;&lt;/a&gt; &amp;amp; &lt;a href="http://msdn2.microsoft.com/en-us/library/bfsktky3(VS.80).aspx" target="_blank"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;Certificate Creation Tool (Makecert.exe)&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;. 
&lt;li&gt;&lt;b&gt;Path rules&lt;br&gt;&lt;br&gt;&lt;/b&gt;Path rules are the most common and “easy-to-use” rules we have. Path rules can deny or allow a file on a specified location (e.g. “&lt;b&gt;C:\Scripts\Script.VBS&lt;/b&gt;”), a filename (e.g. “&lt;b&gt;Script.VBS&lt;/b&gt;”), a folder (e.g. “&lt;b&gt;C:\Scripts&lt;/b&gt;”), a &lt;b&gt;UNC&lt;/b&gt; path (e.g.”&lt;b&gt;\\SERVER\SHARE\File.VBS&lt;/b&gt;”) or a registry path (e.g. &lt;b&gt;“%[Registry Hive]\[Registry Key Name]\[Value Name]%&lt;/b&gt;”). Path rules can use environment variables (e.g. “&lt;b&gt;%WINDIR%&lt;/b&gt;”) and the wildcards ‘&lt;b&gt;?&lt;/b&gt;’ = one char (e.g. “&lt;b&gt;\\SERVER??\Share\Script.VBS&lt;/b&gt;”) and ‘&lt;b&gt;*&lt;/b&gt;’ = any number of chars (e.g. “&lt;b&gt;*.VBS&lt;/b&gt;”).&lt;br&gt;&lt;br&gt;&lt;i&gt;If you are using path rules a few things need to be addressed:&lt;/i&gt; &lt;br&gt;&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;If a given folder path is set, this also effects all executables in all subfolders 
&lt;li&gt;If a user has write access to a folder that is set to &lt;i&gt;Unrestricted&lt;/i&gt;, the user can &lt;i&gt;copy&lt;/i&gt; any file to that directory and execute it from there. The design should take care of this issue, perhaps by introducing &lt;b&gt;ACL&lt;/b&gt; (Access Control List) settings by the use of Group Policies 
&lt;li&gt;If the user has write access to an executable that is specified as &lt;i&gt;Unrestricted&lt;/i&gt;, the user could overwrite that executable with another one to circumvent the SRP 
&lt;li&gt;If a folder path includes environment variables, like &lt;b&gt;%TEMP%&lt;/b&gt;, even a limited user could change the user environment variables by using the &lt;b&gt;SET&lt;/b&gt; command to another path (&lt;b&gt;SET TEMP=C:\MyFolder&lt;/b&gt;) – and suddenly the user can control what software can be run by copying executables or scripts to that path.&lt;br&gt;&lt;br&gt;&lt;/ul&gt;As stated above, users may try to rename or move disallowed files – or overwrite unrestricted files to circumvent the SRP – this is why HASH or Certificate rules are normally considered ‘best choice’. 
&lt;li&gt;&lt;b&gt;Internet Zone&lt;br&gt;&lt;br&gt;&lt;/b&gt;Internet Explorer security zones can be used to control software installation and applies to only Windows Installer packages (.&lt;b&gt;MSI&lt;/b&gt;) that are run from one of the default Internet zones. These rules are not that common to use.&lt;br&gt;&lt;br&gt;When multiple rules are used they are evaluated in the order mentioned above, the default rule will be evaluated as the last rule – the most specific match will take precedence. &lt;/ol&gt;
&lt;h2&gt;SRP Limitations&lt;/h2&gt;
&lt;p&gt;Some limitations of SRP must be taken into consideration. The scope of Software Restriction Policies is &lt;b&gt;not&lt;/b&gt; the entire operating system as you might expect. SRP do &lt;b&gt;not&lt;/b&gt; apply to the following code:
&lt;ul&gt;
&lt;li&gt;Drivers or other kernel mode software installed 
&lt;li&gt;Any program executed by the local SYSTEM account 
&lt;li&gt;Macros inside of Microsoft Office documents (we have other ways to block those by using group policies) 
&lt;li&gt;Programs written for the common language runtime (these programs use the Code Access Security Policy)&lt;/ul&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;Software Restriction Policies demands a special, and time consuming, workflow when introducing new software and updates in the environment, but besides from that it brings a level of security so much higher than with the “default allow all” setup. Some environments might not be suited for SRP, but my guess is that most networks have computers and/or users for which the SRP technology is ‘&lt;i&gt;spot on&lt;/i&gt;’.
&lt;p&gt;It takes dedication, understanding and hard work to implement a “Default Deny” policy – which might be why it is seldom done… One thing is certain, implementing such policies in the correct way will make sure the network administrators can sleep much better at night.
&lt;p&gt;Over the next couple of years it will be interesting to see if Microsoft will continue to develop this part of the Group Policy environment - or if something even better arrives, who knows…
&lt;p&gt;&lt;strong&gt;External links&lt;/strong&gt;
&lt;p&gt;&lt;a href="http://support.microsoft.com/kb/324036" target="_blank"&gt;&lt;font color="#0000ff"&gt;&lt;u&gt;KB 324036 How To Use Software Restriction Policies in Windows Server 2003&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;
&lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/windowsvista/aa940985.aspx" target="_blank"&gt;&lt;font color="#0000ff"&gt;&lt;u&gt;Technet: Using Software Restriction Policies to Protect Against Unauthorized Software (Vista/Longhorn)&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;
&lt;p&gt;&lt;a href="http://www.microsoft.com/technet/security/prodtech/windowsxp/secwinxp/xpsgch06.mspx" target="_blank"&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;Technet: Software Restriction Policy for Windows XP Clients&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;
&lt;p&gt;&lt;em&gt;If you missed the first part in this article series please go to &lt;/em&gt;&lt;a href="http://www.windowsecurity.com/articles/Default-Deny-All-Applications-Part1.html"&gt;&lt;em&gt;&lt;u&gt;&lt;font color="#0000ff"&gt;Default Deny All Applications (Part 1)&lt;/font&gt;&lt;/u&gt;&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&lt;/em&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Denegar+ejecucion+de+Software&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Varios</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!275.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!275.entry</guid><pubDate>Tue, 19 Jun 2007 16:13:06 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!275/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!275.entry#comment</wfw:comment><dcterms:modified>2007-06-19T16:13:06Z</dcterms:modified></item><item><title>Algo parecido a QoS en ISA SERVER 2004/2006</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!274.entry</link><description>&lt;div&gt;
&lt;p&gt;One of the new features in ISA 2004 SP2 is Diffserv. Diffserv is a method of packet prioritization that applies to all web traffic passing through an ISA 2004 SP2 Server. Using the Diffserv Web filter, the ISA server can scan the Uniform Resource Locator (URL) or domain name and apply packet priority using DiffServ bits. &lt;br&gt;&lt;br&gt;The Diffserv web filter has been given a high priority, and is near the top in the list of Web filters. The Diffserv web filter must be made aware of the size of the request/response being sent and has to inspect the data when it is being sent/recieved by the ISA server. It is crucial that you do not change the priority of the Diffserv web filter. Before we get started configuring this, you should be aware of the following: - Diffserv prioritization only applys to HTTP and HTTPS traffic - ISA may strip Diffserv bits for traffic using other protocols - First packet priority is not assigned to responses coming from the cache - By default, the size of the first chunk is not taken into account for first packet priority To begin, open the ISA Management MMC and expand the Configuration node and then click on General. Click on Specify Diffserv Preferences. &lt;img alt="" src="http://thelazydev.com/images/isa/diffserv.jpg"&gt; 
&lt;p&gt;On the General tab, ensure the box next to &amp;quot;Allow the setting of Diffserv bits according to URLs and domain names&amp;quot; is checked. 
&lt;p&gt;&lt;img alt="" src="http://thelazydev.com/images/isa/diffserv-1.jpg"&gt; 
&lt;p&gt;On the Priorities tab, click Add to create a priority. Enter the name for the priority and the Diffserv Codepoint. The Codepoint is a 6-digit binary value which specifies the priority level. There is more information about the different Diffserv Codepoints at the end of this article. For this example we will use 100110 which is one of the high priority Codepoints. 
&lt;p&gt;&lt;img alt="" src="http://thelazydev.com/images/isa/diffserv-2.jpg"&gt; 
&lt;p&gt;Add another priority called Low and give it a value of 001010. 
&lt;p&gt;&lt;img alt="" src="http://thelazydev.com/images/isa/diffserv-3.jpg"&gt; 
&lt;p&gt;Next select the URLs tab and click Add. Enter the URL (wildcards are supported) and choose one of the priorities you created in the previous steps. 
&lt;p&gt;&lt;img alt="" src="http://thelazydev.com/images/isa/diffserv-4.jpg"&gt; 
&lt;p&gt;Here I have added two URLs, one with high priority and one with low. 
&lt;p&gt;&lt;img alt="" src="http://thelazydev.com/images/isa/diffserv-5.jpg"&gt; 
&lt;p&gt;URL Diffserv settings only apply to HTTP traffic. If you wish to set priorities to HTTPS traffic you must use the Domains setting. 
&lt;p&gt;&lt;img alt="" src="http://thelazydev.com/images/isa/diffserv-6.jpg"&gt; 
&lt;p&gt;Finally, under the Networks tab, you can choose which Network Sets to apply the Diffserv filter to. 
&lt;p&gt;&lt;img alt="" src="http://thelazydev.com/images/isa/diffserv-7.jpg"&gt; 
&lt;p&gt;Once you are done configuring the Diffserv preferences, apply the configuration to the ISA server and you are good to go! 
&lt;p&gt;For more information see: &lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Algo+parecido+a+QoS+en+ISA+SERVER+2004%2f2006&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Isa Server</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!274.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!274.entry</guid><pubDate>Tue, 19 Jun 2007 14:39:13 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!274/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!274.entry#comment</wfw:comment><dcterms:modified>2007-06-19T14:39:13Z</dcterms:modified></item><item><title>SQL server Katmai. Nuestro sql 2005 ya es viejo ;)</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!267.entry</link><description>&lt;div&gt;Ya hay datos de la nueva version de SQL la cual promete un cambio radical en el producto , mas informacion en la url.&lt;br&gt;&lt;br&gt;&lt;a href="http://www.microsoft.com/latam/technet/articulos/tn/2007/may-01.mspx"&gt;http://www.microsoft.com/latam/technet/articulos/tn/2007/may-01.mspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+SQL+server+Katmai.+Nuestro+sql+2005+ya+es+viejo+%3b)&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!267.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!267.entry</guid><pubDate>Wed, 30 May 2007 10:22:41 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!267/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!267.entry#comment</wfw:comment><dcterms:modified>2007-05-30T10:22:41Z</dcterms:modified></item><item><title>Windows Longhorn tiene Nombre !</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!265.entry</link><description>&lt;div&gt;
&lt;p&gt;Finalmente Longhorn tiene nombre!
&lt;p&gt;Windows Server 2008
&lt;p&gt;Mas info:
&lt;p&gt;&lt;a title="http://www.microsoft.com/windowsserver2008/default.mspx" href="http://www.microsoft.com/windowsserver2008/default.mspx"&gt;&lt;u&gt;&lt;font color="#810081"&gt;http://www.microsoft.com/windowsserver2008/default.mspx&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Windows+Longhorn+tiene+Nombre+!&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Windows Server</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!265.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!265.entry</guid><pubDate>Wed, 16 May 2007 15:48:32 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!265/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!265.entry#comment</wfw:comment><dcterms:modified>2007-05-16T15:48:32Z</dcterms:modified></item><item><title>Crear archivos ejecutables , a partir de un script.</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!254.entry</link><description>&lt;div&gt;&lt;span style="font-weight:400"&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;Les dejo una utilidad excelente en el caso de que necesitemos encapsular ciertos script, por ejemplo si tenemos codigo que no queremos que otro vea , como ser un password en texto plano.&lt;br&gt;&lt;br&gt;Se trata de una utilidad de Windows vista / Windows XP  iexpress.&lt;br&gt;&lt;br&gt;En la siguiente URL encontraran informacion al respecto.&lt;br&gt;&lt;/font&gt;&lt;a href="http://www.petri.co.il/create_executable_with_iexpress.htm"&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;http://www.petri.co.il/create_executable_with_iexpress.htm&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Crear+archivos+ejecutables+%2c+a+partir+de+un+script.&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Varios</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!254.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!254.entry</guid><pubDate>Thu, 05 Apr 2007 12:12:52 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!254/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!254.entry#comment</wfw:comment><dcterms:modified>2007-04-05T13:13:15Z</dcterms:modified></item><item><title>Agregar informacion al registro - Muy interesante.</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!253.entry</link><description>&lt;div&gt;
&lt;p&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;RegPol &lt;/font&gt;
&lt;table dir=ltr style="float:right" cellspacing=5 cellpadding=5 width="25%" border=0&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;&lt;/font&gt;&lt;/tbody&gt;&lt;/table&gt;
&lt;h2&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;Description&lt;/font&gt;&lt;/h2&gt;
&lt;p&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;This command line utility enables you to import .REG files even if the Group Policy is set to restrict the registry editing tools. &lt;/font&gt;
&lt;p&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;If you use this policy setting, just use regpol.zip to import .REG files instead of the traditional 'Regedit –s' and 'Reg import'. &lt;/font&gt;
&lt;p&gt;&lt;font size=2&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;b&gt;Requirements:&lt;/b&gt; Windows 2000/XP/2003 &lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font size=2&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;b&gt;Current version:&lt;/b&gt; 1.2.8 &lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font size=2&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;b&gt;Version highlights:&lt;/b&gt; Minor fixes &lt;/font&gt;&lt;/font&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;span dir=ltr&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;&amp;quot;Windows Registry Editor Version 5.00&amp;quot; error&lt;/span&gt;&lt;/span&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/font&gt;
&lt;li&gt;
&lt;p&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif"&gt;&lt;span dir=ltr&gt;&lt;span style="font-size:10pt;font-family:Arial"&gt;“Subscript out of range&amp;quot; error&lt;/span&gt;&lt;/span&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;/font&gt;&lt;/ul&gt;
&lt;h2&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;Download&lt;/font&gt;&lt;/h2&gt;
&lt;p&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt;Download &lt;/font&gt;&lt;a href="http://sedelrio.spaces.live.com/mmm2007-02-10_13.26/software/regpol.zip"&gt;&lt;u&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" color="#0000ff" size=2&gt;regpol.zip&lt;/font&gt;&lt;/u&gt;&lt;/a&gt;&lt;font face="Verdana, Geneva, Arial, Sans-serif" size=2&gt; (11kb)&lt;/font&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Agregar+informacion+al+registro+-+Muy+interesante.&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Varios</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!253.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!253.entry</guid><pubDate>Wed, 04 Apr 2007 14:35:22 GMT</pubDate><slash:comments>0</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!253/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!253.entry#comment</wfw:comment><dcterms:modified>2007-04-05T13:13:37Z</dcterms:modified></item><item><title>Windows Vista UAC  - La operación solicitada requiere elevación</title><link>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!251.entry</link><description>&lt;div&gt;&lt;span&gt;Esto tiene que ver con el UAC (User Acces control) y es una de las nuevas caracteristicas en cuanto a seguridad de Windows Vista. basicamente necesitas un privilegio superior al que tienes en ese momento. Afortunadamente esto se puede modificar desde las politicas de grupo Locales.&lt;br&gt;&lt;br&gt;Configuración de seguridad local-&amp;gt;Directivas locales-&amp;gt;Opciones de seguridad&lt;br&gt;
&lt;p&gt;Para iniciar el administrador de directivas de seguridad, haga clic en el botón Inicio, seleccione Ejecutar, indique el nombre del programa secpol.msc en el cuadro de diálogo Ejecutar y, a continuación, haga clic en Aceptar.&lt;br&gt;Nombre de la directiva: Control de cuenta de usuario: comportamiento del indicador de elevación&lt;br&gt;Descripción determina cómo se notifica a un usuario antes de ejecutar un programa con permisos superiores.&lt;br&gt;• No preguntar: eleva los privilegios en modo silencioso.&lt;br&gt;• Pedir consentimiento: pregunta al usuario si desea continuar (Sí/No).&lt;br&gt;• Pedir credenciales: exige la contraseña de inicio de sesión del usuario antes de continuar (*).
&lt;p&gt;Esta directiva sólo se aplica cuando UAC está habilitado.
&lt;p&gt;Nota: en la mayoría de los casos, la selección de No preguntar NO es recomendable. Permitiría a las aplicaciones de UAC iniciar aplicaciones de administrador sin su conocimiento ni consentimiento.&lt;br&gt;Nota: el asterisco (*) indica la configuración predeterminada.&lt;/span&gt;&lt;/div&gt;&lt;img src="http://c.services.spaces.live.com/CollectionWebService/c.gif?cid=-7495334125223653715&amp;page=RSS%3a+Windows+Vista+UAC++-+La+operaci%c3%b3n+solicitada+requiere+elevaci%c3%b3n&amp;referrer=" width="1px" height="1px" border="0" alt=""&gt;&lt;img style="position:absolute" alt="" width="0px" height="0px" src="http://c.live.com/c.gif?NC=31263&amp;amp;NA=1149&amp;amp;PI=73329&amp;amp;RF=&amp;amp;DI=3919&amp;amp;PS=85545&amp;amp;TP=sedelrio.spaces.live.com&amp;amp;GT1=sedelrio"&gt;</description><category>Windows Vista</category><comments>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!251.entry#comment</comments><guid isPermaLink="true">http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!251.entry</guid><pubDate>Wed, 04 Apr 2007 02:03:41 GMT</pubDate><slash:comments>5</slash:comments><msn:type>blogentry</msn:type><live:type>blogentry</live:type><live:typelabel>Blog entry</live:typelabel><wfw:commentRss>http://sedelrio.spaces.live.com/blog/cns!97FB3953392E4EAD!251/comments/feed.rss</wfw:commentRss><wfw:comment>http://sedelrio.spaces.live.com/Blog/cns!97FB3953392E4EAD!251.entry#comment</wfw:comment><dcterms:modified>2007-04-04T02:03:41Z</dcterms:modified></item></channel></rss>