Archive: [Help]NSIS & ResHacker,


[Help]NSIS & ResHacker,
I need some help..

This is my script question about ResHacker with command_parameters in NSIS

EXP:This is I try...but the command_parameters didn't work

ExecWait '"$WINDIR\res\ResHacker.exe" -script $WINDIR\res\Resources\shell32.dll\shell32cht.dll'

I can't get it why I Run "%WINDIR%\res\ResHacker.exe -script %WINDIR%\res\Resources\shell32.dll\shell32cht.dll" in windows XP , it's work.But just can't work in Nsis....anyone can help me?


Well, I'm not sure why you are specifying a DLL as your script file, but assuming it works in Windows, then this should work in your script:


ExecWait '"$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll"'