577 on Win2k8 64 bit on start driver

Hi,

I have build a TDI driver using Windows 2008 x64 Free build environment. I am building my driver on a 64 bit Windows 7. The build works fine.

When I am trying to start the driver, say using “net start MyDriver”, I get error 577. Same driver build on 2k3-32, 2k3-64 and 2k8-32 works fine!

Am I missing something while building the driver?

Thanks in advance,
nil_samant

Is your driver signed?

mm

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of xxxxx@yahoo.com
Sent: Tuesday, February 15, 2011 5:58 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] 577 on Win2k8 64 bit on start driver

Hi,

I have build a TDI driver using Windows 2008 x64 Free build environment. I
am building my driver on a 64 bit Windows 7. The build works fine.

When I am trying to start the driver, say using “net start MyDriver”, I get
error 577. Same driver build on 2k3-32, 2k3-64 and 2k8-32 works fine!

Am I missing something while building the driver?

Thanks in advance,
nil_samant


NTDEV is sponsored by OSR

For our schedule of WDF, WDM, debugging and other 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

Your .SYS file is not signed.

If you look up error 577 it gives the answer:

"Windows cannot verify the digital signature for this file. A recent
hardware or software change might have installed a file that is signed
incorrectly or damaged, or that might be malicious software from an unknown
source. "

64-but driver on Vista and later MUST be signed using the WDK signing tools.

Thomas F. Divine
http://www.pcausa.com


From:
Sent: Tuesday, February 15, 2011 5:57 PM
To: “Windows System Software Devs Interest List”
Subject: [ntdev] 577 on Win2k8 64 bit on start driver

> Hi,
>
> I have build a TDI driver using Windows 2008 x64 Free build environment. I
> am building my driver on a 64 bit Windows 7. The build works fine.
>
> When I am trying to start the driver, say using “net start MyDriver”, I
> get error 577. Same driver build on 2k3-32, 2k3-64 and 2k8-32 works fine!
>
> Am I missing something while building the driver?
>
> Thanks in advance,
> nil_samant
>
>
> —
> NTDEV is sponsored by OSR
>
> For our schedule of WDF, WDM, debugging and other 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

I missed that! :frowning:

After signing the driver is working fine.

Thanks very much…