Installing drivers from NSIS installer in x64 system.
        Posted  
        
            by Alex Che
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Alex Che
        
        
        
        Published on 2010-03-17T18:27:50Z
        Indexed on 
            2010/03/17
            18:31 UTC
        
        
        Read the original article
        Hit count: 671
        
I want to add support for x64 OSes to my NSIS installer. One of the installer's task is drivers installation. I've written a special NSIS plugin for this task. This plugin uses Driver Install Frameworks API (DIFxAPI) to install drivers.
The problem is that this API does not work in WOW64.
Is there any way to create x64 installer application with NSIS? Has anybody solved similar problem with NSIS?
P.S.: The only solution I can see now is to run another application from the installer. This will be x64 executable that installs drivers. But this way seems somewhat harder to me. So, I'm interested in other solutions.
© Stack Overflow or respective owner