Windows API - Win32
A core set of Windows application programming interfaces (APIs) for desktop and server applications. Previously known as Win32 API.
1,981 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
When working with the Cloud Filter API, somestimes got error code 0x80004005 when Unregister sync folder.
How to fix this situation??
Hello @Jojo Tang , I didn't see error code
0x80004005
in your snapshots. Could you confirm the error code? From snapshots, there is error code0x80070005
when registering the sync root fails,0x80070005
means "General access denied error" (E_ACCESSDENIED
inwinerror.h
). And I see "A3-???" in your sync path, so you can check if there is any special character in the folder name.And for unregistering, the error from your snapshot is
0x80070057
which means "One or more arguments are invalid" and0x80070490
which means "Element not found." If the sync root is not registered successfully, it seems expected you receive these two error codes when unregistering.