I think the problem is the way Microsoft configured the Windows Task.
Microsoft set the task to be launched by users. However, users have insufficient permissions to run the Windows Task successfully. This includes users who are members of the Administrators group.
The solution is to configure the Windows Task to be launched by an elevated Windows account (e.g., Local Service or Local System), which has the necessary permissions. I suggest using the Local Service account since the Local System account would give the Windows Task too many privileges unnecessarily.
Here are the steps:
- Launch Task Scheduler using an account with administrative privileges.
- Click Start, enter “PowerShell”.
- Right-click the Windows PowerShell search result entry and then select Run as administrator.
- In the console window, enter the following command: “taskschd.msc”.
- In the Task Scheduler window, on the left pane, navigate to the folder containing the WSRefreshBannedAppsListTask task. (Note: The path is “Task Scheduler (Local)\Task Scheduler Library\Microsoft\Windows\WS”. A quick way to reach the task is to double-click the entry representing the task that is located on the list in the Active Tasks pane, which is located at the bottom of the window.)
- In the right pane, right-click the WSRefreshBannedAppsListTask task and then click Properties.
- In the WSRefreshBannedAppsListTask Properties window, click Change User or Group…
- In the Select User or Group window, enter “Local Service” in the “Enter the object name to select” text box and then click OK.
- In the WSRefreshBannedAppsListTask Properties window, click OK.
I hope this solution helps.