viernes, 2 de diciembre de 2011
REPARAR .EXE EN WINDOWS
2. When Command Prompt is up, type cd \windows
3. Type regedit to open up the Registries.
4. Expand HKEY_CLASSES_ROOT and find the folder of .exe
5. Without expanding it, on the main .exe folder, Right-click (Default) and Modify. Change the Value Data to exefile
6. Now in the same HKEY_CLASSES_ROOT find the folder of exefile and Right-click (Default) and Modify. Change the Value Data to "%1" %*
7. Lastly expand exefile, expand shell, expand open, click on the command folder, Right-click (Default) and Modify. Change the Value Data to "%1" %*
8. Close Regedit and Restart the computer. When restarted, EXE files should not prompt you to choose a program to run it now and load correctly.
miércoles, 26 de octubre de 2011
HP y ESXi 5.0
En versiones anteriores lo más sencillo era bajar una imagen preparada de HP con los agentes. Con la nueva versión ha cambiado el procedimiento. Queda como sigue:
- Descargar desde la página de HP el bundle con los agentes desde la siguiente URL:
- Subir el archivo .zip que se descarga a un datastore del servidor (local o cabina)
- Ejecutar el siguiente comando en el host ESXi:
- En el resultado del comando veremos si se ha instalado correctamente.
- Es necesario reiniciar el servidor una vez instalados de los agentes.
lunes, 26 de septiembre de 2011
Cambio de serial W7
http://social.technet.microsoft.com/Forums/es-ES/windows7es/thread/a00c2fa8-312c-4135-b41e-60bca180b837/
Boton derecho en equipo, propiedades, y abajo. cambiar el product key.
Tambien se puede hacer con el comando slmgr
slmgr -dli (this will display the current activation/licensing info of the pc your on)
slmgr -ipk xxxx-xxxx-xxxx-xxxx (allows you to replace the current product key with the specified)
slmgr -xpr (shows expiration date of current license)
slmgr -upk (uninstalls current product key and i would assume puts license back to trial state)
slmgr -ato (activates current pc’s license)
slmgr -skms activationservername
or
slmgr -skms port
or
slmgr -skms activationservername:port (sets KMS server used for activation and/or port, ie slmgr -skms 192.168.10.1:8090 or slmgr -skms KMSServer:8090)
slmgr -rearm (resets the licensing status of the machine)
slmgr -ckms (clears the name of KMS server used to default and port to default)
miércoles, 7 de septiembre de 2011
Bloqueando parásitos no deseados.
Cisco VPN Client error 27850
El error que nos da es:
Error 27850. Unable to manage network component.
Operating system corruption may be preventing installation.
La solución pasa por esta guia que está publicada en los foros de cisco y que pego a continuación.
En un resumen, consiste en desinstalar y reinstalar el Deterministic NDIS Extender de citrix.
Is your Windows XP 32-bit or 64-bit?
There are 2 version of VPN Client 5.0.07.0290:
32-bit: vpnclient-win-msi-5.0.07.0290-k9.exe
64-bit: vpnclient-winx64-msi-5.0.07.0290-k9.exe
Please kindly make sure you use the right software.
Here are steps that will help with the uninstallation:
1) Remove the VPN Client (any version) from the machine using the MSI cleanup tool
http://support.microsoft.com/kb/290301
Upgrade the DNE using this link of Deterministic Networks
http://www.deterministicnetworks.com/support/dnesupport.asp
Run the WINFIX application and then the DNE upgrade.
2) Take a backup of the registry.
3) From your desktop, go to Start > Run and type regedit.
4) Remove the following keys:
a) Go to HKEY_LOCAL_MACHINE > SOFTWARE > Cisco Systems > VPN Client.
b) Go to HKEY_LOCAL_MACHINE > SOFTWARE > Deterministic Networks and remove the keys.
Note: Sometimes the system will not allow for the removal of this key.
c) Go to HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > Uninstall >{5624c000-b109-11d4-9db4-00e0290fcac5}.
d) Delete all the old Deterministic NDIS Extender (DNE) files: any file starting with DNE as all are files coming along with VPN Client installations.
dne2000.sys from %SystemRoot%\system32\drivers
dne2000m.inf and dne2000m.pnf from %SystemRoot%\inf
e) The Original Equipment Manufacturers (OEM) enumeration of the dne2000.inf and dne2000.pnf files.
The OEM enumeration .inf file is a file called "oem (some numeric value).inf."
For example, oem2.inf and oem2.pnf.
Note: Be careful to remove only OEM files from the DNE.
dneinobj.dll from %SystemRoot%\system32. You may need to reboot before this file can be removed.
f) Delete the following file: cvpndrv.sys from %SystemRoot%\system32\drivers
5) Reboot the machine
6) Find for the CSGina.dll file in the system32 folder rename it to CSGina.old
7) Reboot the machine
8) Disable any firewall if any is installed.
Hope that helps.
martes, 16 de agosto de 2011
Comprobación garantía productos HP
http://h20566.www2.hp.com/portal/site/hpsc/public/wc/home/
jueves, 13 de enero de 2011
Redirección múltiple de puertos en Cisco
No obstante existe un truco para hacer un NAT de un rango de puertos: creando una 'lista' de ips rotatorias para NATear junto a una lista de acceso con el rango de puertos deseado.
Primero creamos la lista de direcciones rotatorias. Como solo queremos que redirija estos puertos a una IP, la IP de inicio será la misma que la final:
En segundo lugar creamos la lista de acceso con los rangos que queremos redirigir:ip nat pool server 192.168.0.10 192.168.0.10 netmask 255.255.255.0 type rotary
Y por último realizamos el NATeo asociando la lista de acceso que incluye los rangos de los puertos con la lista de IPs de destino (una en nuestro caso):access-list 100 remark SERVER_FORWARDS
access-list 100 permit tcp any any range 1 1024
access-list 100 permit udp any any eq 5060
ip nat inside destination list 100 pool server
sábado, 8 de enero de 2011
Permisos especiales en Linux ext2
Con la utilidad 'chattr' se pueden establecer permisos a través del sistema de ficheros, que complementan y amplían los permisos normales que se pueden dar con 'chmod'.
En concreto, con esta utilidad se pueden establecer los siguientes permisos:
- append only (a)
- compressed (c)
- no dump (d)
- immutable (i)
- data journalling (j)
- secure deletion (s)
- no tail-merging (t)
- undeletable (u)
- no atime updates (A)
- synchronous directory updates (D)
- synchronous updates (S)
- top of directory hierarchy (T)
Los dejo en inglés para mantener la compatibilidad