I am just a beginner in minifilter development. I am working on MSDN sample AVscan. Now the target OS of this sample is Win8 or above. Is it possible to compile AVScan Minifilter https://code.msdn.microsoft.com/windowshardware/AvScan-File-System-40053812#content given in the MSDN Sample for Windows 7? I am using Visual Studio 2013 with WDK 8.1, the sample project don’t have Win7 Debug/Release in the configuration manager. if it is possible how can it be done? Kindly guide me
>I am working on MSDN sample AVscan
I would start with “Scanner File System Minifilter Driver” sample. Much
smaller and easier to understand.
Now the target OS of this sample is Win8 or above. Is it possible to
compile AVScan Minifilter
Just compiled it, executable didn’t start because of UnmapViewOfFileEx
function. Driver is less likely to be incompatible.
On Mon, Jan 19, 2015 at 9:06 AM, wrote:
> I am just a beginner in minifilter development. I am working on MSDN
> sample AVscan. Now the target OS of this sample is Win8 or above. Is it
> possible to compile AVScan Minifilter
> https://code.msdn.microsoft.com/windowshardware/AvScan-File-System-40053812#content
> given in the MSDN Sample for Windows 7? I am using Visual Studio 2013 with
> WDK 8.1, the sample project don’t have Win7 Debug/Release in the
> configuration manager. if it is possible how can it be done? Kindly guide me
>
> —
> NTFSD is sponsored by OSR
>
> OSR is hiring!! Info at http://www.osr.com/careers
>
> For our schedule of debugging and file system seminars visit:
> http://www.osr.com/seminars
>
> To unsubscribe, visit the List Server section of OSR Online at
> http://www.osronline.com/page.cfm?name=ListServer
>
@Dogan Kurt for your kind response
Just compiled it, executable didn’t start because of UnmapViewOfFileEx function.
Driver is less likely to be incompatible.
so if I want to have such driver for Win7, I have to rewrite it?
>Just compiled it, executable didn’t start because of UnmapViewOfFileEx function.
Not only the executable fails to start but also the driver fails to load with error msg, specified procedure not found
>so if I want to have such driver for Win7, I have to rewrite it?
Yup. Don’t use UnmapViewOfFileEx.