Results 4 comments of Adam

It seems to be solved in 2.3.5. I update to this version and do the manual setup steps from doc once again and did not notice this problem. Thank you...

You can try using http://www.cygwin.com/ instead of default windows console

Also the data format looks different on Android and Windows Android (object): `{"external_free": "51120422912", "external_total": "52655943680", "internal_free": "51120422912", "internal_total": "52655943680"}` Windows (array with object): `[{"free": 337609101312, "total": 1023285473280}]`

For now I adjusted `winrt::fire_and_forget ReactNativeBlobUtil::df` function to ``` winrt::fire_and_forget ReactNativeBlobUtil::df( std::function callback) noexcept { try { auto localFolder = winrt::Windows::Storage::ApplicationData::Current().LocalFolder(); auto properties{ co_await localFolder.Properties().RetrievePropertiesAsync({L"System.FreeSpace", L"System.Capacity"}) }; winrt::Microsoft::ReactNative::JSValueObject result; result["free"]...