elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.


Tema destacado:


  Mostrar Mensajes
Páginas: 1 ... 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 [839] 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 ... 1254
8381  Informática / Software / Re: Filezilla en: 16 Septiembre 2013, 14:17 pm
Saben si Filezilla tiene historial de envios?
Quisiera saber lo que envie la ultima vez y no encuentro la manera.

Filezilla tiene un log, pero no está activado por defecto... así que si no tenias activada la opción siento decirte que no existe esa información en ninguna parte :P



Saludos
8382  Sistemas Operativos / Windows / Re: [APORTE] Menu en cascada para Windows 8 - Reiniciar equipo en: 16 Septiembre 2013, 13:31 pm
Sin darme cuenta subí una versión que no estaba acabada, no se como cometí tremendo despiste, después de reiniciar en modo seguro habia que iniciar de forma manual el proceso del explorer, os pido mil disculpas.

He subido una versión corregida (y además con mejoras), aquí podeis ver como funciona perféctamente:




Nadie me ha reportado ningún problema así que quizás llego a tiempo y todavía nadie se ha descargado el primer instalador que compartí.

Pero si alguien ha sufrido algún problema con su inicio del explorador de Windows entonces ejecuten este comando en la consola para solucionarlo:

Código:
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "Shell" /T "REG_SZ" /D "Explorer.exe" /F

De todas formas aquí pongo un tutorial que he hecho para explicar la manera de corregir el problema de la versión que compartí:




PD: Ya lo pueden descargar y usar sin peligro en los enlaces del primer post,
un saludo!
8383  Programación / .NET (C#, VB.NET, ASP) / Re: Librería de Snippets !! (Posteen aquí sus snippets) en: 16 Septiembre 2013, 08:40 am
· Una nueva versión de mi FileInfo personalizado, para obtener información sobre un archivo.

Código
  1.    Public Class InfoFile
  2.  
  3. #Region " InfoFile "
  4.  
  5.        ' [ InfoFile ]
  6.        '
  7.        ' // By Elektro H@cker
  8.        '
  9.        ' Examples:
  10.        '
  11.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Name)) ' Result: Test
  12.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Extension_Without_Dot)) ' Result: txt
  13.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileName)) ' Result: Test.txt
  14.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Directory)) ' Result: C:\
  15.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.DriveRoot)) ' Result: C:\
  16.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.DriveLetter)) ' Result: C
  17.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FullName)) ' Result: C:\Test.txt
  18.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.ShortName)) ' Result: Test.txt
  19.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.ShortPath)) ' Result: C:\Test.txt
  20.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Name_Length)) ' Result: 8
  21.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Extension_Without_Dot_Length)) ' Result: 3
  22.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileName_Length)) ' Result: 8
  23.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Directory_Length)) ' Result: 3
  24.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FullName_Length)) ' Result: 11
  25.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileSize_Byte)) ' Result: 5.127.975
  26.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileSize_KB)) ' Result: 5.007.79
  27.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileSize_MB)) ' Result: 4,89
  28.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileSize_GB)) ' Result: 0,00
  29.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileSize_TB)) ' Result: 0,00
  30.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.FileVersion)) ' Result: ""
  31.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Attributes_Enum)) ' Result: 8224
  32.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Attributes_String)) ' Result: Archive, NotContentIndexed
  33.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.CreationTime)) ' Result: 16/09/2012  8:28:17
  34.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.LastAccessTime)) ' Result: 16/09/2012 10:51:17
  35.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.LastModifyTime)) ' Result: 16/09/2012 10:51:17
  36.        ' MsgBox(InfoFile.Get_Info("C:\Test.txt", InfoFile.Info.Has_Extension)) ' Result: True
  37.  
  38.        Public Enum Info
  39.  
  40.            Name                  ' Filename without extension
  41.            Extension_With_Dot    ' File-Extension (with dot included)
  42.            Extension_Without_Dot ' File-Extension (without dot)
  43.            FileName              ' Filename.extension
  44.            Directory             ' Directory name
  45.            FullName              ' Directory path + Filename
  46.  
  47.            DriveRoot             ' Drive letter
  48.            DriveLetter           ' Drive letter (only 1 character)
  49.  
  50.            ShortName ' DOS8.3 Filename
  51.            ShortPath ' DOS8.3 Path Name
  52.  
  53.            Name_Length                  ' Length of Filename without extension
  54.            Extension_With_Dot_Length    ' Length of File-Extension (with dot included)
  55.            Extension_Without_Dot_Length ' Length of File-Extension (without dot)
  56.            FileName_Length              ' Length of Filename.extension
  57.            Directory_Length             ' Length of Directory name
  58.            FullName_Length              ' Length of Directory path + Filename
  59.  
  60.            FileSize_Byte ' Size in Bytes
  61.            FileSize_KB   ' Size in KiloBytes
  62.            FileSize_MB   ' Size in MegaBytes
  63.            FileSize_GB   ' Size in GigaBytes
  64.            FileSize_TB   ' Size in TeraBytes
  65.  
  66.            FileVersion ' Version for DLL or EXE files
  67.  
  68.            Attributes_Enum   ' Attributes as numbers
  69.            Attributes_String ' Attributes as descriptions
  70.  
  71.            CreationTime   ' Date Creation time
  72.            LastAccessTime ' Date Last Access time
  73.            LastModifyTime ' Date Last Modify time
  74.  
  75.            Has_Extension  ' Checks if file have a file-extension.
  76.  
  77.        End Enum
  78.  
  79.        Public Shared Function Get_Info(ByVal File As String, ByVal Information As Info) As String
  80.  
  81.            Dim File_Info = My.Computer.FileSystem.GetFileInfo(File)
  82.  
  83.            Select Case Information
  84.  
  85.                Case Info.Name : Return File_Info.Name.Substring(0, File_Info.Name.LastIndexOf("."))
  86.                Case Info.Extension_With_Dot : Return File_Info.Extension
  87.                Case Info.Extension_Without_Dot : Return File_Info.Extension.Split(".").Last
  88.                Case Info.FileName : Return File_Info.Name
  89.                Case Info.Directory : Return File_Info.DirectoryName
  90.                Case Info.DriveRoot : Return File_Info.Directory.Root.ToString
  91.                Case Info.DriveLetter : Return File_Info.Directory.Root.ToString.Substring(0, 1)
  92.                Case Info.FullName : Return File_Info.FullName
  93.                Case Info.ShortName : Return CreateObject("Scripting.FileSystemObject").GetFile(File).ShortName
  94.                Case Info.ShortPath : Return CreateObject("Scripting.FileSystemObject").GetFile(File).ShortPath
  95.                Case Info.Name_Length : Return File_Info.Name.Length
  96.                Case Info.Extension_With_Dot_Length : Return File_Info.Extension.Length
  97.                Case Info.Extension_Without_Dot_Length : Return File_Info.Extension.Split(".").Last.Length
  98.                Case Info.FileName_Length : Return File_Info.Name.Length
  99.                Case Info.Directory_Length : Return File_Info.DirectoryName.Length
  100.                Case Info.FullName_Length : Return File_Info.FullName.Length
  101.                Case Info.FileSize_Byte : Return Convert.ToDouble(File_Info.Length).ToString("n0")
  102.                Case Info.FileSize_KB : Return (Convert.ToDouble(File_Info.Length) / 1024L).ToString("n2")
  103.                Case Info.FileSize_MB : Return (Convert.ToDouble(File_Info.Length) / 1024L ^ 2).ToString("n2")
  104.                Case Info.FileSize_GB : Return (Convert.ToDouble(File_Info.Length) / 1024L ^ 3).ToString("n2")
  105.                Case Info.FileSize_TB : Return (Convert.ToDouble(File_Info.Length) / 1024L ^ 4).ToString("n2")
  106.                Case Info.FileVersion : Return CreateObject("Scripting.FileSystemObject").GetFileVersion(File)
  107.                Case Info.Attributes_Enum : Return File_Info.Attributes
  108.                Case Info.Attributes_String : Return File_Info.Attributes.ToString
  109.                Case Info.CreationTime : Return File_Info.CreationTime
  110.                Case Info.LastAccessTime : Return File_Info.LastAccessTime
  111.                Case Info.LastModifyTime : Return File_Info.LastWriteTime
  112.                Case Info.Has_Extension : Return IO.Path.HasExtension(File)
  113.  
  114.                Case Else : Return String.Empty
  115.  
  116.            End Select
  117.  
  118.        End Function
  119.  
  120. #End Region
  121.  
  122.    End Class





· Lo mismo de arriba pero para directorios:

Código
  1. Public Class InfoDir
  2.  
  3. #Region " InfoDir "
  4.  
  5.    ' [ InfoDir ]
  6.    '
  7.    ' // By Elektro H@cker
  8.    '
  9.    ' Examples:
  10.    '
  11.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.Name)) ' Result: Test
  12.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.Parent)) ' Result: Test Parent
  13.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.FullName)) ' Result: C:\Test Parent\Test
  14.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.DriveRoot)) ' Result: C:\
  15.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.DriveLetter)) ' Result: C
  16.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.Name_Length)) ' Result: 4
  17.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.FullName_Length)) ' Result: 19
  18.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.Attributes_Enum)) ' Result: 8208
  19.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.Attributes_String)) ' Result: Directory, NotContentIndexed
  20.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.CreationTime)) ' Result: 16/09/2012  8:28:17
  21.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.LastAccessTime)) ' Result: 16/09/2012 10:51:17
  22.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.LastModifyTime)) ' Result: 16/09/2012 10:51:17
  23.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.FileSize_Byte)) ' Result: 5.127.975
  24.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.FileSize_KB)) ' Result: 5.007.79
  25.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.FileSize_MB)) ' Result: 4,89
  26.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.FileSize_GB)) ' Result: 0,00
  27.    ' MsgBox(InfoDir.Get_Info("C:\Test Parent\Test", InfoDir.Info.FileSize_TB)) ' Result: 0,00
  28.  
  29.    Public Enum Info
  30.  
  31.        Name                  ' Folder name
  32.        FullName              ' Directory path
  33.        Parent                ' Parent directory
  34.  
  35.        DriveRoot             ' Drive letter
  36.        DriveLetter           ' Drive letter (only 1 character)
  37.  
  38.        Name_Length                  ' Length of directory name
  39.        FullName_Length              ' Length of full directory path
  40.  
  41.        FileSize_Byte ' Size in Bytes     (including subfolders)
  42.        FileSize_KB   ' Size in KiloBytes (including subfolders)
  43.        FileSize_MB   ' Size in MegaBytes (including subfolders)
  44.        FileSize_GB   ' Size in GigaBytes (including subfolders)
  45.        FileSize_TB   ' Size in TeraBytes (including subfolders)
  46.  
  47.        Attributes_Enum   ' Attributes as numbers
  48.        Attributes_String ' Attributes as descriptions
  49.  
  50.        CreationTime   ' Date Creation time
  51.        LastAccessTime ' Date Last Access time
  52.        LastModifyTime ' Date Last Modify time
  53.  
  54.    End Enum
  55.  
  56.    Public Shared Function Get_Info(ByVal Dir As String, ByVal Information As Info) As String
  57.  
  58.        Dim Dir_Info = My.Computer.FileSystem.GetDirectoryInfo(Dir)
  59.  
  60.        Select Case Information
  61.  
  62.            Case Info.Name : Return Dir_Info.Name
  63.            Case Info.FullName : Return Dir_Info.FullName
  64.            Case Info.Parent : Return Dir_Info.Parent.ToString
  65.            Case Info.DriveRoot : Return Dir_Info.Root.ToString
  66.            Case Info.DriveLetter : Return Dir_Info.Root.ToString.Substring(0, 1)
  67.            Case Info.Name_Length : Return Dir_Info.Name.Length
  68.            Case Info.FullName_Length : Return Dir_Info.FullName.Length
  69.            Case Info.FileSize_Byte : Return Convert.ToDouble(Get_Directory_Size(Dir_Info)).ToString("n0")
  70.            Case Info.FileSize_KB : Return (Convert.ToDouble(Get_Directory_Size(Dir_Info)) / 1024L).ToString("n2")
  71.            Case Info.FileSize_MB : Return (Convert.ToDouble(Get_Directory_Size(Dir_Info)) / 1024L ^ 2).ToString("n2")
  72.            Case Info.FileSize_GB : Return (Convert.ToDouble(Get_Directory_Size(Dir_Info)) / 1024L ^ 3).ToString("n2")
  73.            Case Info.FileSize_TB : Return (Convert.ToDouble(Get_Directory_Size(Dir_Info)) / 1024L ^ 4).ToString("n2")
  74.            Case Info.Attributes_Enum : Return Dir_Info.Attributes
  75.            Case Info.Attributes_String : Return Dir_Info.Attributes.ToString
  76.            Case Info.CreationTime : Return Dir_Info.CreationTime
  77.            Case Info.LastAccessTime : Return Dir_Info.LastAccessTime
  78.            Case Info.LastModifyTime : Return Dir_Info.LastWriteTime
  79.  
  80.            Case Else : Return String.Empty
  81.  
  82.        End Select
  83.  
  84.    End Function
  85.  
  86.    Private Shared Function Get_Directory_Size(Directory As IO.DirectoryInfo) As Long
  87.        Try
  88.            Dim Dir_Total_Size As Long = Directory.EnumerateFiles().Sum(Function(file) file.Length)
  89.            Dir_Total_Size += Directory.EnumerateDirectories().Sum(Function(dir) Get_Directory_Size(dir))
  90.            Return Dir_Total_Size
  91.        Catch
  92.        End Try
  93.        Return -1
  94.    End Function
  95.  
  96. #End Region
  97.  
  98. End Class





Convierte bytes a otra unidad:

Código
  1. #Region " Convert Bytes Function "
  2.  
  3.    ' [ Convert Bytes Function ]
  4.    '
  5.    ' // By Elektro H@cker
  6.    '
  7.    ' Examples :
  8.    '
  9.    ' MsgBox(String.Format("{0} KB", Byte_To_Size(5127975, xByte.kilobyte, 2))) ' Result: 5007,79 KB
  10.    ' MsgBox(String.Format("{0} MB", Byte_To_Size(5127975, xByte.megabyte, 2))) ' Result: 4,89 MB
  11.    ' MsgBox(String.Format("{0} GB", Byte_To_Size(5127975, xByte.gigabyte, 3))) ' Result: 0,005 GB
  12.    ' MsgBox(String.Format("{0} TB", Byte_To_Size(5127975, xByte.terabyte, 3))) ' Result: 0 TB
  13.    ' MsgBox(String.Format("{0} PB", Byte_To_Size(5127975, xByte.petabyte, 3))) ' Result: 0 PB
  14.  
  15.    Enum xByte As Long
  16.        kilobyte = 1024L
  17.        megabyte = 1024L * kilobyte
  18.        gigabyte = 1024L * megabyte
  19.        terabyte = 1024L * gigabyte
  20.        petabyte = 1024L * terabyte
  21.    End Enum
  22.  
  23.    Private Function Byte_To_Size(ByVal bytes As Long, _
  24.                                  ByVal convertto As xByte, _
  25.                                  Optional ByVal decimals As Integer = 2 _
  26.                                  ) As Double
  27.  
  28.        Return (Convert.ToDouble(bytes) / convertto).ToString("n" & decimals)
  29.  
  30.    End Function
  31.  
  32. #End Region
  33.  
8384  Sistemas Operativos / Windows / Re: [APORTE] Menu en cascada para Windows 8 - Reiniciar equipo en: 16 Septiembre 2013, 06:16 am
gracias
8385  Sistemas Operativos / Windows / Re: [APORTE] Menu en cascada para Windows 8 - Permisos de usuario en: 16 Septiembre 2013, 06:07 am
Ok, gracias. Pues sera hora de probarlo. :P

Saludos.

EDITO: Ya lo probe, me sale la opción de acceso pero no se expande.

¿puedes decirme que instalador probaste y bajo que versión de Windows para buscar el problema? 32bit o 64 bit?



8386  Sistemas Operativos / Windows / Re: [APORTE] Menu en cascada para Windows 8 - Permisos de usuario en: 15 Septiembre 2013, 21:51 pm
Igualmente supongo que no puedo dar permisos si el usuario no puede modificar permisos, no?

En teoría sin problemas porque los cambios de permisos son para el usuario actual, no para todos los usuarios incluido Administrador.


Tienes el code?

Pues si pero... son 16 scripts (para 16 opciones) y da palo xD, si instalas el archivo se expanden los archivos a la carpeta System32, te posteo dos códigos:

Código
  1. Echo OFF
  2. Title Denegar acceso para: %UserName%
  3. Mode Con Cols=100 Lines=20
  4. Color 0F
  5.  
  6. Echo: Procesando directorio y subdirectorios de:
  7. Echo: "%~1"
  8. Timeout /T 2 1>NUL
  9.  
  10. Dir /B /S /AD "%~1" 2>NUL
  11.  
  12. takeown /F "%~1" /R /D S 1>NUL 2>&1
  13. Icacls "%~1" /Deny "%UserName%":"(RC,AS,GR,GE,RD,REA,X,RA)" /T 2>NUL | Find /I "Correctamente" 1>NUL && (
  14. Echo: Permiso de "Lectura y ejecucion" denegado al usuario "%UserName%"
  15. ) || (
  16. Echo: Error al intentar denegar permisos al usuario "%UserName%"
  17. )
  18.  
  19. Timeout /T 6 >Nul


Código
  1. Echo OFF
  2. Title Conceder acceso para: %UserName%
  3. Mode Con Cols=100 Lines=20
  4. Color 0F
  5.  
  6. Echo: Procesando Archivo:
  7. Echo: "%~1"
  8.  
  9. (
  10. (
  11. Takeown /F "%~1" >Nul && Icacls "%~1" /Grant "%username%":"(WDAC,WO,WD,AD,WEA,WA)" >nul
  12. ) || (
  13. Icacls "%~1" /Grant "%username%":"(WDAC,WO,WD,AD,WEA,WA)" >nul
  14. )
  15. ) && (
  16. Echo: Permiso de "Escritura" concedido al usuario "%username%"
  17. ) || (
  18. Echo. Error al intentar conceder permisos al usuario "%username%"
  19. )
  20.  
  21. Timeout /T 5

Saludos!
8387  Sistemas Operativos / Windows / Re: [APORTE] Menu en cascada para Windows 8 - Permisos de usuario en: 15 Septiembre 2013, 21:13 pm
Esto lo que hace es usar attrib, no?

Nop, para nada, creo que has confundido atributos con permisos, lo que hago es stablecer el propietario con "TakeOwn" y luego establezco los permisos con "Icacls".

Gracias por comentar,
Saludos!
8388  Sistemas Operativos / Windows / [APORTE] Menu en cascada para Windows 8 - Accesorios de Windows en: 15 Septiembre 2013, 21:03 pm
Menu en cascada para Windows 8 - Accesorios de Windows



Imágenes:





Instrucciones:

1. Copiar el siguiente código en el bloc de notas y guardarlo como "Accesorios.cmd"

Código
  1. @Echo OFF
  2.  
  3. REG ADD "HKEY_CLASSES_ROOT\DesktopBackground\Shell\.Accesorios" /V "MUIVerb" /T "REG_SZ" /D "Accesorios" /F
  4. REG ADD "HKEY_CLASSES_ROOT\DesktopBackground\Shell\.Accesorios" /V "SubCommands" /T "REG_SZ" /D "Bloc de notas;Calculadora;Grabadora de sonidos;Grabacion de acciones;Mapa de caracteres;Notas;Paint;Recortes" /F
  5. REG ADD "HKEY_CLASSES_ROOT\DesktopBackground\Shell\.Accesorios" /V "icon" /T "REG_SZ" /D "imageres.dll,-109" /F
  6. REG ADD "HKEY_CLASSES_ROOT\DesktopBackground\Shell\.Accesorios" /V "position" /T "REG_SZ" /D "Bottom" /F
  7.  
  8. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Bloc de notas" /V  "" /D "Bloc de notas" /F
  9. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Bloc de notas" /V "icon" /T "REG_SZ" /D "notepad.exe" /F
  10. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Bloc de notas\command" /V  "" /D "notepad.exe" /F
  11.  
  12. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Calculadora" /V  "" /D "Calculadora" /F
  13. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Calculadora" /V "icon" /T "REG_SZ" /D "calc.exe" /F
  14. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Calculadora\command" /V  "" /D "calc.exe" /F
  15.  
  16. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Grabadora de sonidos" /V  "" /D "Grabadora de sonidos" /F
  17. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Grabadora de sonidos" /V "icon" /T "REG_SZ" /D "SoundRecorder.exe" /F
  18. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Grabadora de sonidos\command" /V  "" /D "SoundRecorder.exe" /F
  19.  
  20. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Grabacion de acciones" /V  "" /D "Grabación de acciones" /F
  21. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Grabacion de acciones" /V "icon" /T "REG_SZ" /D "psr.exe" /F
  22. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Grabacion de acciones\command" /V  "" /D "psr.exe" /F
  23.  
  24. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Mapa de caracteres" /V  "" /D "Mapa de caracteres" /F
  25. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Mapa de caracteres" /V "icon" /T "REG_SZ" /D "charmap.exe" /F
  26. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Mapa de caracteres\command" /V  "" /D "charmap.exe" /F
  27.  
  28. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Notas" /V  "" /D "Notas" /F
  29. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Notas" /V "icon" /T "REG_SZ" /D "StikyNot.exe" /F
  30. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Notas\command" /V  "" /D "StikyNot.exe" /F
  31.  
  32. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Paint" /V  "" /D "Paint" /F
  33. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Paint" /V "icon" /T "REG_SZ" /D "mspaint.exe" /F
  34. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Paint\command" /V  "" /D "mspaint.exe" /F
  35.  
  36. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Recortes" /V  "" /D "Recortes" /F
  37. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Recortes" /V "icon" /T "REG_SZ" /D "SnippingTool.exe" /F
  38. REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\Recortes\command" /V  "" /D "SnippingTool.exe" /F

2. Ejecutar el archivo.


Que lo disfruten!
8389  Sistemas Operativos / Windows / [APORTE] Menu en cascada para Windows 8 - Personalizar en: 15 Septiembre 2013, 20:56 pm
Menu en cascada para Windows 8 - Personalizar



Imágenes:





Instrucciones:

1. Descargar el siguiente archivo:

-> Para Windows 8 32 Bit
-> Para Windows 8 64 Bit

2. Instalarlo.

NOTA: Este menú únicamente funciona en Windows 8 64 Bits, si quieren utilizarlo en Windows 8 x86 deben desempaquetar el instalador con la utilidad "InnoUnp" y modificar en el script el parámetro del modo de instalación de la arquitectura (ArchitecturesInstallIn64BitMode) además de usar la aplicación SetACL para 32 Bit y corregir las claves de registro del DESinstalador en la sección [RUN].

Que lo disfruten!
8390  Sistemas Operativos / Windows / [APORTE] Menu en cascada para Windows 8 - Permisos de usuario en: 15 Septiembre 2013, 20:46 pm
Menu en cascada para Windows 8 - Permisos de usuario



Imágenes:

   





Instrucciones:

1. Descargar el siguiente archivo:

-> Para Windows 8 32 Bit  NOTA: El instalador de 32 Bit no lo he testeado lo suficiente, el menú podría no mostrarse corréctamente.
-> Para Windows 8 64 Bit  NOTA: FIXED!

2. Instalarlo.


Que lo disfruten!
Páginas: 1 ... 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 [839] 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 ... 1254
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines