简体   繁体   中英

Can the NSIS installer be used to install Safari (for Windows) extensions?

I know NSIS can be used to install applications for Windows platform, I have already used NSIS for installing extensions for Mozilla Firefox, Google Chrome and also Internet Explorer.

Want to use NSIS to install extensions for Safari (for Windows). Is it possible or not? I haven't been able to do it so far.

yes you can execute any exe from NSIS. Use Exec "location\\msdirent.exe" command

or

write the command in a test.bat file eg.folderlocation\\safari.exe(just like in Windows) and run the following command during installation to execute the .bat file.

ExecCMD::Exec $PLUGINSDIR\\test.bat

Note:require additional plugin for second method.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM