Skip to content

Latest commit

History

History
17 lines (12 loc) 路 968 Bytes

EWDKbuild.md

File metadata and controls

17 lines (12 loc) 路 968 Bytes

Building using EWDK (Enterprise WDK)

The EWDK is a standalone, self-contained command-line environment for building drivers. It includes Visual Studio Build Tools, the SDK, and the WDK.

  1. Download the EWDK and mount it
    • It should be mounted as a drive something like D: and contain LaunchBuildEnv.cmd
  2. Now from inside the fsfilter-rs\minifilter directory, run the following commands:
    1. From an Administrator command prompt, run call "D:\LaunchBuildEnv.cmd"
    2. Followed by msbuild RWatch.sln /m /p:configuration=Release /p:platform=x64 /p:RunCodeAnalysis=false

The next steps are the same as MINIFILTER.md.

References