English 中文(简体)
安装X64系统的国家峰会安装器的固定司机
原标题:Installing drivers from NSIS installer in x64 system

我愿向我的国家峰会安装机构增加对x64名顾问的支持。 安装机的任务之一是安装司机。 我为这项任务写出了一个特别的国家峰会。 这一缩略语使用 司机Install Frameworks AP(DIFxAPI)安装司机。

问题是,这辆汽车在WOW64没有工作。

是否有什么办法在信息社会世界峰会上建立X64安装机应用? 是否有任何人解决了与信息社会世界首脑会议类似的问题?

P.S.:我现在能够看到的唯一解决办法是从安装商那里再申请一次。 这将是安装司机的X64可执行。 但我似乎更难以这样做。 因此,我对其他解决办法感兴趣。

最佳回答
问题回答

国民峰会的本地X64版本在规划阶段最多,因此,你必须制定某种习俗,或提出新的助手申请,或提出64个轨道版本的代号32+某种助手DL文件。

I m特别试图使用INF文档在NSIS安装机的X64安装一个文档系统过滤器。

在32个轨道上,我可以非常积极地呼吁:

ExecWait  $SYSDIRRUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection DefaultInstall 132 $INSTDIR<myinf>.inf 

但是,......在X64,即使档案转头用美元{可兑换X64FSRedirection}倒转,它仍然做WOW64的事情。

我发现,要获得RUNDL32。 EXE, 以便从国家信息社会论坛中适当开展X64方面的工作,你还需要将登记处的观点定为64:

    ${If} ${RunningX64}
        ${DisableX64FSRedirection}
        SetRegView 64
    ${EndIf}

    ExecWait  $SYSDIRRUNDLL32.EXE SETUPAPI.DLL,InstallHinfSection DefaultInstall 132 $INSTDIR<myinf>.inf 




相关问题
best solution to use a DLL/Driver?

Im working with a CD722UN Customer Display for our POS application. it comes with a USB2.0 connection and a installation package containing a driver ect.. now, for my application. how should i do ...

Unit testing device drivers

I have a situation where I need to write some unit tests for some device drivers for embedded hardware. The code is quite old and big and unfortunately doesn t have many tests. Right now, the only ...

Maximum number of drives in windows?

I m trying to figure out the available disk space programmatically in windows. For this, I need to first get a list of the available drives, then check which of those are local drives and then query ...

Transparent Proxy for Windows XP

I have an experimental TCP/IP stack running under Windows XP. This stack bypasses the Windows TCP/IP stack using a LSP and a NDIS IM. I now have a requirement to provide a proxy service for this to ...

Windows Named Pipe Problem

I m writing a driver that communicates with a userland application through a named pipe. The userland application creates the named pipe by calling CreateNamedPipe() and then passes the pipe name to ...

热门标签