I use a product called SQLBackupAndFTP to do nightly backups of my SQL Server Express development environment. SQLBackupAndFTP creates a job on the Windows Task Scheduler to make this happen.
It used to work perfectly, but ever since my system has been upgraded to Windows 10 Anniversary Edition, it has stopped working. Now I get an error message on the Task Scheduler that says, "The requested operation requires elevation. (0x800702E4)" This seemed odd, since the job is assigned to a user with appropriate privileges, and the "Run with highest privileges" option is set.
As I was researching what may have changed, I discovered the following web page from a separate product called Macrium Reflect. Macrium describes a bug whereby tasks created using version 1.0 of the Task Scheduler API fail to elevate properly.
http://knowledgebase.macrium.com/display/KNOW/Windows+10+Aniversary+Update+issues
Sure enough, when I deleted the task entry created by the third party software and recreated it by hand in the Task Scheduler interface, it worked perfectly. The manually created task bypasses the other software's API calls, and then everything works fine.
I just wanted to document this on Microsoft's site, so that other folks may find a workaround to the issue more quickly.