Reputation: 177
How can I find and delete created client id and secret created using https:///_layouts/15/AppRegNew.aspx or https:///sites//_layouts/15/AppRegNew.aspx
Upvotes: 1
Views: 822
Reputation: 840
So any application which is registered using AppRegNew page is actually registered as an enterprise application in AAD. In order to completely remove the registered app you may do the following:
<yourSite>/_layouts/15/appprincipals.aspx
page and just remove it from there/_layouts/15/appinv.aspx
page 😅. But if you need to remove it completely and imidetly you may do it using Remove-AzureADMSDeletedDirectoryObject -Id <id>
command. Please follow the instructions from this link (the remove command is at the bottom)I hope this will be of any help 🙂👍 Cheers
Upvotes: 1