If you need to grant a specified permission to all stored prcedures you can execute the following script
DECLARE @User sysname
SET @User = '<USER>'
SELECT 'GRANT EXECUTE ON ' + name + ' TO ' + @User
FROM sysobjects
WHERE type = 'P' AND category = 0
After that you just need to grab the output of this script and execute it.

![[FIX] BizTalk Server 2010, 2013, 2013 R2 & 2016 errors “Class not registered (WinMgmt)” or “Access denied”](https://blogit.create.pt/wp-content/uploads/2018/07/access-black-and-white-blur-270514-218x150.jpg)




















