bueno todos tenemos nuestros trukitos para mejorar nuestra experiencia en la pc y en surf d internet, q tweaks maxifican tu experiencia???
por ejemplo yo utilizo el f11 para aumentar el tamño de mi browser(firebird) al maximo y asi poder utilizar el max d mi monitor
otra cosa q hago es el autologon:
start, run, control userpasswords2 sigue las instrucciones y pa fuera.....
tengo un shortcut para restart en mi desktop
1. Crea un shortcut (Right-click on desktop, select New > Shortcut).
2. Para location, escribe:
shutdown -r -t 0
3.Next, ponle un nombre al shortcut ("Restart" is appropriate), y dale a Finish
otra cosa q hago es aumentar el cache d los icons a 8192
para ahcerlo vas a :
HKEY_LOCAL_
MACHINE-Software-Microsoft-Windows-currentversion-Explorer
a la derecha busca max cached icons y le cambias el valor por 8192
si no existe crea el entry, para eso righl click en un area en blanco, New String Value y le llamas Max Cached Icons, le clikeas dos veces y le asignas el calor d 8192
q otros tweaks conocen y utilizan?
Post your Fav Tweaks!!!!
No son tweaks pero truquitos que conozco. Uso ese de F11 para que el browser se vaya "full screen" (IE). Si voy a entrar una direccion que sea www.[whatever].com solo escribo la parte del medio y doy Ctrl-Enter. Automáticamente se añade el http://www. y el .com. Por ejemplo para ir a Google solo escribo "google" en la barra de dirección y doy Ctrl-Enter para obtener http://www.google.com como la dirección completa. Solo funciona para .com y no .org como este site.
Pero para direcciones cortas es más rápido que ir a Favorites.
Otros trucos que uso todo el tiempo es Ctrl-N para abrir una nueva ventana del browser, Shift-click en un link para abrirlo en una nueva ventana.
Si quieres imprimir desde una página que tiene "frames" y solo quieres imprimir un frame en específico dale right-click a ese frame y escoge Print.
Una forma rapida y sucia de abrir los discos en el "root" es ir a Start/Run... y entrar la letra del drive, ejemplo "c:" y Enter y ahi está. Sirve para cuando no tienes el Desktop visible y no tienes que abrir My Computer.
Una forma rápida de ver la pantalla de "Properties" en la mayoría de los sitios que hay esa opción es Alt-Enter. Haces un solo click en el objeto que quieres ver y das Alt-Enter. Esa misma tecla cambia entre "full screen" y normal en Windows Media Player.
Hay más pero no me acuerdo de repente.
Otros trucos que uso todo el tiempo es Ctrl-N para abrir una nueva ventana del browser, Shift-click en un link para abrirlo en una nueva ventana.
Si quieres imprimir desde una página que tiene "frames" y solo quieres imprimir un frame en específico dale right-click a ese frame y escoge Print.
Una forma rapida y sucia de abrir los discos en el "root" es ir a Start/Run... y entrar la letra del drive, ejemplo "c:" y Enter y ahi está. Sirve para cuando no tienes el Desktop visible y no tienes que abrir My Computer.
Una forma rápida de ver la pantalla de "Properties" en la mayoría de los sitios que hay esa opción es Alt-Enter. Haces un solo click en el objeto que quieres ver y das Alt-Enter. Esa misma tecla cambia entre "full screen" y normal en Windows Media Player.
Hay más pero no me acuerdo de repente.
Luis
estas estan buenas!!
sabes ando buscando un trukito o un tweak q me permita ver los hidden files y volverlos a ocultar sin tener q ir a folder options, si alguie nsabe me deja saber
aki hay otra
regedit:
HKEY_CURRENT_USER/Control Panel/Desktop
Selecciona MenuShowDelay de la lista de la derecha
Right click, select Modify.
Cambia el valor a 0, o a algo menor q el default
Reboot
Si tienes otras cuentas has lo mismo en:
HKEY_USERS/DEFAULT/Control Panel/Desktop
sabes ando buscando un trukito o un tweak q me permita ver los hidden files y volverlos a ocultar sin tener q ir a folder options, si alguie nsabe me deja saber
aki hay otra
regedit:
HKEY_CURRENT_USER/Control Panel/Desktop
Selecciona MenuShowDelay de la lista de la derecha
Right click, select Modify.
Cambia el valor a 0, o a algo menor q el default
Reboot
Si tienes otras cuentas has lo mismo en:
HKEY_USERS/DEFAULT/Control Panel/Desktop
Hay un programa que se llama Xteq que es completamente gratis y puedes hacer tweaks a tu PC a gusto y gana. Bien recomendado.
in my world you don't exist
rojo y negro
rojo y negro
Disable DNS Caching
Lo copias en notepad y lo guardas como ".bat file"
CLS
@ECHO THIS BATCH FILE WILL EXPORT THE REGISTRY KEYS AFFECTED,
@ECHO THEN APPLY THE REGISTRY PATCHES
@ECHO YOU CAN MERGE THE EXPORT_FILENAME TO UNDO THE CHANGES
@SET /P userchoice1=Select "y" to continue
@IF "%userchoice1%"=="Y" GOTO AGREE1
@IF "%userchoice1%"=="y" GOTO AGREE1
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:AGREE1
IF EXIST "%userprofile%\My Documents\RegBackup\EXPORT_DisableDNSCaching.reg" GOTO AGREE2
GOTO CONT
:AGREE2
CLS
@ECHO THE EXPORTED FILE ALREADY EXISTS
@ECHO DO YOU WANT TO OVERWRITE
@SET /P userchoice2=Select "y" to continue
@IF "%userchoice2%"=="Y" GOTO CONT
@IF "%userchoice2%"=="y" GOTO CONT
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:CONT
@echo off
IF EXIST "%userprofile%\My Documents\RegBackup" GOTO CONT2
mkdir "%userprofile%\My Documents\RegBackup"
GOTO CONT2
:CONT2
cd %userprofile%\My Documents\RegBackup
regedit /e EXPORT_DisableDNSCaching.reg HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters
GOTO CONT3
:CONT3
cd %userprofile%\desktop
echo > DisableDNSCaching.reg Windows Registry Editor Version 5.00
echo >> DisableDNSCaching.reg [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
echo >> DisableDNSCaching.reg "NegativeCacheTime"=dword:00000000
echo >> DisableDNSCaching.reg "NetFailureCacheTime"=dword:00000000
echo >> DisableDNSCaching.reg "NegativeSOACacheTime"=dword:00000000
regedit DisableDNSCaching.reg
del DisableDNSCaching.reg
@ECHO SUCCESS
@PAUSE
EXIT
CLS
@ECHO THIS BATCH FILE WILL EXPORT THE REGISTRY KEYS AFFECTED,
@ECHO THEN APPLY THE REGISTRY PATCHES
@ECHO YOU CAN MERGE THE EXPORT_FILENAME TO UNDO THE CHANGES
@SET /P userchoice1=Select "y" to continue
@IF "%userchoice1%"=="Y" GOTO AGREE1
@IF "%userchoice1%"=="y" GOTO AGREE1
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:AGREE1
IF EXIST "%userprofile%\My Documents\RegBackup\EXPORT_DisableDNSCaching.reg" GOTO AGREE2
GOTO CONT
:AGREE2
CLS
@ECHO THE EXPORTED FILE ALREADY EXISTS
@ECHO DO YOU WANT TO OVERWRITE
@SET /P userchoice2=Select "y" to continue
@IF "%userchoice2%"=="Y" GOTO CONT
@IF "%userchoice2%"=="y" GOTO CONT
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:CONT
@echo off
IF EXIST "%userprofile%\My Documents\RegBackup" GOTO CONT2
mkdir "%userprofile%\My Documents\RegBackup"
GOTO CONT2
:CONT2
cd %userprofile%\My Documents\RegBackup
regedit /e EXPORT_DisableDNSCaching.reg HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters
GOTO CONT3
:CONT3
cd %userprofile%\desktop
echo > DisableDNSCaching.reg Windows Registry Editor Version 5.00
echo >> DisableDNSCaching.reg [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
echo >> DisableDNSCaching.reg "NegativeCacheTime"=dword:00000000
echo >> DisableDNSCaching.reg "NetFailureCacheTime"=dword:00000000
echo >> DisableDNSCaching.reg "NegativeSOACacheTime"=dword:00000000
regedit DisableDNSCaching.reg
del DisableDNSCaching.reg
@ECHO SUCCESS
@PAUSE
EXIT
FasterPageLoading
Copialo a un notepad y guardalo con la extencion ".bat"
CLS
@ECHO THIS BATCH FILE WILL EXPORT THE REGISTRY KEYS AFFECTED,
@ECHO THEN APPLY THE REGISTRY PATCHES
@ECHO YOU CAN MERGE THE EXPORT_FILENAME TO UNDO THE CHANGES
@SET /P userchoice1=Select "y" to continue...
@IF "%userchoice1%"=="Y" GOTO AGREE1
@IF "%userchoice1%"=="y" GOTO AGREE1
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:AGREE1
IF EXIST "%userprofile%\My Documents\RegBackup\EXPORT_FasterPageLoading.reg" GOTO AGREE2
GOTO CONT
:AGREE2
CLS
@ECHO THE EXPORTED FILE ALREADY EXISTS
@ECHO DO YOU WANT TO OVERWRITE
@SET /P userchoice2=Select "y" to continue, "n" to continue and not create an export file, or nothing to cancel...
@IF "%userchoice2%"=="Y" GOTO CONT
@IF "%userchoice2%"=="y" GOTO CONT
@IF "%userchoice2%"=="N" GOTO CONT3
@IF "%userchoice2%"=="n" GOTO CONT3
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:CONT
@echo off
IF EXIST "%userprofile%\My Documents\RegBackup" GOTO CONT2
mkdir "%userprofile%\My Documents\RegBackup"
GOTO CONT2
:CONT2
cd %userprofile%\My Documents\RegBackup
regedit /e EXPORT_FasterPageLoading.reg HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider
GOTO CONT3
:CONT3
cd %userprofile%\desktop
echo > FasterPageLoading.reg Windows Registry Editor Version 5.00
echo >> FasterPageLoading.reg [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider]
echo >> FasterPageLoading.reg "Class"=dword:00000008
echo >> FasterPageLoading.reg "DnsPriority"=dword:00000001
echo >> FasterPageLoading.reg "HostsPriority"=dword:00000001
echo >> FasterPageLoading.reg "LocalPriority"=dword:00000001
echo >> FasterPageLoading.reg "NetbtPriority"=dword:00000001
regedit FasterPageLoading.reg
del FasterPageLoading.reg
CLS
@ECHO SUCCESS
@PAUSE
EXIT
CLS
@ECHO THIS BATCH FILE WILL EXPORT THE REGISTRY KEYS AFFECTED,
@ECHO THEN APPLY THE REGISTRY PATCHES
@ECHO YOU CAN MERGE THE EXPORT_FILENAME TO UNDO THE CHANGES
@SET /P userchoice1=Select "y" to continue...
@IF "%userchoice1%"=="Y" GOTO AGREE1
@IF "%userchoice1%"=="y" GOTO AGREE1
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:AGREE1
IF EXIST "%userprofile%\My Documents\RegBackup\EXPORT_FasterPageLoading.reg" GOTO AGREE2
GOTO CONT
:AGREE2
CLS
@ECHO THE EXPORTED FILE ALREADY EXISTS
@ECHO DO YOU WANT TO OVERWRITE
@SET /P userchoice2=Select "y" to continue, "n" to continue and not create an export file, or nothing to cancel...
@IF "%userchoice2%"=="Y" GOTO CONT
@IF "%userchoice2%"=="y" GOTO CONT
@IF "%userchoice2%"=="N" GOTO CONT3
@IF "%userchoice2%"=="n" GOTO CONT3
CLS
@ECHO CANCELLED
@PAUSE
EXIT
:CONT
@echo off
IF EXIST "%userprofile%\My Documents\RegBackup" GOTO CONT2
mkdir "%userprofile%\My Documents\RegBackup"
GOTO CONT2
:CONT2
cd %userprofile%\My Documents\RegBackup
regedit /e EXPORT_FasterPageLoading.reg HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider
GOTO CONT3
:CONT3
cd %userprofile%\desktop
echo > FasterPageLoading.reg Windows Registry Editor Version 5.00
echo >> FasterPageLoading.reg [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider]
echo >> FasterPageLoading.reg "Class"=dword:00000008
echo >> FasterPageLoading.reg "DnsPriority"=dword:00000001
echo >> FasterPageLoading.reg "HostsPriority"=dword:00000001
echo >> FasterPageLoading.reg "LocalPriority"=dword:00000001
echo >> FasterPageLoading.reg "NetbtPriority"=dword:00000001
regedit FasterPageLoading.reg
del FasterPageLoading.reg
CLS
@ECHO SUCCESS
@PAUSE
EXIT
Clear Page File on Shutdown
Open Reg Edit
Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management
Select ClearPageFileAtShutdown from the list on the right.
Right on it and select Modify.
Change the value to 1 to enable.
Reboot your computer.
Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management
Select ClearPageFileAtShutdown from the list on the right.
Right on it and select Modify.
Change the value to 1 to enable.
Reboot your computer.
Bueno, esto no es un truco, es mas un "feature" de firebird.
Cuando abro el browser aparecen todas las páginas que visito constantemente como endi.com, slashdot.org, dsllibre.org, aposento.com y simtropolis.com pueden ser muchas mas.
Para hacer esto vas option->general->location y escribes todas las direcciones que quieras separandolas con "|" , ejemplo www.slashdot.org|www.dsllibre.org etc etc etc...
Es conveniente pero a veces se vuelve molestoso...
Cuando abro el browser aparecen todas las páginas que visito constantemente como endi.com, slashdot.org, dsllibre.org, aposento.com y simtropolis.com pueden ser muchas mas.
Para hacer esto vas option->general->location y escribes todas las direcciones que quieras separandolas con "|" , ejemplo www.slashdot.org|www.dsllibre.org etc etc etc...
Es conveniente pero a veces se vuelve molestoso...
