Cannot create new Storage Space, Error (0x00000057), The parameter is incorrect

Error (0x00000057) parameter incorrect

Windows Storage is a feature in Windows 10 that lets you back up files in the event of a drive failure. However, if you have a problem with the message “Error (0x00000057): the parameter is incorrect with the storage space“Then in this post we will share a solution for that. The error appeared in the Windows 10 2004 update and is a known bug that has been recognized as a bug by the Microsoft team.

Unable to create new storage space, error (0x00000057), parameter is incorrect

The error occurs when a user tries to create a new storage space in an existing pool or when creating a new pool so that he can keep additional copies. The full error message looks like this:

The storage management GUI in Windows 10 version 2004 fails while creating a storage pool with another error “Unable to prepare drives – setting is incorrect”.

The same error was reported also on the Reddit forum. The user shared his experience, where he noticed that the content of some files was corrupted. This happened after upgrading to Windows 10 2004. When the CDKDSK tool was used, it reported more problems with a resulting message saying.

The entry in the attribute list with type code 80 in file 5E711 is corrupt

File record segment 67C08 is an orphan.

There are a few workarounds that may not seem very pleasant, but this is the solution for now.

Storage Space Problem – How To Restore Corrupted Files?

1]Restore from an old backup

The best method is to restore from a week or a day before upgrading to Windows 10 feature update. It will make sure there is no inconsistency between the files. Always be sure to run the CHKDSK tool to check for inconsistencies.

It is also recommended that you lock the parity reader in read-only mode for now. If you restore your images to your parity drive, this will likely continue to introduce more corruption as you make changes.

2]Run the CHKDSK tool

The CHKDSK tool checks the file system and file system metadata of a volume for logical and physical errors. Thus, once executed, the file system will become consistent again, but you will have to manually check whether the data after the verification is incorrect or not.

How to Create a New Storage Space Using PowerShell

Windows PowerShell Offers cmdlets which can create new storage space. So, until the interface is fixed, you can follow this method. As a warning, you must have a clear understanding of what you are doing here and execute the commands correctly. Since we will not delete anything, the existing storage space is safe. These are the three things you need to use the commands.

  • Storage pool name
  • Disks to use to create the pool
  • Storage subsystem or storage spaces

Here is the script you can run on PowerShell. The first line uses the ** Get-PhysicalDisk ** cmdlet to get all PhysicalDisk objects that are not yet in a (concrete) storage pool and assigns the array of objects to the $ PhysicalDisks variable. The second line creates a new storage pool using the $ PhysicalDisks variable to specify the disks to include from the WindowsStorage subsystem.

$PhysicalDisks = (Get-PhysicalDisk -CanPool $True)
New-StoragePool -FriendlyName CompanyData -StorageSubsystemFriendlyName "Windows Storage*" -PhysicalDisks $PhysicalDisks

You will need to launch PowerShell with Admin permission and an administrator account to execute the commands.

So, until you continue to face the problem and Microsoft deploys a fix, use this command to create a new pool. Also be sure to keep the backup read-only.

I hope you were able to resolve this error 0x00000057.

Other articles that will interest you:

Error (0x00000057) incorrect parameter

Leave a Reply