Archive: NSIS & ResHacker


NSIS & ResHacker
I need some help..

This is my script question about ResHacker with command_parameters in NSIS

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

But the command_parameters did not work..I can't get 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?


try

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

Originally posted by bluenet
try
ExecWait '""$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll""'
still can't work....

try


SetOutPath $WINDIR\res
ResHacker.exe -script script.txt


$WINDIR\res\Resources\shell32.dll\shell32cht.dll rename to $WINDIR\res\script.txt may be better.

Did you get it working, joeyf40?? We always like to know how it sorts out?