Created
January 5, 2015 19:18
-
-
Save Kuznetsov-Ilia/7f92ab32afd5e1d885d1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# kill metro | |
Get-AppxPackage -AllUsers | |
Get-AppxPackage -AllUsers | Remove-AppxPackage | |
Get-AppXProvisionedPackage -online | Remove-AppxProvisionedPackage -online | |
# kill ntfs features | |
fsutil behavior set memoryusage 2 | |
fsutil behavior set disable8dot3 1 | |
fsutil behavior set disablelastaccess 1 | |
fsutil behavior set disablecompression 1 | |
fsutil behavior set disableencryption 1 | |
fsutil behavior set EncryptPagingFile 0 | |
# kill yourself | |
fsutil usn deletejournal /d c: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment