@Peter O'Gorman "Managing Preview Features in Microsoft Purview is a common question here in the community. You have multiple options. I made a guide with useful links.
- Azure Feature Management: Azure allows you to manage preview features at the subscription level. You can register or unregister features using Azure CLI, PowerShell, or the Azure portal. This control is facilitated through the
Microsoft.Features
namespace. https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/preview-features?utm_source=chatgpt.com&tabs=azure-portal - Activity Logs: To identify who enabled a preview feature and when, you can check the Azure Activity Logs. Filter the logs by the operation
Register Provider Feature (Microsoft.Features/providers/features/register/action)
to see the relevant entries. https://learn.microsoft.com/en-us/answers/questions/568748/disable-preview-features-in-azure?utm_source=chatgpt.com - Azure Policy: If you want to prevent the registration of preview features, you can create an Azure Policy that denies the
Microsoft.Features/providers/features/register/action
operation. This policy can be applied at the subscription or management group level. https://learn.microsoft.com/en-in/answers/questions/568748/disable-preview-features-in-azure?utm_source=chatgpt.com - Role-Based Access Control (RBAC): Ensure that only authorized users have permissions to register features. You can manage this by assigning appropriate roles and permissions within Azure RBAC.https://learn.microsoft.com/en-us/answers/questions/568748/disable-preview-features-in-azure?utm_source=chatgpt.com
By implementing these controls, you can manage the exposure of preview features in Microsoft Purview according to your organization's policies and requirements.
😊 If my answer helped you resolve your issue, please consider marking it as the correct answer. This helps others in the community find solutions more easily. Thanks!