RedAlpha
RedAlpha

Reputation: 113

VS2019 without Windows 8.1 SDK

I'm trying to run an already functional application that requires the Windows 8.1 SDK.

I installed Visual Studio 2019, but there is no option in the 8.1 SDK.

This is for a Windows 10 using Visual Studio 2019 last update.

On my old computer, there was the option to select in "Individual Components", but now no longer the encounter. Does anyone know if there is no such support on VS2019? Or is it necessary to install something more for the support to appear?

Upvotes: 11

Views: 17530

Answers (1)

magicandre1981
magicandre1981

Reputation: 28796

This is expected as it is marked as deprecated in Visual Studio 2019:

The Windows 8.1 SDK is no longer available in the Visual Studio installer. Please upgrade your C++ projects to the latest Windows 10 SDK. If you have a hard dependency on 8.1, you can download it from the Windows SDK archive.

So download and install the SDK from here.

Upvotes: 19

Related Questions