I'd like to know if there exists some (command line) tool that can be used
to manually load kernel mode dlls (i.e. an export driver) into memory.
Background: I'm developing a highly modular system that is composed of up to
100 small components. Every module encapsulates some functionality and is
implemented as an export driver. Additionally they should be loaded and
unloaded at runtime to be able to reconfigure the system dynamically.
I know that I could install every module as a seperate service and then
start and stop it with "net start/stop <name>", but because of the huge
number of modules, I don't want to install and maintain a service for every
module.
Basically it would be perfect, if there would exist some kind of
"Linux-modprobe" for Windows that can load a driver from a given sys-file.
Does anyone know such a tool or can anyone give me a hint how to do it in
another way?
Thanks in advance
--
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
Website: http://www.windrvr.com
Blog: http://msmvps.com/blogs/WinDrvr
Remove StopSpam to reply
"Markus Flachs" <n...@spam.com> wrote in message
news:A818FEA4-5B2C-46DC...@microsoft.com...
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"Don Burn" <bu...@stopspam.windrvr.com> wrote in message
news:undF4s1g...@TK2MSFTNGP03.phx.gbl...
I know that this design is not very efficient, but it is part of a research
project and it will never be part of a production system. Therefore memory or
performance is not an issue. It is solely about the modular design.
Just to clarify your answers: There is no way to load a pure export driver
(i.e. a simple kernel mode dll) and to call its DllInitialize function
without (statically) linking it to some other driver that explicitly
references this export driver?
Thanks for your answers.
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"Markus Flachs" <n...@spam.com> wrote in message
news:998C8CE5-D7CE-44F3...@microsoft.com...
/Daniel
"Markus Flachs" <n...@spam.com> wrote in message
news:998C8CE5-D7CE-44F3...@microsoft.com...
d
--
Please do not send e-mail directly to this alias. this alias is for
newsgroup purposes only.
This posting is provided "AS IS" with no warranties, and confers no rights.
"Daniel Terhell" <dan...@resplendence.com> wrote in message
news:eT5MOPCh...@TK2MSFTNGP02.phx.gbl...
Markus