what do you mean? ^^
driver's control coeds? :) tell me more about.
Main Topics
Browse All Topicshi experts,
it's my first time i try to develop an driver for windows xp.
iv downloaded the DDK (www.microsoft.com/ddk/) for windows read all information
found a simple example and build than.
the source is simple:
#include "ntddk.h"
VOID OnUnload( IN PDRIVER_OBJECT DriverObject )
{
DbgPrint("Unload driver \n");
}
NTSTATUS DriverEntry(IN PDRIVER_OBJECT theDriverObject,IN PUNICODE_STRING theRegistryPath)
{
DbgPrint("Driver Loaded \n ");
theDriverObject->DriverUnl
return STATUS_SUCCESS;
}
have ofcourse the
SOURCE
TARGETNAME=myfirstdriver
TARGETPATH=OBJ
TARGETTYPE=DRIVER
SOURCES=halloworld.c
and the MAKEFILE
#
# DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source
# file to this component. This file merely indirects to the real make file
# that is shared by all the driver components of the Windows NT DDK
#
!INCLUDE $(NTMAKEENV)\makefile.def
all takes from example
as i actually told i build the driver without problems.
Install Driver successed...
Start Driver i get :
1275 ERROR_DRIVER_BLOCKED = This driver has been blocked from loading
the funny think is the compiled driver works on some maschiens!.... only not on this i have to develop on :(.......
any ideas why? or maybe who is blocking the driver and why????
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
this simple tut:
http://www.catch22.net/tut
creates an error on start driver ERROR_DRIVER_BLOCKED
Have you tried the binary hello.sys that comes with http://www.catch22.net/tut
I was afraid that it is x64. See http://msdn2.microsoft.com
ok now i have the Windows XP32 SP 2 with latest updates.
installed WDK 6000 with is prupose from michrosoft windws.
"Windows Server 2003, Windows XP, and Windows 2000 do not require a driver to be signed during the early development and test phase of a driver prior to the final testing of a release signed driver. In addition, a system administrator can set the driver signing option in Device Manager such that Plug and Play (PnP) device installation installs unsigned drivers without user interaction. A system administrator can set the driver signing option to Ignore, Warn, or Block, as follows:" you post..
i changed from warn to ignore.
no driversign right now ... and still do not work....
blocked on start .... ???? it was not 64 bit systm......
should i test with the driver sign? or is't a quite different problem?
Business Accounts
Answer for Membership
by: jkrPosted on 2008-01-26 at 09:44:14ID: 20750404
What driver is that, and how have you defined your driver's control codes?