views:

159

answers:

1

I was wondering how I could check if a device driver is loaded using Perl? The operating system is Windows Server 2003, and I'm interested in seeing if the driver for a particular video card is loaded correctly or not.

+6  A: 

One way, lookup required Win32 API calls on MSDN, then use Win32::API, or use sysinternals program Listdlls.exe

http://technet.microsoft.com/en-us/sysinternals/bb896656.aspx#ListDLLs v2.25

http://search.cpan.org/~jdb/Win32-0.39/Win32.pm Link to the Win32::API
J.J.