Proper way to install drivers in the windows/system32/drivers directory
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I need to install my driver in the /windows/system32/drivers directory if it doesn't already exist. The user would prefer not to have to run an installer just to have one driver copied. The driver could live in my application directory but I want to share the driver with other applications What is the correct way to do that is compatible with win 2000, win xp, win xp server, and other supported windows versions? I found the function GetSystemWindowsDirectory. Should I just append /drivers/ to the path returned to this function and copy my driver to that path? Thanks! Hua-Ying