joeyf40
30th April 2005 13:13 UTC
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
30th April 2005 15:38 UTC
try
ExecWait '""$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll""'
joeyf40
30th April 2005 19:11 UTC
Originally posted by bluenet
try
ExecWait '""$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll""'
still can't work....
bluenet
2nd May 2005 04:31 UTC
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.
saivert
3rd May 2005 08:24 UTC
Did you get it working, joeyf40?? We always like to know how it sorts out?