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

 

 


Tema destacado: Estamos en la red social de Mastodon


  Mostrar Temas
Páginas: 1 2 [3] 4 5 6 7
21  Sistemas Operativos / Windows / Como recuperar productKey Windows en: 9 Mayo 2016, 11:24 am
Hola

Resulta que tengo un portátil el cual, en la parte inferior tiene una pegatina con el Product Key, con el tiempo se ha gastado y rasgado y el Product key se ha borrado.

El caso es que viene con unos disco y Windows Vista incluido. El Windows Vista no necesita introducir ningún código de producto pues éste está vinculado al portátil y detecta automáticamente si se está instalando en dicho portátil. Si se instala en otro ordenador demanda activación. Este windows si se instala en el portátil no necesita activación pues como he dicho ya detecta que sea el portátil en cuestión.

Yo supongo que el el Código de producto se encuentra en los archivos de instalación del Windows Vista. Pero los archivos están todos en modo binario y no hay forma de leer nada.

¿Hay alguna forma de recuperarlo?



He encontrado este código de VB6 para obtener el código, y lo consigo pero no es el mismo que hay en la parte inferior, ya que puedo leer parte y no es igual. He actualizado el sistema, supongo que al hacerlo cambia o algo, no se.

Código
  1. Dim bDigitalProductID
  2. Dim bProductKey()
  3. Dim bKeyChars(24)
  4. Dim ilByte
  5. Dim nCur
  6. Dim sCDKey
  7. Dim ilKeyByte
  8. Dim ilBit
  9. ReDim Preserve bProductKey(14)
  10. Set objShell = CreateObject("WScript.Shell")
  11. bDigitalProductID = objShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\Windows NT\CurrentVersion\DigitalProductId")
  12. Set objShell = Nothing
  13. For ilByte = 52 To 66
  14. bProductKey(ilByte - 52) = bDigitalProductID(ilByte)
  15. Next
  16. bKeyChars(0) = Asc("B")
  17. bKeyChars(1) = Asc("C")
  18. bKeyChars(2) = Asc("D")
  19. bKeyChars(3) = Asc("F")
  20. bKeyChars(4) = Asc("G")
  21. bKeyChars(5) = Asc("H")
  22. bKeyChars(6) = Asc("J")
  23. bKeyChars(7) = Asc("K")
  24. bKeyChars(8) = Asc("M")
  25. bKeyChars(9) = Asc("P")
  26. bKeyChars(10) = Asc("Q")
  27. bKeyChars(11) = Asc("R")
  28. bKeyChars(12) = Asc("T")
  29. bKeyChars(13) = Asc("V")
  30. bKeyChars(14) = Asc("W")
  31. bKeyChars(15) = Asc("X")
  32. bKeyChars(16) = Asc("Y")
  33. bKeyChars(17) = Asc("2")
  34. bKeyChars(18) = Asc("3")
  35. bKeyChars(19) = Asc("4")
  36. bKeyChars(20) = Asc("6")
  37. bKeyChars(21) = Asc("7")
  38. bKeyChars(22) = Asc("8")
  39. bKeyChars(23) = Asc("9")
  40. For ilByte = 24 To 0 Step -1
  41. nCur = 0
  42. For ilKeyByte = 14 To 0 Step -1
  43. nCur = nCur * 256 Xor bProductKey(ilKeyByte)
  44. bProductKey(ilKeyByte) = Int(nCur / 24)
  45. nCur = nCur Mod 24
  46. Next
  47. sCDKey = Chr(bKeyChars(nCur)) & sCDKey
  48. If ilByte Mod 5 = 0 And ilByte <> 0 Then sCDKey = "-" & sCDKey
  49. Next
  50. MsgBox sCDKey

[fuente]
http://foro.elhacker.net/hacking_avanzado/como_puedo_recuperar_el_numero_de_serie_de_windows_7_de_un_disco_danado-t367412.0.html


22  Programación / .NET (C#, VB.NET, ASP) / Abrir ventanas y cuadros de diálogo especiales de Windows desde nuestro programa en: 5 Mayo 2016, 15:51 pm
Hola

Este tutorial muestra como abrir tareas, ventanas y cuadros de diálogo especiales de Windows Vista / 7 o sistema posterior desde nuestro programa.

Supón que quieres abrir el dialogo "Agregar quitar programas". Bastaría simplemente con poner esto:

Código
  1. Process.Start("RunDll32.exe", "shell32.dll,Control_RunDLL appwiz.cpl,,0")

Sin embargo hay zonas que no es posible acceder usando Rundll32.exe.

Por ejemplo, el cuadro de diálogo: "Establecer asociaciones: Asociar un tipo de archivo o protocolo con un determinado programa"

Anteriormente en XP, este cuadro estaba disponible en 'Opciones de Carpeta', pero luego fue eliminado. Ahora hay que ir a Panel de Control/Programas predeterminados/Establecer programas predeterminados" (también es accesible desde el menú Inicio).

¿Cómo podemos hacer que nuestro programa abra diréctamente este cuadro de diálogo o ventana?
 
Pues utilizando este comando: "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}\pageFileAssoc"

      
Código
  1. Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}\pageFileAssoc")


Con la función Shell de VB sería así:
  
Código
  1. Shell("explorer.exe shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}\pageFileAssoc", 1)


En Vista y posterior muchos ventanas y diálogos tienen su código CLSID. Por ejemplo para el Panel de Control el código es: {26EE0668-A00A-44D7-9371-BEB064C98683}
 
      
Código
  1. Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}")

Donde 'Shell:::{Code CLSID}\Número\", indica la sección del Panel de control:


Código
  1.        'Opcciones Adicionales"
  2.        Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\0\")
  3.  
  4.        'Apariencia y personalización"
  5.        Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\1\")
  6.  
  7.        'Hardware y sonido"
  8.        Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\")
  9.  
  10.        '"Redes e Internet"
  11.        Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\")
  12.  
  13.        '...
  14.  
  15.        '"Programas"
  16.        Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\")
  17.  


El código CLSID de "Programas predeterminados" es: {17cd9488-1228-4b2f-88ce-4298e93e0966}


El comando se crea añadiendo un CLSID al anterior, en este caso a 'Panel de control/Programas':
Código
  1. Process.Start("explorer.exe", "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}")


...y después la página:
Código
  1. "shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}\pageFileAssoc"


Pero no te preocupes más abajo muestro como conseguir los comandos completos y no tienes que inventar nada.


Para abrir el cuadro de diálogo "Propiedades de la barra de tareas y menú inicio" basta con usar este código:
Código
  1.  Process.Start("explorer.exe", "shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}")

Para el resto se usa rundll32.exe:

Código
  1.        'Opciones de carpeta/General
  2.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 0")
  3.  
  4.        'Barra de tareas
  5.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 1")
  6.  
  7.        'Opciones de carpeta/Buscar
  8.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 2")
  9.  
  10.        'Menú inicio
  11.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 3")
  12.  
  13.        'Área de notificación
  14.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 4")
  15.  
  16.        'Personalizar iconos de notificación
  17.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 5")
  18.  
  19.        'Barra de herramientas
  20.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 6")
  21.  
  22.        'Opciones de carpeta/Ver
  23.        Process.Start("rundll32.exe", "shell32.dll,Options_RunDLL 7")
  24.  
  25.  


DONDE ENCONTRAR ESTOS CAMINOS O COMANDOS PARA ACCEDER A ESTAS DETERMINADAS ZONAS DE WINDOWS
Bien que seguramente puedes encontrar muchos en Internet ya que no es ningún secreto, lo que quizás poca gente sabe es que los comandos y accesos a determinazas zonas de windows se encuentran en el recurso [XML] del archivo Shell32.dll.

Personalmente yo he utilizado  el programa Resource Hacker, desde el cual abres el archivo Shell32.dll que se haya en la carpeta C:\Windows\System32. Pero también puedes abrir Shell32.dll desde  VB.NET mediante "Agregar/Elemento Existente" (CTRL+D), entonces se te carga como un archivo de recursos en C++ y como archivo agregado en un proyecto Windows Forms. Desde el cual podrás acceder a su contenido.



Desde Resoruce Hacker el contenido XML es perfectamente legible, pero desde .NET, no tanto, ya que se muestra como binario. Si lo cargas desde NET, puedes hacer un copia y pega en el Notepad ya que el texto del recurso XML en realidad es un simple texto plano.


La información XML del archivo Shell32.dll, da cuatro datos respecto a una tarea de windows. Primero la información de la tarea '<!-- Change screen reader -->', luego el ID, Nombre, Keywords y comando:
Código
  1. ...
  2. <!-- Change screen reader -->
  3.        <sh:task id="{B57D7134-6BAB-47B2-A506-E885E104EC99}">
  4.              <sh:name>@shell32.dll,-24754</sh:name>
  5.              <sh:keywords>@shell32.dll,-24755</sh:keywords>
  6.              <sh:command>shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageNoVisual</sh:command>
  7.        </sh:task>
  8. ...
  9.  

ABRIR TODAS LAS TAREAS DE WINDOWS

Mal llamado GodMode (modo dios) o MasterPanel, ya que su verdadero nombre es "All Task" en inglés o "Todas las tareas"
Código
  1.        Process.Start("explorer.exe", "shell:::{ed7ba470-8e54-465e-825c-99712043e01c}")

ABRIR ALGUNAS CARPETAS ESPECIALES
Código
  1.  
  2.      'Herramientas administrativas               shell:::{D20EA4E1-3957-11d2-A40B-0C5020524153}
  3.        'Panel de Control                           shell:::{21EC2020-3AEA-1069-A2DD-08002b30309d}
  4.        'Fuentes                                    shell:::{D20EA4E1-3957-11d2-A40B-0C5020524152}
  5.        'Equipo                                     shell:::{20D04FE0-3AEA-1069-A2D8-08002B30309D}
  6.        'Documentos                                 shell:::{450D8FBA-AD25-11D0-98A8-0800361B1103}
  7.        'History                                    shell:::{ff393560-c2a7-11cf-bff4-444553540000}
  8.        'Red (WORKGROUP)                            shell:::{208d2c60-3aea-1069-a2d7-08002b30309d}
  9.        'Impresoras                                 shell:::{2227A280-3AEA-1069-A2DE-08002B30309D}
  10.        'Programs Folder                            shell:::{7be9d83c-a729-4d97-b5a7-1b7313c39e0a}
  11.        'Papelera de reciclaje                      shell:::{645FF040-5081-101B-9F08-00AA002F954E}
  12.        'Menú Inicio                                shell:::{48e7caab-b918-4e58-a94d-505519c795dc}
  13.        'Información y herramientas de rendimiento  shell:::{78F3955E-3B90-4184-BD14-5397C15F1EFC}
  14.        'Centro de accesibilidad                    shell:::{D555645E-D4F8-4c29-A827-D93C859C4F2A}
  15.        'Windows Defender                           shell:::{D8559EB9-20C0-410E-BEDA-7ED416AECC2A}
  16.        'Mapa de red                                shell:::{E7DE9B1A-7533-4556-9484-B26FB486475E}
  17.        'Windows SideShow                           shell:::{E95A4861-D57A-4be1-AD0F-35267E261739}
  18.        'Personalización                            shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}
  19.        'Informe de problemas y soluciones          shell:::{FCFEECAE-EE1B-4849-AE50-685DCF7717EC}
  20.        'Escáneres y cámaras                        shell:::{00f2886f-cd64-4fc9-8ec5-30ef6cdbe8c3}
  21.        'Opciones de energía                        shell:::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}
  22.        'Propiedades barra de tareas                shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}
  23.        'Obtener programas                          shell:::{15eae92e-f17a-4431-9f28-805e482dafd4}
  24.        'Programas predeterminados                  shell:::{17cd9488-1228-4b2f-88ce-4298e93e0966}
  25.        'Dispositivos Bluetooth                     shell:::{28803F59-3A75-4058-995F-4EE5503B023C}
  26.        'Centro de copias de seguridad y restauración   shell:::{335a31dd-f04b-4d76-a925-d6b47cf360df}
  27.        'Windows Update                             shell:::{36eef7db-88ad-4e81-ad49-0e313f0c35f8}
  28.        'Propiedades de Windows Sidebar             shell:::{37efd44d-ef8d-41b1-940d-96973a50e9e0}
  29.        'Get Programs Online                        shell:::{3e7efb4c-faf1-453d-89eb-56026875ef90}
  30.        'Firewall de Windows                        shell:::{4026492F-2F69-46B8-B9BF-5654FC07E423}
  31.        'Opciones de reconocimiento de voz          shell:::{58E3C745-D971-4081-9034-86E34B30836A}
  32.        'Desfragmentador de disco                   shell:::{5d9a6bda-b06a-42c0-b50f-5174bcb472de}
  33.        'Centro de movilidad de Windows             shell:::{5ea4f148-308c-46d7-98a9-49041b1dd468}
  34.        'Cuentas de usuario                         shell:::{60632754-c523-4b62-b45c-4172da012619}
  35.        'Opciones de carpeta                        shell:::{6DFD7C5C-2451-11d3-A299-00C04F8EF6AF}
  36.        'Administrador de dispositivos              shell:::{74246bfc-4c96-11d0-abef-0020af6b0b7a}
  37.        'Windows CardSpace                          shell:::{78CB147A-98EA-4AA6-B0DF-C8681F69341C}
  38.  
  39.        Process.Start("explorer.exe", "shell:::{78F3955E-3B90-4184-BD14-5397C15F1EFC}")
  40.  



ALGUNAS TAREAS
Código:


Accommodate learning abilities:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageQuestionsCognitive

Accommodate low vision:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierToSee

Adjust screen resolution for reading:
%windir%\system32\control.exe desk.cpl,Settings,@Settings

Change how your keyboard works:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageKeyboardEasierToUse

Change how your mouse works:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierToClick

Change screen reader:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageNoVisual

Change the Narrator voice:
%windir%\system32\narrator.exe

Control the computer without the mouse or keyboard:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageNoMouseOrKeyboard

Hear a tone when keys are pressed:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageFilterKeysSettings

Hear text read aloud with Narrator:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}

Ignore repeated keystrokes using FilterKeys:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageFilterKeysSettings

Let Windows suggest Ease of Access settings:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageQuestionsEyesight

Magnify portions of the screen using Magnifier:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierToSee

Move the pointer with the keypad using MouseKeys:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageKeyboardEasierToUse

Optimize for blindness:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageNoVisual

Optimize visual display:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierToSee

Press key combinations one at a time:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageKeyboardEasierToUse

Replace sounds with visual cues:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierWithSounds

Turn High Contrast on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}

Turn Magnifier on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}

Turn off background images:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierToSee

Turn off unnecessary animations:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierToSee

Turn On-Screen keyboard on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}

Underline keyboard shortcuts and access keys:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageKeyboardEasierToUse

Use audio description for video:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}\pageEasierToSee

View current accessibility settings:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\7\::{D555645E-D4F8-4c29-A827-D93C859C4F2A}

Create and format hard disk partitions:
%windir%\system32\mmc.exe %windir%\system32\diskmgmt.msc

Defragment your hard drive:
%windir%\system32\dfrgui.exe

Diagnose your computer's memory problems:
%windir%\system32\mdsched.exe

Edit group policy:
%windir%\system32\mmc.exe %windir%\system32\gpedit.msc

Generate a system health report:
%windir%\system32\perfmon.exe /report

How to add new hardware:
mshelp://windows/?id=dfd48704-eb89-4e9f-b3de-552f0ca60640

Schedule tasks:
%windir%\system32\mmc.exe %windir%\system32\taskschd.msc

Set up data sources (ODBC):
%windir%\system32\odbcad32.exe

Set up iSCSI initiator:
%windir%\system32\iscsicpl.exe

View event logs:
%windir%\system32\mmc.exe %windir%\system32\eventvwr.msc

View event logs:
%windir%\system32\mmc.exe %windir%\system32\eventvwr.msc

View local services:
%windir%\system32\mmc.exe %windir%\system32\services.msc

Add or remove programs:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{7B81BE6A-CE2B-4676-A29E-EB907A5126C5}

Change or remove a program:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{7B81BE6A-CE2B-4676-A29E-EB907A5126C5}

How to install a program:
mshelp://windows/?id=fe7ea80e-52a2-48d6-947a-05e02e78bc37

Install a program from the network:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{15EAE92E-F17A-4431-9F28-805E482dAFD4}

Show which programs are installed on my computer:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{7B81BE6A-CE2B-4676-A29E-EB907A5126C5}

Turn Windows features on or off:
%windir%\system32\OptionalFeatures.exe

Turn Windows features on or off:
%windir%\system32\CompMgmtLauncher.exe

Uninstall a program:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{7B81BE6A-CE2B-4676-A29E-EB907A5126C5}

View installed updates:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{7B81BE6A-CE2B-4676-A29E-EB907A5126C5}\::{D450A8A1-9568-45C7-9C0E-B4F9FB4537BD}

Change default e-mail program:
%windir%\system32\ComputerDefaults.exe

Change default programs that Windows uses:
%windir%\system32\ComputerDefaults.exe

Make a file type always open in a specific program:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}\pageFileAssoc

Set program defaults for this computer:
%windir%\system32\ComputerDefaults.exe

Set your default programs:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}\pageDefaultProgram

Use an older program with this version of Windows:
%windir%\system32\mshta.exe res://%windir%\system32\acprgwiz.dll/compatmode.hta

Change settings for a Bluetooth enabled device:
%windir%\system32\control.exe bthprops.cpl,,1

Set up a Bluetooth enabled device:
%windir%\system32\control.exe bthprops.cpl

Back up your computer:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{335a31dd-f04b-4d76-a925-d6b47cf360df}

Restore data, files, or computer from backup:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{335a31dd-f04b-4d76-a925-d6b47cf360df}

Schedule automated backups:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{335a31dd-f04b-4d76-a925-d6b47cf360df}

Change advanced color management settings for displays, scanners, and printers:
%windir%\system32\colorcpl.exe

Add clocks for different time zones:
%windir%\system32\control.exe timedate.cpl,,1

Automatically adjust for daylight saving time:
%windir%\system32\control.exe timedate.cpl

Change the time zone:
%windir%\system32\control.exe timedate.cpl

Set the time and date:
%windir%\system32\control.exe timedate.cpl

Find which version of Windows you are using:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{CB1B7F8C-C50A-4176-B604-9E24DEE8D4D1}

Get started with Windows:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{CB1B7F8C-C50A-4176-B604-9E24DEE8D4D1}

Migrate files and settings from one computer to another:
%windir%\system32\migwiz\migwiz.exe

Check for new solutions:
%windir%\system32\wercon.exe -solutioncheck

Choose how to check for solutions:
%windir%\system32\wercon.exe -showweropts

View problem history:
%windir%\system32\wercon.exe -problemhistory

Change default settings for media or devices:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{9C60DE1E-E5FC-40f4-A487-460851A8D915}

Play CDs or other media automatically:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{9C60DE1E-E5FC-40f4-A487-460851A8D915}

Start or stop using autoplay for all media and devices:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{9C60DE1E-E5FC-40f4-A487-460851A8D915}

Change search options for files and folders:
%windir%\system32\rundll32.exe shell32.dll,Options_RunDLL 2

Change the file type associated with a file extension:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\8\::{17cd9488-1228-4b2f-88ce-4298e93e0966}\pageFileAssoc

Show hidden files and folders:
%windir%\system32\rundll32.exe shell32.dll,Options_RunDLL 7

Show or hide file extensions:
%windir%\system32\rundll32.exe shell32.dll,Options_RunDLL 7

Specify single- or double-click to open:
shell:::{6DFD7C5C-2451-11D3-A299-00C04F8EF6AF}

Use Classic Windows folders:
shell:::{6DFD7C5C-2451-11D3-A299-00C04F8EF6AF}

Install or remove a font:
%windir%\system32\control.exe /name Microsoft.Fonts

View installed fonts:
%windir%\system32\control.exe /name Microsoft.Fonts

Set up USB game controllers:
%windir%\system32\control.exe joy.cpl

Adjust commonly used mobility settings:
%windir%\system32\mblctr.exe /open

Adjust screen brightness:
%windir%\system32\mblctr.exe /open

Adjust settings before giving a presentation:
%windir%\system32\presentationsettings.exe

Connect to a projector or other external display:
%windir%\system32\mblctr.exe /open

Block or allow pop-ups:
%windir%\system32\control.exe inetcpl.cpl,,2

Block or allow third-party cookies:
%windir%\system32\control.exe inetcpl.cpl,,2

Change how web pages are displayed in tabs:
%windir%\system32\control.exe inetcpl.cpl,,0

Change security settings:
%windir%\system32\control.exe inetcpl.cpl,,1

Change temporary Internet file settings:
%windir%\system32\control.exe inetcpl.cpl,,0

Change the default Web browser:
%windir%\system32\ComputerDefaults.exe

Change the search provider in Internet Explorer:
%windir%\system32\control.exe inetcpl.cpl,,0

Change your homepage:
%windir%\system32\control.exe inetcpl.cpl,,0

Configure proxy server:
%windir%\system32\control.exe inetcpl.cpl,,4

Connect to the Internet:
%windir%\system32\rundll32.exe xwizards,RunWizard {7071ECA0-663B-4bc1-A1FA-B97F3B917C55} /z -ShowFinishPage

Delete browsing history:
%windir%\system32\control.exe inetcpl.cpl,,0

Delete cookies or temporary files:
%windir%\system32\control.exe inetcpl.cpl,,0

Enable or disable session cookies:
%windir%\system32\control.exe inetcpl.cpl,,2

Manage browser add-ons:
%windir%\system32\control.exe inetcpl.cpl,,5

Tell if an RSS feed is available on a website:
%windir%\system32\control.exe inetcpl.cpl,,3

Turn autocomplete in Internet Explorer on or off:
%windir%\system32\control.exe inetcpl.cpl,,3

Change cursor blink rate:
%windir%\system32\control.exe /name Microsoft.Keyboard

Check keyboard status:
%windir%\system32\control.exe /name Microsoft.Keyboard /page 1

Change button settings:
%windir%\system32\control.exe main.cpl

Change how the mouse pointer looks:
%windir%\system32\control.exe main.cpl,,1

Change how the mouse pointer looks when it's moving:
%windir%\system32\control.exe main.cpl,,2

Change mouse click settings:
%windir%\system32\control.exe main.cpl

Change mouse wheel settings:
%windir%\system32\control.exe main.cpl,,3

Change the mouse pointer display or speed:
%windir%\system32\control.exe main.cpl,,2

Customize the mouse buttons:
%windir%\system32\control.exe main.cpl

Make it easier to see the mouse pointer:
%windir%\system32\control.exe main.cpl,,2

Add gadgets to Sidebar:
%programfiles%\windows sidebar\sidebar.exe /showgadgets

Add the Clock gadget to Windows Sidebar:
%programfiles%\windows sidebar\sidebar.exe /showgadgets

Choose whether to keep Sidebar on top of other windows:
%programfiles%\windows sidebar\sidebar.exe /cpl

Uninstall a gadget:
%programfiles%\windows sidebar\sidebar.exe /uninstallgadgets

Compare features with your current configuration:
%windir%\system32\WindowsAnytimeUpgrade.exe /UpgradeOnline

Get new programs online at Windows Marketplace:
%windir%\system32\rundll32.exe %windir%\system32\appwiz.cpl,GetProgramsOnline

Manage programs you buy online (digital locker):
%windir%\DigitalLocker\digitalx.exe

Enable offline files:
%windir%\system32\control.exe cscui.dll,,0

Encrypt your offline files:
%windir%\system32\control.exe cscui.dll,,2

Manage disk space used by your offline files:
%windir%\system32\control.exe cscui.dll,,1

Set up parental controls for any user:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{96AE8D84-A250-4520-95A5-A47A7E3C548B}

View activity reports:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{96AE8D84-A250-4520-95A5-A47A7E3C548B}\pageActivityViewer

View parental control settings for your account:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{96AE8D84-A250-4520-95A5-A47A7E3C548B}\pageUserHub

Set up dialing rules:
%windir%\system32\control.exe telephon.cpl

Install drivers for older devices with Add Hardware wizard:
%windir%\system32\hdwwiz.exe

Update device drivers:
%windir%\system32\mmc.exe devmgmt.msc

View hardware and devices:
%windir%\system32\mmc.exe devmgmt.msc

View hardware and devices:
%windir%\system32\mmc.exe devmgmt.msc

Change battery settings:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}

Change power-saving settings:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}

Change what closing the lid does:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}\pageGlobalSettings

Change what the power buttons do:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}\pageGlobalSettings

Change when the computer sleeps:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}\pagePlanSettings

Choose when to turn off display:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}\pagePlanSettings

Require a password when the computer wakes:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}\pageGlobalSettings

Turn hibernation on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{025A5937-A6BE-4686-A844-36FE4BEC8B6D}\pagePlanSettings

Add a printer:
%windir%\system32\rundll32.exe printui.dll,PrintUIEntry /il

Change default printer:
%windir%\system32\control.exe /name Microsoft.Printers

Remove a printer:
%windir%\system32\control.exe /name Microsoft.Printers

Send a fax:
%windir%\system32\wfs.exe

Send a fax:
%windir%\system32\wfs.exe

View all printers:
%windir%\system32\control.exe /name Microsoft.Printers

Change display language:
%windir%\system32\control.exe intl.cpl,,/p:&quot;keyboard&quot;

Change keyboards or other input methods:
%windir%\system32\control.exe intl.cpl,,/p:&quot;keyboard&quot;

Change the country or region:
%windir%\system32\control.exe intl.cpl,,/p:&quot;location&quot;

Change the date, time, or number format:
%windir%\system32\control.exe intl.cpl

Change the languages used for partially translated menus and dialogs:
%windir%\system32\control.exe intl.cpl,,/p:&quot;keyboard&quot;

Change the way currency is displayed:
%windir%\system32\control.exe intl.cpl

Change the way dates and lists are displayed:
%windir%\system32\control.exe intl.cpl

Change the way measurements are displayed:
%windir%\system32\control.exe intl.cpl

Change the way time is displayed:
%windir%\system32\control.exe intl.cpl

Install or uninstall display languages:
%windir%\system32\lpksetup.exe

Scan a document or picture:
%windir%\system32\wfs.exe

Scan a document or picture:
%windir%\system32\wfs.exe

View scanners and cameras:
%ProgramFiles%\Windows Photo Gallery\ImagingDevices.exe

Change how Windows searches:
%windir%\system32\control.exe srchadmin.dll,,2

Check firewall status:
%windir%\system32\FirewallSettings.exe

Check this computer's security status:
%windir%\system32\control.exe wscui.cpl

Adjust system volume:
%windir%\system32\sndvol.exe

Change sound card settings:
%windir%\system32\control.exe mmsys.cpl,,0

Change system sounds:
%windir%\system32\control.exe mmsys.cpl,,2

Manage audio devices:
%windir%\system32\control.exe mmsys.cpl ,,0

Change text to speech settings:
%windir%\system32\control.exe %windir%\system32\speech\speechux\sapi.cpl

Print the speech reference card:
mshelp://windows/?id=f968a8dd-011d-40fe-84be-93273d6580f0

Set up a microphone:
%windir%\system32\rundll32.exe %windir%\system32\speech\speechux\SpeechUX.dll,RunWizard MicTraining

Start speech recognition:
%windir%\speech\common\sapisvr.exe -SpeechUX

Take speech tutorials:
%windir%\system32\rundll32.exe %windir%\system32\speech\speechux\SpeechUX.dll,RunWizard Tutorial

Train the computer to recognize your voice:
%windir%\system32\rundll32.exe %windir%\system32\speech\speechux\SpeechUX.dll,RunWizard UserTraining

Resolve sync conflicts:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{9C73F5E5-7AE7-4E32-A8E8-8D23B85255BF}\::{E413D040-6788-4C22-957E-175D1C513A34}

Sync with other computers, mobile devices, or network folders:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{9C73F5E5-7AE7-4E32-A8E8-8D23B85255BF}

View sync results:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{9C73F5E5-7AE7-4E32-A8E8-8D23B85255BF}\::{BC48B32F-5910-47F5-8570-5074A8A5636A}

Activate Windows:
%windir%\system32\slui.exe

Adjust the appearance and performance of Windows:
%windir%\system32\SystemPropertiesPerformance.exe

Allow remote access to your computer:
%windir%\system32\SystemPropertiesRemote.exe

Allow Remote Assistance invitations to be sent from this computer:
%windir%\system32\SystemPropertiesRemote.exe

Change workgroup name:
%windir%\system32\SystemPropertiesComputerName.exe

Check processor speed:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\5\::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

Configure advanced user profile properties:
%windir%\system32\rundll32.exe sysdm.cpl,EditUserProfiles

Create a restore point:
%windir%\system32\SystemPropertiesProtection.exe

Edit environment variables for your account:
%windir%\system32\rundll32.exe sysdm.cpl,EditEnvironmentVariables

Edit the system environment variables:
%windir%\system32\SystemPropertiesAdvanced.exe

How to change the size of virtual memory:
mshelp://windows/?id=89ca317f-649d-40a6-8934-e5707ee5c4b8

Join a domain:
%windir%\system32\SystemPropertiesComputerName.exe

Rename this computer:
%windir%\system32\SystemPropertiesComputerName.exe

Restore system files and settings from a restore point:
%windir%\system32\rstrui.exe

See the name of this computer:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\5\::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

Select users who can use remote desktop:
%windir%\system32\SystemPropertiesRemote.exe

Show how much RAM is on this computer:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\5\::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

Show which domain my computer is on:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

Show which operating system my computer is running:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

Show which workgroup this computer is on:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

Turn automatic creation of restore points on or off:
%windir%\system32\SystemPropertiesProtection.exe

View advanced system settings:
%windir%\system32\SystemPropertiesAdvanced.exe

View basic information about your computer:
shell:::{26ee0668-a00a-44d7-9371-beb064c98683}\5\::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}

View running processes with Task Manager:
%windir%\system32\taskmgr.exe

Auto-hide the taskbar:
shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}

Change Start menu to Classic view:
%windir%\System32\rundll32.exe shell32.dll,Options_RunDLL 3

Customize icons on the taskbar:
%windir%\System32\rundll32.exe shell32.dll,Options_RunDLL 4

Customize the Start menu:
%windir%\system32\rundll32.exe shell32.dll,Options_RunDLL 3

Customize the taskbar:
shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}

Find missing Start menu:
shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}

Group similar windows on the taskbar:
shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}

Lock or unlock the taskbar:
shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}

Organize Start menu:
%windir%\system32\rundll32.exe shell32.dll,Options_RunDLL 3

Remove icons from notification area (system tray) on the desktop:
%windir%\System32\rundll32.exe shell32.dll,Options_RunDLL 4

Restore Start menu defaults:
%windir%\system32\rundll32.exe shell32.dll,Options_RunDLL 3

Show or hide inactive icons on the taskbar:
%windir%\System32\rundll32.exe shell32.dll,Options_RunDLL 4

Show or hide the notification area on the taskbar:
%windir%\System32\rundll32.exe shell32.dll,Options_RunDLL 4

Show or hide the Quick Launch toolbar on the taskbar:
shell:::{0DF44EAA-FF21-4412-828E-260A8728E7F1}

Show or hide volume (speaker) icon on the taskbar:
%windir%\System32\rundll32.exe shell32.dll,Options_RunDLL 4

Turn toolbars on the taskbar on or off:
%windir%\System32\rundll32.exe shell32.dll,Options_RunDLL 6

Add or remove user accounts:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pageAdminTasks

Change account type:
%windir%\system32\netplwiz.exe

Change your account picture:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pagePickMyPicture

Change your Windows password:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}

Create a password reset disk:
%windir%\system32\rundll32.exe keymgr.dll,PRShowSaveWizardExW

Create administrator account:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pageAdminTasks\pageNameNewAccount

Create an account:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pageAdminTasks\pageNameNewAccount

Create or remove your account password:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}

Create standard user account:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pageAdminTasks\pageNameNewAccount

Edit local users and groups:
%windir%\system32\mmc.exe %windir%\system32\lusrmgr.msc

Give administrative rights to a domain user:
%windir%\system32\netplwiz.exe

Give other users access to this computer:
%windir%\system32\netplwiz.exe

How to change your Windows password:
mshelp://windows/?id=5c07e067-286d-4b8d-b342-431306e696aa

Make changes to accounts:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pageAdminTasks

Manage file encryption certificates:
%windir%\system32\rekeywiz.exe

Manage network passwords:
%windir%\system32\rundll32.exe keymgr.dll KRShowKeyMgr

Turn guest account on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pageAdminTasks

Turn User Account Control (UAC) on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\9\::{60632754-c523-4b62-b45c-4172da012619}\pageChangeSecuritySettings

Allow a program through Windows Firewall:
%windir%\system32\FirewallSettings.exe 1

Turn Windows Firewall on or off:
%windir%\system32\FirewallSettings.exe

Get new programs online at Windows Marketplace:
%windir%\system32\rundll32.exe %windir%\system32\appwiz.cpl,GetProgramsOnline

Manage programs you buy online (digital locker):
%windir%\DigitalLocker\digitalx.exe

Check for updates:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\10\::{36eef7db-88ad-4e81-ad49-0e313f0c35f8}

Turn automatic updating on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\10\::{36eef7db-88ad-4e81-ad49-0e313f0c35f8}\pageSettings

Check your computer's Windows Experience Index base score:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{78F3955E-3B90-4184-BD14-5397C15F1EFC}

Free up disk space by deleting unnecessary files:
%windir%\system32\cleanmgr.exe

Use tools to improve performance:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\5\::{78F3955E-3B90-4184-BD14-5397C15F1EFC}

Manage BitLocker keys:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\10\::{D9EF8727-CAC2-4e60-809E-86F80A666C91}

Protect your computer by encrypting data on your disk:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\10\::{D9EF8727-CAC2-4e60-809E-86F80A666C91}

Change People Near Me settings:
%windir%\system32\control.exe collab.cpl,,2

Sign in or out of People Near Me:
%windir%\system32\control.exe collab.cpl,,1

Change pen flicks settings:
%windir%\system32\control.exe TabletPC.cpl @0,flicks

Change tablet pen settings:
%windir%\system32\control.exe TabletPC.cpl @0,pen

Enable or disable handwriting personalization:
%windir%\system32\control.exe TabletPC.cpl @1,handwriting

Turn pen flicks on and off:
%windir%\system32\control.exe TabletPC.cpl @0,flicks

Turn the touch pointer on and off:
%windir%\system32\control.exe TabletPC.cpl @0,touch

Calibrate the screen:
%windir%\system32\control.exe TabletPC.cpl @1,general

Change screen orientation:
%windir%\system32\control.exe TabletPC.cpl @1,display

Set tablet buttons to perform certain tasks:
%windir%\system32\control.exe TabletPC.cpl @1,buttons

Specify which hand I write with:
%windir%\system32\control.exe TabletPC.cpl @1,general

Send or receive a file:
%windir%\system32\control.exe irprops.cpl

Change device settings:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{E95A4861-D57A-4be1-AD0F-35267E261739}\pageChangeSettingsDeviceSelector

Change the order of gadgets:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{E95A4861-D57A-4be1-AD0F-35267E261739}\pageReorderGadgetsDeviceSelector

Configure an auxiliary display:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{E95A4861-D57A-4be1-AD0F-35267E261739}

Set up a secondary display to use with Windows SideShow:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{E95A4861-D57A-4be1-AD0F-35267E261739}

Turn gadgets on or off:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{E95A4861-D57A-4be1-AD0F-35267E261739}

Wake computer to update devices:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\2\::{E95A4861-D57A-4be1-AD0F-35267E261739}\pageAutoWake

Adjust font size (DPI):
%windir%\system32\DpiScaling.exe

Adjust screen resolution:
%windir%\system32\control.exe desk.cpl,Settings,@Settings

Change desktop background:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\1\::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}\pageWallpaper

Change display settings:
%windir%\system32\control.exe desk.cpl,Settings,@Settings

Change screen saber:
%windir%\system32\control.exe desk.cpl,screensaver,@screensaver

Change size of on-screen items:
%windir%\system32\DpiScaling.exe

Change the color scheme:
%windir%\system32\control.exe desk.cpl,appearance,@appearance

Change the theme:
%windir%\system32\control.exe desk.cpl,Themes,@Themes

Customize colors:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\1\::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}\pageColorization

Enable or disable transparent glass on windows:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\1\::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}\pageColorization

How to correct monitor flicker (refresh rate):
mshelp://windows/?id=52f7448b-d524-44e4-b43d-15b5a2968537

How to use ClearType to sharpen the screen text:
mshelp://windows/?id=c3a4da66-c335-45f5-a71f-d162d1b64ed4

Lock the computer when I leave it alone for a period of time:
%windir%\system32\control.exe desk.cpl,screensaver,@screensaver

Set screen saber password:
%windir%\system32\control.exe desk.cpl,screensaver,@screensaver

Set up computer to use multiple monitors:
%windir%\system32\control.exe desk.cpl,Monitor,@Monitor

Show or hide common icons on the desktop:
%windir%\system32\control.exe desk.cpl,,0

Turn screen saber on or off:
%windir%\system32\control.exe desk.cpl,screensaver,@screensaver

View the name of the video card:
%windir%\system32\control.exe desk.cpl,Settings,@Settings

Manage Information Cards that are used to log on to online services:
%windir%\system32\control.exe /name Microsoft.CardSpace

Add a device to the network:
%windir%\system32\rundll32.exe %systemroot%\System32\xwizards.dll,RunWizard {d1a4299a-0adf-11da-b070-0011856571de}

Connect to a network:
shell:::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{38A98528-6CBF-4CA9-8DC0-B1E1D10F7B1B}

Connect to a wireless network:
%windir%\system32\rundll32.exe xwizards,RunWizard {7071ECE0-663B-4bc1-A1FA-B97F3B917C55} /z -ShowFinishPage

Identify and repair network problems:
%windir%\system32\Rundll32.exe ndfapi,NdfRunDllDiagnoseIncident

Manage saved networks:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{8E908FC9-BECC-40f6-915B-F4CA0E70D03D}

Manage wireless networks:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{1FA9085F-25A2-489B-85D4-86326EEDCD87}

Set up a dial-up connection:
%windir%\system32\rundll32.exe xwizards,RunWizard {7071ECE0-663B-4bc1-A1FA-B97F3B917C55} /z -ShowFinishPage

Set up a virtual private network (VPN) connection:
%windir%\system32\rundll32.exe xwizards,RunWizard {7071ECE0-663B-4bc1-A1FA-B97F3B917C55} /z -ShowFinishPage

Set up an ad hoc (computer-to-computer) network:
%windir%\system32\rundll32.exe xwizards,RunWizard {7071ECE0-663B-4bc1-A1FA-B97F3B917C55} /z -ShowFinishPage

Set up file sharing:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{8E908FC9-BECC-40f6-915B-F4CA0E70D03D}

Share printers:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{8E908FC9-BECC-40f6-915B-F4CA0E70D03D}

View network computers and devices:
shell:::{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}

View network connections:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{7007ACC7-3202-11D1-AAD2-00805FC1270E}

View network status and tasks:
shell:::{26EE0668-A00A-44D7-9371-BEB064C98683}\3\::{8E908FC9-BECC-40f6-915B-F4CA0E70D03D}

Scan for spyware and other potentially unwanted software:
%ProgramFiles%\windows defender\MSASCui.exe -quickscan

Stop a program from running at startup:
%ProgramFiles%\windows defender\MSASCui.exe -showSWE:Startup

View currently running programs:
%ProgramFiles%\windows defender\MSASCui.exe -showSWE:Running

23  Programación / .NET (C#, VB.NET, ASP) / Actualizar .NET Framework para versiones antiguas de Visual Studio en: 16 Abril 2016, 21:24 pm
ACTUALIZAR .NET FRAMEWORK PARA VERSIONES VIEJAS DE VS.NET

Antes de nada quiero comentar que este sistema que ahora muestro  no se si pudiera perjudicar de alguna manera a VS. En cualquier caso es reversible , ya que todo consiste en crear una carpeta la cual le vamos a indicar a VS que esa es la que debe usar para obtener las librerías de Framework.


Hasta lo que yo he podido comprobar todo por ahora me funciona correctamente. Pero hay muchas cosas que no uso y puede que nunca llegue a hacerlo. Así que no si esto pudiera perjudicar en algo.

Pues nada, dicho queda y voy al asunto.

Si usas versiones como VS.NET 2010   e instalas paquetes como estos:

[21/02/2011]
Microsoft .NET Framework 4 Client Profile
Microsoft .NET Framework 4 Full Profile

O bien Microsoft .NET Framework 4.5 pero no compatible con XP :
Microsoft .NET Framework 4.5

Te puedes encontrar que a pesar de ello no se actualiza el framework y NET continúa usando las versión .NET Framework Client Profile  v4.0.0.0. , o que no se pueden usar todas las clases que en teoría dispone.

NET ignorará  la nueva versión en el sistema, y no estará en la lista. En teoría debería instalarse en:

Código:
C:\Archivos de programa\Reference Assemblies\Microsoft\Framework\.NETFramework

Sin embargo, no lo hace. En realidad se instala en:

Código:
C:\WINDOWS\Microsoft.NET\Framework

Entonces lo que se puede hacer es pasar la última versión de framework manualmente a:

Código:
C:\Archivos de programa\Reference Assemblies\Microsoft\Framework\.NETFramework


Si es tu caso, al intentar usar determinadas clases como System.Web éste no dispondrá de todas sus clases y funciones. Además no estará en la lista de referencias, y ésta será bastante limitada.

Pongo como ejemplo 'System.Web' en la imagen siguiente que se puede ver solo aparecen dos componentes de System.Web



Además, por defecto, VS2010, ni VS2012 agregan System.Web.dll



Así que al importar System.Web solo están disponibles tres clases.




Para tener actualizado el Framework de VS y tener acceso a todas las clases se puede hacer lo siguiente:

PASO 1
Dirígete a:
Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0

Esta carpeta contiene las librerías de .NET Framework v4.0.  

Cambia el nombre  por  […\v4.0.bak]

Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0.bak



De esta forma podrás revertir el proceso y volver al estado original si hubiese algún problema.

Una vez hecho esto, si ejecutas Visual Studio, comprobarás que al intentar crear un nuevo proyecto VS no puede seleccionar ningún Framework.




PASO 2
Dirígete a:
Código:
C:\Windows\Microsoft.NET\Framework


Y copia la carpeta más reciente de Framework que contenga en:
Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework

 Por ejemplo:
Código:
 C:\Windows\Microsoft.NET\Framework\v4.0.30319
 

Lo copias en:
Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework


Entonces el directorio quedaría así:


La carpeta suele ser bastante pesada. Unos 300 MB  más o menos. Realmente no es necesario copiar  todos los archivos pero resulta más cómodo.

PASO 3 CAMBIO DE NOMBRES

Hay que cambiar el nombre  de la nueva carpeta [..\v4.0.xxx] a […\v4.0]



Cambiar también, el nombre del archivo VSList.xml que hay en:
Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\RedistList

 Y renombrarlo con el nombre [FrameworkList.xml]:
Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\RedistList\ FrameworkList.xml 



PASO 4
La carpeta [v4.0.xxx] que se ha creado y renombrado por […\v4.0] le falta una subcarpeta, la cual está en la carpeta original […\v4.0] que se ha renombrado […\v4.0.bak].

Hay que copiar la carpeta en el nuevo directorio […\v4.0].

La carpeta se llama [Profile]
Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0.bak\Profile



PASO 5

Ahora dirígete a:

Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0

Ordena los archivos que contiene por tipos, selecciona todas las librerías DLL y copias y reemplazas en:

Código:
C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\Profile\Client

Te saldrá un diálogo de confirmación, dices sí a todo. Pero ojo,  no te equivoques y lo hagas en [v4.0.bak]. Recuerda que esta carpeta debe quedar intacta por si quieres volver a dejar todo como estaba.

Si ahora ejecutas VS verás que ahora sí hay un Framework v4.0 disponible.




Ahora VS cargará por defecto las librerías actualizadas, pero  no todas, ya que de modo predeterminado solo agrega estas:



Al 'Agregar referencia', la lista de librearías disponibles habrá aumentado notablemente, como se puede ver esta imagen con System.Web:




Una vez agregado:




Al importar se cargan todas las clases.




He intentado de simplificar el proceso, pero de alguna manera u otra me acaba dando errores. No se muy bien como funciona la carga de librerías en VS, pero parece que utilizando este sistema no da errores. Créeme que he probado y toqueteado de todo y al final siembre acaba dando algún error.

Por ahora parece, que de esta manera todo va bien y funciona incluso en XP.


S2s
24  Programación / .NET (C#, VB.NET, ASP) / Tabla html con net en: 7 Abril 2016, 14:38 pm
Hola

¿Hay alguna clase o función en Net para crear tablas Html?. Mi idea es crear una tabla HTML a partir de datos de un datagridview o ListView.

Lo que yo he hecho por ahora es algo como lo siguiente:

Código
  1.  
  2.        Dim builder As New System.Text.StringBuilder
  3.        With builder
  4.            .AppendLine("<table border=""1"" style=""border-collapse: collapse;"">")
  5.            .AppendLine("<caption>Leyenda</caption>")
  6.            .AppendLine("<tbody>")
  7.            .AppendLine("<tr>")
  8.            .AppendLine(String.Format("<td>{0}</td>", "Celda1"))
  9.            .AppendLine(String.Format("<td>{0}</td>", "Celda2"))
  10.            .AppendLine("</tr>")
  11.            .AppendLine("<tr>")
  12.            .AppendLine(String.Format("<td>{0}</td>", "Celda3"))
  13.            .AppendLine(String.Format("<td>{0}</td>", "Celda4"))
  14.            .AppendLine("</tr>")
  15.            .AppendLine("</tbody>")
  16.            .AppendLine("</table>")
  17.        End With
  18.  


Pero es muy tedioso



He encontrado algo que puede ser lo que busco.

HtmlTable Class

del system.web.dll


Código
  1. Imports System.Web.UI.HtmlControls
  2.  
  3. Public Class Form1
  4.  
  5.    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  6.  
  7.        Dim i As Integer
  8.        Dim j As Integer
  9.        Dim Table1 As HtmlTable
  10.        Dim row As HtmlTableRow
  11.        Dim cell As HtmlTableCell
  12.  
  13.       '//...
  14.    End Sub
  15. End Class
25  Sistemas Operativos / Windows / Como deshabilitar autoarranque wmplayer.exe (oculto) al introducir USB en: 6 Abril 2016, 13:12 pm
Hola

He notado que al introducir el USB se autoejecuta wmplayer.exe debido a que el puntero del ratón cambiaba de forma intermitente del puntero normal al de espera, lo cual resulta muy molesto. No solo por el puntero, si no porque me molesta a la hora de realizar tareas. Además wmplayer.exe se ejecuta de forma oculta, sin ventana.

Entonces tengo que ejecutar el Task Manager (taskmgr.exe) para visualizar los procesos y cerrar wmplayer.exe.

No se por qué se ejecuta, ni qué es lo que hace wmplayer.exe. Yo supongo que busca archivos de vídeo o música.

He probado buscar algo que haga referencia a esto pero no he encontrado nada.

¿Alguna idea al respecto?

Gracias

26  Sistemas Operativos / Windows / No puedo activar icono volumen y red en: 30 Marzo 2016, 12:34 pm
Hola

Los iconos de sonido y red me han desaparecido y al intentar activarlos veo que la los cuadritos de activación están deshabilitados y no lo puedo activar.  Supongo que algún HP a accedido al registro de windows y lo ha desactivado pero no se donde es.

Los cuadritos están deshabilitados  :¬¬



Nota: Windows Vista.

Gracias



No puedo usar Gpedit porque es una versión Home Premium y no está disponible



Lo he resuelto simplemente reiniciando explorer.

27  Programación / Desarrollo Web / ¿Por qué no puedo ver esta página? en: 30 Marzo 2016, 11:23 am
Es una página creo que alemana, y es sobre trucos para juegos.


European Codebase

y dice esto:
Código:
El script devolvió el siguiente error: 

El servidor de base de datos (MySQL) no pudo ser contactado!



Akutell es un problema.

Nos esforzamos por ofrecer la solución más rápida posible al problema. Desafortunadamente, no podemos decir cuánto tiempo va a tomar, por favor probarlo en un momento posterior de nuevo. Nos disculpamos y lamentar su inconveniencia El Webmaster





Nota interna:
Número de error:
2054 Texto de error: Conexión a 03:22, no se admite 03:23 y 4.0 del servidor

Solía entrar para buscar trucos, pero ya no se puede.

He probado hacerlo desde TOR, pero tampoco puedo verla.
28  Programación / .NET (C#, VB.NET, ASP) / Barra de progreso no termina en: 28 Marzo 2016, 22:24 pm
Hola

La duda que tengo es sobre el control ProgressBar y es que no termina la barra.

Este código, cuando el valor de la barra llega a 100 o al máximo de la misma debe cerrarse la aplicación. Sin embargo se cierra antes que la barra llegue a 100 o al máximo establecido. Usando exactamente un código equivalente en VB6, esto no pasa. ¿Por qué ocurre?

Código
  1. Public Class Form1
  2.    Private Time1 As New Timer()
  3.    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  4.        Call InitializeMyTimer()
  5.    End Sub
  6.  
  7.  
  8.    Private Sub InitializeMyTimer()
  9.        Time1.Interval = 20
  10.        AddHandler Time1.Tick, AddressOf IncreaseProgressBar
  11.        Time1.Start()
  12.    End Sub
  13.    Private Sub IncreaseProgressBar(ByVal sender As Object, ByVal e As EventArgs)
  14.        ProgressBar1.Increment(1)
  15.        If ProgressBar1.Value = ProgressBar1.Maximum Then
  16.            Time1.Stop()
  17.            Close()
  18.        End If
  19.    End Sub
  20.  
  21. End Class

Gracias
29  Foros Generales / Foro Libre / ¿Semana Santa en la España "aconfesional"? en: 26 Marzo 2016, 10:12 am
Hola

No me gusta tocar estos temas porque genera muchos picores, urticaria y le hierve la sangre a más de uno/a. Pero no dejo de preguntarme ¿cómo puede ser?

Vamos a ver, ayer, 'Viernes Santo', canales de TV con una programación llena de 'cruces cristinas' por doquier, curas, historia bíblica, así como películas y noticias, menos en los infantiles creo y espero; Administraciones publicas cerradas por fiesta, bibliotecas públicas cerradas por fiesta, colegios públicos cerrados por fiesta. Y esto en un 'Estado aconfesional' y laico según el Wikipedia.

Según el diccionario de la RAE:

Aconfesional: Que no pertenece o está adscrito a ninguna confesión religiosa.

Laico: Independiente de cualquier organización o confesión religiosa.


Teniendo en cuenta estas definiciones ¿Es España un estado aconfesional o laico cuando sus funcionarios hacen fiesta independientemente de su religión o no religión personal? ¿Es lógico que se considere festivo un día  o semana en base a una única doctrina religiosa? En este caso, ¿la católica?.

A mi ver la Constitución Española de 1978 tiene contradicciones al respecto.


La Constitución española de 1978.

Código:
Artículo 16

1. Se garantiza la libertad ideológica, religiosa y de culto de los individuos y las comunidades sin más limitación, en sus manifestaciones, que la necesaria para el mantenimiento del orden público protegido por la ley.

2. Nadie podrá ser obligado a declarar sobre su ideología, religión o creencias.

3. Ninguna confesión tendrá carácter estatal. Los poderes públicos tendrán en cuenta las creencias religiosas de la sociedad española y mantendrán las consiguientes relaciones de cooperación con la Iglesia Católica y las demás confesiones.

Por un lado dice "Ninguna confesión tendrá carácter estatal", entonces ayer no debería haber sido festivo, pero luego añade "Los poderes públicos tendrán en cuenta las creencias religiosas de la sociedad española y mantendrán las consiguientes relaciones de cooperación con la Iglesia Católica y las demás confesiones."

Aquí hay trampa --->"las creencias religiosas de la sociedad española". Y luego añade "y mantendrán las consiguientes relaciones de cooperación con la Iglesia Católica y las demás confesiones". Primero que da por echo (aunque no lo dice explícitamente) que "las creencias religiosas de la sociedad española" son la católica. Oigan, yo soy español y soy ateo, no me identifico con ninguna religión y habrán también españoles/as que no son católicos y son de otras religiones y creencias o de ninguna. Porque claro, se da por echo que TOOOODOS los españoles/as son católicos/as. El que es católico dirá -a ver, es que la religión mayoritaria en España es la católica y el estado promueve en interés de la mayoría-. Claro, y por eso ayer es festivo y me tengo que fastidiar y esperar al martes que viene si quiero hacer alguna gestión administrativa PÚBLICA. Por eso los niños que ya se consideran de una u otra religión o de ninguna tienen que hacer fiesta (claro que seguro que están encantados). Por eso ayer, tuve la sensación que los servicios de seguridad del estado hicieron servicios mínimos, ya que tras moverme un rato con el coche por la ciudad y caminando no veía ni un sólo policía. Sinceramente, me sentí inseguro en plena crisis terrorista. Como puede ser que en los tiempos que corren, se reduzca la seguridad ciudadana en un país (esta es la sensación que tuve ayer), porque según una determinada religión dicho día debe ser festivo. Luego dirán que es que iban de incógnito, o que la situación está controlada.


Pero ojo, también dice "y las demás confesiones." ¿Significa eso que habría que hacer fiesta por cada día  que se pudiera considerar festivo para una u otra religión? Jajaja, estaríamos todos los días de fiesta.


Si os fijáis, cada vez que el estado organiza un acto público, como juras de cargo, funerales, etc. está presente de forma monopolizada la religión católica. No es normal por ejemplo que en un funeral a personas que han muerto, por ejemplo, en un atentado terrorista, se celebre siguiendo el ritual católico. Lo cual es una falta de respeto a las diferentes creencias o no creencias que pudieran tener las víctimas.


Foto de Mariano Rajoy jurando cargo en un país "aconfesional" llamado España. XD


S2s


Todas las religiones dicen ser pacíficas, pero todas ellas han matado en nombre de su deidad.
30  Programación / Scripting / Acceso denegado al crear acceso directo desde consola de windows en: 20 Marzo 2016, 16:38 pm
hola

Desde Vista y posterior funciona este código:

Vista/Windows7

Código:
@Echo off

REM     <<<< Crea acceso directo >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
echo Set oWS = WScript.CreateObject("WScript.Shell") > %~dp0CreateShortcut.vbs
echo sLinkFile = "%userprofile%\Desktop\Notepad.lnk" >> %~dp0CreateShortcut.vbs
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %~dp0CreateShortcut.vbs
echo oLink.TargetPath = "%systemroot%\System32\Notepad.exe" >> %~dp0CreateShortcut.vbs
echo oLink.Save >> %~dp0CreateShortcut.vbs
cscript %~dp0CreateShortcut.vbs
del  %~dp0CreateShortcut.vbs
REM >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


XP [DEVUELVE ACCESO DENEGADO ( y como Administrador)]
Código:
@Echo off

REM     <<<< Crea acceso directo >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
echo Set oWS = WScript.CreateObject("WScript.Shell") > %~dp0CreateShortcut.vbs
echo sLinkFile = "%userprofile%\Escritorio\Notepad.lnk" >> %~dp0CreateShortcut.vbs
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %~dp0CreateShortcut.vbs
echo oLink.TargetPath = "%systemroot%\System32\Notepad.exe" >> %~dp0CreateShortcut.vbs
echo oLink.Save >> %~dp0CreateShortcut.vbs
cscript %~dp0CreateShortcut.vbs
del  %~dp0CreateShortcut.vbs
REM >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Gracias



He hecho un prueba creando un paquete de instalación con WinRAR, de modo que se ejecute como administrador. En tal caso, si que funciona. ¿Como puedo ejecutarlo como Administrador directamente?, ya que realmente lo ejecuto desde una cuenta con privilegios de administrador. No entiendo porqué me da Acceso denegado..
 
[SOLUCIONADO]

Ya lo he solucionado quitando %~dp0 y cambiando el directorio mediante PUSHD.
 

Ahora funciona en ambos sistemas y en Administrador o No adeministrador

Código:
REM     <<<< Crea acceso directo >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
PUSHD %APPPATH%
echo Set oWS = WScript.CreateObject("WScript.Shell") > CreateShortcut.vbs
echo sLinkFile = "%userprofile%\Escritorio\Notepad.lnk" >> CreateShortcut.vbs
echo Set oLink = oWS.CreateShortcut(sLinkFile) >> CreateShortcut.vbs
echo oLink.TargetPath = "%systemroot%\System32\Notepad.exe" >> CreateShortcut.vbs
echo oLink.Save >> CreateShortcut.vbs
cscript CreateShortcut.vbs
del  CreateShortcut.vbs
REM >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Páginas: 1 2 [3] 4 5 6 7
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines