1)Run Command Prompts as administrator
a) Type CMD in search box from Start menu
b) Right-click on Command Prompts app on the top and click Run as administrator
c) Click YES when prompted by UAC ( USER ACCOUNT CONTROL )
2) Type the commands blow and hit Enter one by one
a) Type dism /online /cleanup-image /restorehealth and hit Enter
b) Type sfc /scannow and hit Enter
c) Type powershell and hit Enter
d) Type Get-AppXPackage -AllUsers |Where-Object
{$_.InstallLocation -like “*SystemApps*”} | Foreach {Add-AppxPackage
-DisableDevelopmentMode -Register
“$($_.InstallLocation)\AppXManifest.xml”} and hit Enter
Now press WIN + L keys to lock screen and check. You should be able to see Windows Spotlight screen now.
jueves, 10 de agosto de 2017
lunes, 13 de marzo de 2017
Borrar unidades de red que no se quieren desconectar
net use * /d /y
eliminara todos los recursos de red, despues para visualizar las conexiones existente:
net use * /d /y >nul
eliminara todos los recursos de red, despues para visualizar las conexiones existente:
net use * /d /y >nul
No abre el menú de inicio en Windows 10
Abrimos Windows
PowerShell, para abrirlo, pulsamos con el botón derecho del ratón sobre el icono de Windows del Menú Inicio, seleccionamos Símbolo del sistema (administrador), escribimos Powershell y pulsamos sobre la tecla Enter.
Ahora, tendremos que introducir el siguiente comando:
Espere a que PowerShell se ejecute y complete la instrucción ignorando los errores que puedan aparecer en color rojo. El proceso puede tomar unos 15 minutos. Una vez haya terminado reinicie el equipo, luego haga clic sobre el Menú Inicio, si abre entonces el problema se habrá solucionado. Si no, otra alternativa es crear una nueva cuenta de usuario en el dispositivo con Windows 10.
Ahora, tendremos que introducir el siguiente comando:
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
Espere a que PowerShell se ejecute y complete la instrucción ignorando los errores que puedan aparecer en color rojo. El proceso puede tomar unos 15 minutos. Una vez haya terminado reinicie el equipo, luego haga clic sobre el Menú Inicio, si abre entonces el problema se habrá solucionado. Si no, otra alternativa es crear una nueva cuenta de usuario en el dispositivo con Windows 10.
jueves, 2 de febrero de 2017
How to Install Windows 10 on External Hard Drive
Steps to install Windows 10 on external hard drive
Step1. Format the external hard drive with NTFS and connect it to your computer. Click Start button and input "CMD" in the search box, and then click "cmd.exe" to launch the Windows PowerShell prompt. Once the Command prompt window pops up, input "diskpart".Step2. Input the command line "disk list" then press Enter button, after that all the drives of the host computer will be listed. As you can see in the following picture, Disk 1 is the destination external hard drive for WTG in this example.
Step3. Enter the command lines in the picture below. This will clean the partition first, then a primary partition will be created. After that, the rest of the command lines will format the external hard drive and activate the partition on it. The last step is to assign the drive letter, here we choose E as the drive letter.
Step4. Open "Dism.exe" to extract the install.wim file from drive F and move it to E drive (the destination USB hard drive), please refer to the command line in the picture below.
Step5. Enter the final command line ”bcdboot e:\\windows /s e: /f ALL” to ensure the USB hard drive bootable. Here ends the whole process.
Suscribirse a:
Entradas (Atom)