Created
May 19, 2019 10:33
-
-
Save prdpspkt/aa1b2594e15b2020016cbf52ff40a045 to your computer and use it in GitHub Desktop.
Convert your drive's file system (FAT32 to NTFS and NTFS to FAT32) without formatting
This file contains hidden or 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
# change directory to your drive, here in my case drive letter is D: and I want to change my file system from fat32 to ntfs | |
D: | |
# now run disk check | |
CHKDSK /F | |
# when disk check is complete run this code to change your file system without formatting | |
convert D:/fs:ntfs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment