Install VS2017
Minimally, select Desktop development with C++, and in the right panel, select one of windows 10 SDKs or when you install ifort stuff it’ll complain.
Install intel Fortran Compiler
Open VS2017 and make a new project. You should be able to see on the left panel Intel(R) Visual Fortran. Select Console Application.
Make a new file (.f90 in my case) in it.
Go to Project
-<ProjectName>Properties
-Configuration Properties
-Fortran
-Libraries
and in the drop-down menu of Use Intel Math Kernel Library, select anything other than “No”, (Parallel /Qmkl:parallel in my case).
Compile and go.