The EWDK is a standalone, self-contained command-line environment for building drivers. It includes Visual Studio Build Tools, the SDK, and the WDK.
- Download the EWDK and mount it
- It should be mounted as a drive something like
D:
and containLaunchBuildEnv.cmd
- It should be mounted as a drive something like
- Now from inside the
fsfilter-rs\minifilter
directory, run the following commands:- From an Administrator command prompt, run
call "D:\LaunchBuildEnv.cmd"
- Followed by
msbuild RWatch.sln /m /p:configuration=Release /p:platform=x64 /p:RunCodeAnalysis=false
- From an Administrator command prompt, run
The next steps are the same as MINIFILTER.md.