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?
NSIS & ResHacker
5 posts
try
ExecWait '""$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll""'
Originally posted by bluenetstill can't work....
try
ExecWait '""$WINDIR\res\ResHacker.exe" -script "$WINDIR\res\Resources\shell32.dll\shell32cht.dll""'
try
$WINDIR\res\Resources\shell32.dll\shell32cht.dll rename to $WINDIR\res\script.txt may be better.
SetOutPath $WINDIR\res
ResHacker.exe -script script.txt
Did you get it working, joeyf40?? We always like to know how it sorts out?