Er Papi
MALAGA La Bella (Er Papi)El tiempo - Tutiempo.net
CPU Z descarga aqui
Aplicacion para saber de nuestra memoria Ram
Tambien Alt+Ctrl+ Supr, Administracion de tareas,
Rendimiento y Memorias
------------------------------- 000 ----------------------------
CUANTA MEMORIA RAM ADMITE PC
en el cuadro de búsqueda de Windows escribiendo el comando CMD
escribimos esto...
wmic memphysical get MaxCapacity, MemoryDevices
------------------------------- 000 ----------------------------
SAVER CUANDO EXPIRA WINDOWS 10
PowerShell (Administrador) slmgr -xpr
---------------------------- 000 --------------------
EXTRAER DRIVERS
en el cuadro de búsqueda de Windows escribiendo el comando CMD
y lo ejecutamos como administrador.
escribimos esto
dism /online /export-driver /destination:C:/Copia-seguridad-drivers
antes hay que crear en disco C o donde se vayan a copiar los driver
una carpeta llamada C:/Copia-seguridad-drivers
-------------------------------------- 000 ----------------------------------
Como verificar tu procesador 32 o 64 bit
echo %PROCESSOR_ARCHITECTURE%
-------------------------------------- 000 ----------------------------------
CAMBIAR NOMBRE DE USUARIO
A LACARPETA DE ADMINISTRADOR
Proceso para cambiar el nombre de usuario
-------------------------------------- 000 ----------------------------------
COMPROBAR SI NUESTRO SISTEMA DE
-------------------------------------- 000 ----------------------------------
SABER TU NUMERO DE LICENCIA
-------------------------------------- 000 ----------------------------------
Como verificar tu procesador 32 o 64 bit
entrar en cmd como administrador
echo %PROCESSOR_ARCHITECTURE%
-------------------------------------- 000 ----------------------------------
CAMBIAR NOMBRE DE USUARIO
A LACARPETA DE ADMINISTRADOR
Proceso para cambiar el nombre de usuario
Accede a tu ordenador y ve a Inicio de Windows
y escribe en el buscador netplwiz y pulsa Enter.
Se abren las propiedades de Cuentas de usuario.
Haz doble clic sobre el usuario que deseas
cambiar el nombre que abrirá una nueva ventana.
-------------------------------------- 000 ----------------------------------
COMPROBAR SI NUESTRO SISTEMA DE
WINDOWS ES UEFI.
Para comprobar si nuestro sistema operativo está
instalado sobre una BIOS UEFI o sobre una tradicional,
la manera más rápida es ir a Información de Sistema
(podéis hacerlo tecleando «msinfo32.exe«)
y buscar el apartado «BIOS Mode«. Ahí os dirá
el tipo de BIOS sobre el que está instalado Windows
-------------------------------------- 000 ----------------------------------
SABER TU NUMERO DE LICENCIA
Option Explicit
Dim objshell,path,DigitalID, Result
Set objshell = CreateObject("WScript.Shell")
'Set registry key path
Path = "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\"
'Registry key value
DigitalID = objshell.RegRead(Path & "DigitalProductId")
Dim ProductName,ProductID,ProductKey,ProductData
'Get ProductName, ProductID, ProductKey
ProductName = "Product Name: " & objshell.RegRead(Path & "ProductName")
ProductID = "Product ID: " & objshell.RegRead(Path & "ProductID")
ProductKey = "Installed Key: " & ConvertToKey(DigitalID)
ProductData = ProductName & vbNewLine & ProductID & vbNewLine & ProductKey
'Show messbox if save to a file
If vbYes = MsgBox(ProductData & vblf & vblf & "Save to a file?", vbYesNo + vbQuestion, "BackUp Windows Key Information") then
Save ProductData
End If
'Convert binary to chars
Function ConvertToKey(Key)
Const KeyOffset = 52
Dim isWin8, Maps, i, j, Current, KeyOutput, Last, keypart1, insert
'Check if OS is Windows 8
isWin8 = (Key(66) \ 6) And 1
Key(66) = (Key(66) And &HF7) Or ((isWin8 And 2) * 4)
i = 24
Maps = "BCDFGHJKMPQRTVWXY2346789"
Do
Current= 0
j = 14
Do
Current = Current* 256
Current = Key(j + KeyOffset) + Current
Key(j + KeyOffset) = (Current \ 24)
Current=Current Mod 24
j = j -1
Loop While j >= 0
i = i -1
KeyOutput = Mid(Maps,Current+ 1, 1) & KeyOutput
Last = Current
Loop While i >= 0
If (isWin8 = 1) Then
keypart1 = Mid(KeyOutput, 2, Last)
insert = "N"
KeyOutput = Replace(KeyOutput, keypart1, keypart1 & insert, 2, 1, 0)
If Last = 0 Then KeyOutput = insert & KeyOutput
End If
ConvertToKey = Mid(KeyOutput, 1, 5) & "-" & Mid(KeyOutput, 6, 5) & "-" & Mid(KeyOutput, 11, 5) & "-" & Mid(KeyOutput, 16, 5) & "-" & Mid(KeyOutput, 21, 5)
End Function
'Save data to a file
Function Save(Data)
Dim fso, fName, txt,objshell,UserName
Set objshell = CreateObject("wscript.shell")
'Get current user name
UserName = objshell.ExpandEnvironmentStrings("%UserName%")
'Create a text file on desktop
fName = "C:\Users\" & UserName & "\Desktop\WindowsKeyInfo.txt"
Set fso = CreateObject("Scripting.FileSystemObject")
Set txt = fso.CreateTextFile(fName)
txt.Writeline Data
txt.Close
End Function
COPIAR TODO ESTO Y PEGAR EN UN BLOC DE NOTAS
Y GUARDARLO COMO productkey.vbs
-------------------------------------- 000 ----------------------------------
-------------------------------------- 000 ----------------------------------