Menu en cascada para Windows 8 - Reiniciar equipo
Imágenes:
Instrucciones:
1. Descargar el siguiente archivo:
->
FIXED:
-> Para Windows 8 64 Bit
2. Instalarlo.
Que lo disfruten!
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
@Echo OFF
REM By Elektro H@cker
REG ADD "HKCR\*\shell\Seleccionar" /V "MUIVerb" /T "REG_SZ" /D "Seleccionar" /F
REG ADD "HKCR\*\shell\Seleccionar" /V "icon" /T "REG_SZ" /D "imageres.dll,-5308" /F
REG ADD "HKCR\*\shell\Seleccionar" /V "position" /T "REG_SZ" /D "middle" /F
REG ADD "HKCR\*\shell\Seleccionar" /V "SubCommands" /T "REG_SZ" /D "Windows.selectall;Windows.selectnone;Windows.invertselection" /F
REG ADD "HKCR\Folder\shell\Seleccionar" /V "MUIVerb" /T "REG_SZ" /D "Seleccionar" /F
REG ADD "HKCR\Folder\shell\Seleccionar" /V "position" /T "REG_SZ" /D "middle" /F
REG ADD "HKCR\Folder\shell\Seleccionar" /V "icon" /T "REG_SZ" /D "imageres.dll,-5308" /F
REG ADD "HKCR\Folder\shell\Seleccionar" /V "SubCommands" /T "REG_SZ" /D "Windows.selectall;Windows.selectnone;Windows.invertselection" /F
REG ADD "HKCR\Directory\Background\shell\Seleccionar" /V "MUIVerb" /T "REG_SZ" /D "Seleccionar" /F
REG ADD "HKCR\Directory\Background\shell\Seleccionar" /V "position" /T "REG_SZ" /D "middle" /F
REG ADD "HKCR\Directory\Background\shell\Seleccionar" /V "icon" /T "REG_SZ" /D "imageres.dll,-5308" /F
REG ADD "HKCR\Directory\Background\shell\Seleccionar" /V "SubCommands" /T "REG_SZ" /D "Windows.selectall" /F
REG ADD "HKCR\LibraryFolder\Background\shell\Seleccionar" /V "MUIVerb" /T "REG_SZ" /D "Seleccionar" /F
REG ADD "HKCR\LibraryFolder\Background\shell\Seleccionar" /V "position" /T "REG_SZ" /D "middle" /F
REG ADD "HKCR\LibraryFolder\Background\shell\Seleccionar" /V "icon" /T "REG_SZ" /D "imageres.dll,-5308" /F
REG ADD "HKCR\LibraryFolder\Background\shell\Seleccionar" /V "SubCommands" /T "REG_SZ" /D "Windows.selectall;Windows.selectnone;Windows.invertselection" /F
Cita de: Lady Laura en 15 Septiembre 2013, 16:45 PMPD: En el otro hilo que tengo abierto, has puesto el código sin ningún tipo de problema y aunque no es lo que buscaba, no te has quejado.
Cita de: Lady Laura en 15 Septiembre 2013, 16:45 PMSi no quieres ayudar, no ayudes, pero si vas a hacerlo hazlo bien.
Cita de: Lady Laura en 15 Septiembre 2013, 15:49 PMNecesito el código final
estoy segura que lo sacaréis.
Cita de: Lady Laura en 15 Septiembre 2013, 09:31 AMOtro desafio XD.
PD: El desafio todavía no ha sido superado y el del otro hilo tampoco XD
TASKLIST /?
Find /?
Ping /? | Timeout /?
MsgBox()
Cita de: Lady Laura en 15 Septiembre 2013, 09:31 AMOtro desafio XD.
@echo off & SetLocal EnableDelayedExpansion
Title Easy Add SafeModes in Windows 8
REM By Elektro H@cker
::: Customize your safe mode descriptions here:
:::
Set "SafeMode_Description=Windows 8 Modo Seguro"
Set "SafeModeNetrowk_Description=Windows 8 Modo Seguro con funciones de Red"
Set "SafeModeShell_Description=Windows 8 Modo Seguro con Consola"
:::
REM [ STEP 1 ]
REM Add the new Boot loader entries
Echo [+] Adding Boot Loader entries... | MORE
:: Add the entries and make sure they are not already added
(
Bcdedit /Enum /V | FINDSTR /I "^Descrip" | FIND /I "%SafeMode_Description%" 1>NUL && (
Echo [X] Duplicate found: "%SafeMode_Description%")
) || (
Echo [+] Adding: "%SafeMode_Description%"
Bcdedit /Copy {current} /D "%SafeMode_Description%" 1>NUL
)
(
Bcdedit /Enum /V | FINDSTR /I "^Descrip" | FIND /I "%SafeModeNetrowk_Description%" 1>NUL && (
Echo [X] Duplicate found: "%SafeModeNetrowk_Description%")
) || (
Echo [+] Adding: "%SafeModeNetrowk_Description%"
Bcdedit /Copy {current} /D "%SafeModeNetrowk_Description%" 1>NUL
)
(
Bcdedit /Enum /V | FINDSTR /I "^Descrip" | FIND /I "%SafeModeShell_Description%" 1>NUL && (
Echo [X] Duplicate found: "%SafeModeShell_Description%")
) || (
Echo [+] Adding: "%SafeModeShell_Description%"
Bcdedit /Copy {current} /D "%SafeModeShell_Description%" 1>NUL
)
REM [ STEP 2 ]
REM Store the necessary values
Echo+ & Echo [+] Getting Boot Loader Information... | MORE
:: Get the boot loader identifiers
For /F "Tokens=2" %%# in (
'Bcdedit /Enum /V ^| FINDSTR /I "^Identif"'
) do (
SET /A ID_INDEX+=1
Set "ID!ID_INDEX!=%%#"
)
:: Get the boot loader descriptions
For /F "Tokens=1,*" %%A in (
'Bcdedit /Enum /V ^| FINDSTR /I "^Descrip"'
) do (
SET /A DES_INDEX+=1
Set "DES!DES_INDEX!=%%B"
)
REM [ STEP 3 ]
REM Set the boot config parametters
:: Set the Boot config parametters
Echo [+] Setting Boot Loader parametters... | MORE
For /L %%X in (1, 1, %ID_INDEX%) do (
If /I "!DES%%X!" EQU "%SafeMode_Description%" (
Bcdedit /Set "!ID%%X!" safeboot Minimal 1>NUL
)
If /I "!DES%%X!" EQU "%SafeModeNetrowk_Description%" (
Bcdedit /Set "!ID%%X!" safeboot Network 1>NUL
)
If /I "!DES%%X!" EQU "%SafeModeShell_Description%" (
Bcdedit /Set "!ID%%X!" safeboot Minimal 1>NUL
Bcdedit /Set "!ID%%X!" safebootalternateshell Yes 1>NUL
)
)
SetLocal DisableDelayedExpansion
Echo [+] Done! | MORE
Pause&Exit
:: END
Bcdedit /Delete "Identificador"
REM Nota: Se debe usar un identificador, no una descripción.
bcdedit /timeout 10
REM Nota: El valor son segundos, no milisegundos.
:: Converted with REG2BAT by Elektro H@cker
@Echo OFF
REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" /V "Scancode Map" /T "REG_BINARY" /D "00000000000000000400000000005be000005ce000000f0000000000" /F 1>NUL
:: Converted with REG2BAT by Elektro H@cker
@Echo OFF
REG DELETE "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" /V "Scancode Map" /F >NUL 2>&1
Cita de: Lady Laura en 15 Septiembre 2013, 04:28 AMTambién me gustaría saber si es peligrosa esta acción ya que podría hacerlo bastantes veces en el dia...
Cita de: kitit0 en 14 Septiembre 2013, 13:15 PMConoces alguno con el que poder hacer algo parecido?