I'm working with the WFP Windows Driver Sample "inspect":
https://github.com/microsoft/Windows-driver-samples/tree/master/network/trans/inspect
I can run the driver (inspect.sys) on Windows 10 Pro with no issues, both Release and Debug versions.
I can also run the driver on "Windows Server Essentials 2019" with no issues in the Release version, but not in the Debug version. The attempt to start the Debug version driver fails as follows:
C:\DriverTest\Drivers>sc start inspect
[SC] StartService FAILED 87:
The parameter is incorrect.
I tried the Debug version driver in two forms, both of which failed to start as shown above:
Linked with Runtime Library:
Form 1: Multi-threaded Debug DLL (/MDd)
Form 2: Multi-threaded Debug (MTd)
Host: Windows 10 Pro
Target : Windows Server Essentials 2019 Virtual Machine running under Hyper-V on Host.
Any help you might provide in resolving this issue will be greatly appreciated.