Virtual disk %1 requires a data integrity scan. Data on the disk is out-of-sync and a data integrity scan is required. To ...

Virtual disk %1 requires a data integrity scan.
                 

                 
Data on the disk is out-of-sync and a data integrity scan is required.
                 
To start the scan, run the following command:
                 

                 
Get-ScheduledTask -TaskName "Data Integrity Scan for Crash Recovery" | Start-ScheduledTask
                 

                 
Once you have resolved the condition listed above,
                 
you can online the disk by using the following commands in PowerShell:
                 

                 
Get-VirtualDisk | ?{ $_.ObjectId -Match "%1" } | Get-Disk | Set-Disk -IsReadOnly $false
                 
Get-VirtualDisk | ?{ $_.ObjectId -Match "%1" } | Get-Disk | Set-Disk -IsOffline  $false