Hlavní navigace

Názor ke zprávičce Microsoft "pro jistotu" stahuje instalaci Windows 10 na všechny počítače od source - Vytvoř *.cmd soubor, který obsahuje toto a spusť...

  • Aktualita je stará, nové názory již nelze přidávat.
  • 11. 9. 2015 13:21

    source (neregistrovaný)

    Vytvoř *.cmd soubor, který obsahuje toto a spusť jako administrátor:

    // go inside that folder:
    cd /d "C:\$Windows.~BT"
    // take over ownership
    takeown /f *.* /R /D Y
    // (go for coffee, takes a minute)
    // grant full rights to everyone
    icacls *.* /grant Everyone:(OI)(CI)F /T
    // (coffee?)
    // and all other subfolders, just be careful with use of *, naturally.
    rmdir Sources /s /q
    // after all has been wiped, also remove the parent dir
    cd..
    rmdir "$Windows.~BT"
    // checking...
    dir /A:DHS
    echo all steps complete - check the folder $Windows.~BT is not in the list anymore
    pause >nul