What type of driver is it? If it does not touch hardware, and is not PnP
you can use the Service API's, but if it uses hardware with plug and play
you need an inf. You can look at the DevCon sample in the DDK if you want a
way to install the driver programatically.
--
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
http://www.windrvr.com
Remove StopSpam from the email to reply
"sleeper" <> wrote in message
news: oups.com...
> Hello,
>
> I was wondering if anyone knew of an easy way to install a driver?
> It's a driver I made and it is just a binary. I don't have any .inf
> files. Someone suggested earlier that you could do it as a service...
> When I tried his method though, I get the error message:
>
> [SC] StartService FAILED 1058:
>
> The service cannot be started, either because it is disabled or because
> it has no enabled devices associated with it.
>
> The driver that I am trying to install is just a simple keyboard
> driver, the one that comes with the Windows DDK. It's called kbfiltr.
>
> i first created the service such as:
>
> "sc create kbfilter binpath= c:\kbfiltr.sys type= kernel"
>
> then I executed: "sc start kbfilter"
>
> no luck..
>
> anyone know what I could do?
>
> thanks
>