Día: 17 agosto, 2009

>Éste es un pequeño script, que os modifica el Shell, y nos muestra en el menú contextual de cada carpeta la entrada «Command Prompt Here».

Es muy útil para aquellos que trabajan bastante desde la linea de comandos, y necesitan acceso a CMD desde cualquier carpeta del Explorador de archivos.

Con éste código podemos sacar el acceso:
Set objShell = CreateObject(«WScript.Shell»)
objShell.RegWrite «HKCR\Folder\Shell\MenuText\Command\», «cmd.exe /k cd » & chr(34) & «%1» & chr(34)
objShell.RegWrite «HKCR\Folder\Shell\MenuText\», «Command Prompt Here»

un saludo.

>
La gran mayoría de los portátiles se mueven en diferentes redes, con lo que toca
configurar continuamente las propiedades de red en ellos. Para trabajar un poco
menos nos puede ayudar el comando «netsh». En la red 1 abrimos un «cmd» y
tecleamos:
netsh dump>red_1.dmp

O si tan sólo quieres la configuración del adaptador de red (que suele ser lo más
habitual):
netsh -c interface dump>red_1.dmp
Cuando queramos restaurar la configuración de esta red, abrimos un «cmd» y
tecleamos:
netsh exec red_1.dmp

Si tenemos a un usuario que se mueve entre dos redes de forma habitual(por ejemplo
entre ,dos sucursales) podemos hacer lo mismo en cada una de ellas, de forma que se
puede restaurar las propiedades de red de forma cómoda. Es más, nos podemos crear
un fichero bat red_1.bat y otro red_2.bat, que contengan la instrucción «netsh exec
fichero_que_corresponda.dmp» y de esa manera el propio usuario (siempre y
cuando tenga privilegios de administrador) podrá cambiar las propiedades de red
según esté en un sitio o en otro simplemente con un doble click y reiniciando a
continuación.
Hay que señalar que este mecanismo no cambia las membresías a dominio.
Si no te vale hacerlo así, tambien hay software de terceros para alternar entre redes,
como, por ejemplo:
Mobile NetSwitch
http://mobilenetswitch.com/Index.htm

>EL viernes 14/08/09 se puso a disposición de los Techneters la versión final de la nueva versión de Windows Server 2008, la R2.
Si que trae algunas mejoras que son dignas de ver, por ejemplo las relacionadas con Active Directory.

windows-2008-r2-active-directory-administrative-center2 Active Directory Domain Services in Windows Server 2008 R2 support a new forest functional level. I am not sure if all of the features described here require the R2 functional level. I will try to find out more about this issue soon. The better PowerShell support is probably the most important enhancement. However, my favorite new feature is the new Recycle Bin.

Powershell Cmdlets

They replace the current Active Directory command line tools. There are about 85 Active Directory-related PowerShell cmdlets

Active Directory Administrative Center

windows-server-2008-r2-ad-create-userThe Active Directory Administrative Center is a new task-oriented user interface for the Active Directory Services. You can perform similar tasks as with the Active Directory Users and Computers console (ADUC). It is based on the new PowerShell cmdlets and displays the PowerShell commands that correspond to the tasks performed with the GUI.

Recycle Bin

Accidently deleted Active Directory objects can be restored from the Recycle Bin. (Requires R2 functional level)

GA_googleFillSlot(«Content-Middle»);

Offline Domain Join

windows-2008-r2-djoin.exe Admins can automate the joining of a Windows 7 machine to a domain during deployment with an XML file. The target computer can be offline during the deployment process. The tool that is used to join the domain is djoin.exe.

Managed Service Accounts

If the password of an account that is used as identity for services is changed by an admin, the managed service account feature will update all services automatically. (Requires R2 functional level)

Authentication Assurance

Authentication Assurance provides an authentication mechanism that allows administrators to map specific certificates to security groups using certificate policies. Users logged on with a smart card, USB token, or some other type of certificate logon method can be distinguished in this way. This feature can be used to grant external users access to corporate resources using Active Directory Federated Services. (Requires R2 functional level)

Sander Berkouwer described the new Active Directory features in more detail.

A %d blogueros les gusta esto: