When sharing build output it is much better to share it as text rather than screenshots. Text is much more compact, and is searchable.
As to your error, on my machine atldef.h is found in c:\Program Files\Microsoft Visual Studio\2022\Professional\VC\Tools\MSVC\14.34.31933\atlmfc\include. The exact location will depend on the Visual Studio version you have installed, but my guess is that you missed the Microsoft.VisualStudio.Component.VC.ATLMFC component listed in the instructions. This is the recommended command line for installing Visual Studio:
PATH_TO_INSTALLER.EXE ^
--add Microsoft.VisualStudio.Workload.NativeDesktop ^
--add Microsoft.VisualStudio.Component.VC.ATLMFC ^
--includeRecommended
BTW, you don't need to run the build process as administrator. You need admin privileges for some install steps (installing Visual Studio and the SDK) but after that you generally don't, and it is safer to not run as admin. However this is unrelated to your build problems.