Skip to content
⌘ NSIS Forum Archive

NSIS & ResHacker

5 posts

Guest#

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?
bluenet#
try
ExecWait '""$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll""'
joeyf40#
Originally posted by bluenet
try
ExecWait '""$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll""'
still can't work....
bluenet#
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.