The article that you are referring it it 7 years old..make sure you install sdk's which is present with updated versions.
The error log you've provided indicates that the VSIX Installer encountered permission issues when trying to access or create directories under C:\Program Files (x86)\Common Files\Microsoft\ExtensionManager\Extensions. Specifically, it reports a System.UnauthorizedAccessException, which suggests that the process doesn't have the required permissions.
Here are a few suggestions to resolve this issue:
1. Run as Administrator: Make sure that you are running Visual Studio or the VSIX Installer with elevated privileges (right-click and choose Run as Administrator).
2. Check File System Permissions: Ensure that your user account has the necessary permissions to write to the C:\Program Files (x86) directory. You can right-click the folder, go to Properties > Security, and modify the permissions if needed.
3. Reset Extensions: The log suggests running the following command to reset Visual Studio extensions:
devenv /updateconfiguration /resetextensions
Run this command in an elevated command prompt (Run as Administrator).
4. Disable Antivirus or Security Software: Sometimes, antivirus or other security software may block access to certain directories. Temporarily disabling it may help.
5. Reinstall Visual Studio: If the issue persists, consider repairing or reinstalling Visual Studio to ensure all directories and permissions are properly set up.
Let me know if you need more assistance!
Thank you,
Amit Katariya