A Microsoft cloud service that enables deployment of Azure services across hybrid and multicloud environments.
Thanks for using Microsoft Q&A !!
Based on the error message it looks like the Arc agent configuration has been set to block installation of certain extensions or not extensions are allowed to be installed on the machine. You can verify the below setting to see if that is causing the issue -
- Check if the extensions.enabled is true on respective Azure ARC instance using the
config get extensions.enabled. If disabled, enable it usingazcmagent config set extensions.enabled true. Please refer to the documentation. - Check if the extensions is blocked using
azcmagent config listcmdlet. If you see 'WindowsOSUpdateExtention' is blocked then you can remove it from the block list usingazcmagent config set extensions.blocklist. Please note that if the extension name is listed in both block and allow list then the extension will be blocked. Refer to the documentation- Extension allowlists and blocklists You can refer to azcmagent CLI reference for cmdlets.
Please let us know if you get any issues.
Thanks Saurabh
Please do not forget to "Accept the answer" wherever the information provided helps you to help others in the community.