hello,
I am trying to install a checked version of a file system and the “NET START” refuces to install the driver (system error 2001), while the free version can be started with no problem.
I have started windows in debug mode (/debug) but it did not help.
Can any one advice what I am doing wrong?
Igal
Have you tried single stepping through your DriverEntry code to see what’s
failing?
wrote in message news:xxxxx@ntfsd…
> hello,
> I am trying to install a checked version of a file system and the “NET
> START” refuces to install the driver (system error 2001), while the free
> version can be started with no problem.
>
> I have started windows in debug mode (/debug) but it did not help.
>
> Can any one advice what I am doing wrong?
>
> Igal
>
>
Hi,Igal
Try to add some debug message in your DriverEntry at debug mode, you will
see what happen in checked build when you type “net start”.
WWN
On 7/30/07, igalk013@013.net.il wrote:
>
> hello,
> I am trying to install a checked version of a file system and the “NET
> START” refuces to install the driver (system error 2001), while the free
> version can be started with no problem.
>
> I have started windows in debug mode (/debug) but it did not help.
>
> Can any one advice what I am doing wrong?
>
> Igal
>
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule debugging and file system seminars
> (including our new fs mini-filter seminar) visit:
> http://www.osr.com/seminars
>
> You are currently subscribed to ntfsd as: xxxxx@gmail.com
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>
Sure, you can put “KdBreakPoint” in your driverentry.
WWN
On 7/30/07, Rod Widdowson wrote:
>
> Have you tried single stepping through your DriverEntry code to see what’s
> failing?
> wrote in message news:xxxxx@ntfsd…
> > hello,
> > I am trying to install a checked version of a file system and the “NET
> > START” refuces to install the driver (system error 2001), while the free
> > version can be started with no problem.
> >
> > I have started windows in debug mode (/debug) but it did not help.
> >
> > Can any one advice what I am doing wrong?
> >
> > Igal
> >
> >
>
>
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule debugging and file system seminars
> (including our new fs mini-filter seminar) visit:
> http://www.osr.com/seminars
>
> You are currently subscribed to ntfsd as: xxxxx@gmail.com
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>
Are you trying to do something like replace an existing file system
driver; that is, are you trying to rebuild and then replace CDROM or
FASTFAT? Another possibility is that you have some code that is
compiled conditionally in your DriverEntry (or something it calls) which
is causing to fail loading in the CHECKED build.
mm
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Weining wu
Sent: Monday, July 30, 2007 12:56
To: Windows File Systems Devs Interest List
Subject: Re: [ntfsd] Installing File system
Sure, you can put “KdBreakPoint” in your driverentry.
WWN
On 7/30/07, Rod Widdowson < xxxxx@steadingsoftware.com
mailto:xxxxx > wrote:
Have you tried single stepping through your DriverEntry code to see
what’s
failing?
wrote in message news:xxxxx@ntfsd…
> hello,
> I am trying to install a checked version of a file system and the “NET
> START” refuces to install the driver (system error 2001), while the
free
> version can be started with no problem.
>
> I have started windows in debug mode (/debug) but it did not help.
>
> Can any one advice what I am doing wrong?
>
> Igal
>
>
—
NTDEV is sponsored by OSR
For our schedule debugging and file system seminars
(including our new fs mini-filter seminar) visit:
http://www.osr.com/seminars
You are currently subscribed to ntfsd as: xxxxx@gmail.com
To unsubscribe send a blank email to xxxxx@lists.osr.com
— NTDEV is sponsored by OSR For our schedule debugging and file system
seminars (including our new fs mini-filter seminar) visit:
http://www.osr.com/seminars You are currently subscribed to ntfsd as:
xxxxx@evitechnology.com To unsubscribe send a blank email to
xxxxx@lists.osr.com</mailto:xxxxx>
Another possibility is if the registry entries exist, but the file
specified by ImagePath does not exist.
mm
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Weining wu
Sent: Monday, July 30, 2007 12:56
To: Windows File Systems Devs Interest List
Subject: Re: [ntfsd] Installing File system
Sure, you can put “KdBreakPoint” in your driverentry.
WWN
On 7/30/07, Rod Widdowson < xxxxx@steadingsoftware.com
mailto:xxxxx > wrote:
Have you tried single stepping through your DriverEntry code to see
what’s
failing?
wrote in message news:xxxxx@ntfsd…
> hello,
> I am trying to install a checked version of a file system and the “NET
> START” refuces to install the driver (system error 2001), while the
free
> version can be started with no problem.
>
> I have started windows in debug mode (/debug) but it did not help.
>
> Can any one advice what I am doing wrong?
>
> Igal
>
>
—
NTDEV is sponsored by OSR
For our schedule debugging and file system seminars
(including our new fs mini-filter seminar) visit:
http://www.osr.com/seminars
You are currently subscribed to ntfsd as: xxxxx@gmail.com
To unsubscribe send a blank email to xxxxx@lists.osr.com
— NTDEV is sponsored by OSR For our schedule debugging and file system
seminars (including our new fs mini-filter seminar) visit:
http://www.osr.com/seminars You are currently subscribed to ntfsd as:
xxxxx@evitechnology.com To unsubscribe send a blank email to
xxxxx@lists.osr.com</mailto:xxxxx>
Gentlemen,
Thank you very much, I have put some printing out during the driver’s entry function, and found the “stupid” bug - not initialize parameter!!!
Igal