zoukankan      html  css  js  c++  java
  • 【win10】可能解决开始菜单无法打开的问题

    如果出现无法打开apps或者universal app长期hang在splash screen的话
    ,此法可解决:
    Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)AppXManifest.xml"}

    I got exactly the same problem and here's how I fixed it. Everything was done from desktop.
    1- Create a folder on desktop: mount
    2- Copy install.wim to desktop. (used the ISO downloaded from techbench)

    Open Admin Command prompt, copy/paste each line and run:

      1. Dism /mount-wim /wimFile:%USERPROFILE%Desktopinstall.wim /index:1 /MountDir:%USERPROFILE%Desktopmount
      2. Dism /Online /Cleanup-Image /CheckHealth
      3. Dism /Online /Cleanup-Image /RestoreHealth /Source:%USERPROFILE%Desktopmountwindows /LimitAccess
      4. Dism /unmount-wim /Mountdir:%USERPROFILE%Desktopmount /discard
      5. re-run: sfc /scannow
  • 相关阅读:
    Java正则表达式入门
    sql join
    java collection
    JAVA中this用法小结
    SQL Server 触发器
    SQL 存储过程
    123456 所有组合 递归
    sublime plugin & add number to mulitple line .
    重做树莓派系统盘
    制作树莓派系统盘
  • 原文地址:https://www.cnblogs.com/knightluffy/p/5470017.html
Copyright © 2011-2022 走看看