Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
NSIS SRPUtil
My nsis rdk create cant find SRPUtil , where can I download this from. It seems to be missing from the 'SRP NSIS Utilities' download (unless it is being blocked, should it be getting installed)

Comments
Where do I put it?
Do I register it?
I could just install NSIS version 2 instead..
Kevin - if you're not using SRPutil.dll anymore then is there a better way to do this??
First, I copy the EXE and RDK files into $PLUGINSDIR, then I call the exe like this:
FileWrite $0 '"$PLUGINSDIR\SRPInstallRdk64.exe" -a $OI_APP -u $OI_USERNAME -p $OI_PASSWORD "$PLUGINSDIR\RDK"$\r$\n'Cheers, M@
FileWrite $0 '"$PLUGINSDIR\SRPInstallRdk64.exe" -a $OI_APP -u $OI_USERNAME -p $OI_PASSWORD "$PLUGINSDIR\RDK"$\r$\n'
Can you expand on this a bit more? - where ; what ; how!!
SetOutPath $INSTDIR SetOutPath $WINDIR DetailPrint " " DetailPrint "Installing RDK for OI 10 ..." DetailPrint " " FileOpen $0 "$PLUGINSDIR\rdkinstall64.bat" w FileWrite $0 'pushd "$INSTDIR"$\r$\n' ${If} $OI_PASSWORD == "" FileWrite $0 '"$PLUGINSDIR\SRPInstallRdk64.exe" -a $OI_APP -u $OI_USERNAME -p $OI_USERNAME "$PLUGINSDIR\SRPRDKINSTALL64"$\r$\n' ${Else} FileWrite $0 '"$PLUGINSDIR\SRPInstallRdk64.exe" -a $OI_APP -u $OI_USERNAME -p $OI_PASSWORD "$PLUGINSDIR\SRPRDKINSTALL64"$\r$\n' ${EndIf} FileWrite $0 'popd' FileClose $0 ReadEnvStr $0 COMSPEC nsExec::ExecToLog '"$0" /c "$PLUGINSDIR\rdkinstall64.bat"' Pop $0 Pop $0I'm writing the installer command to a bat file that's being created on the fly. I think I did this to deal with mapped drives or something... I can't remember. Then I run the bat file with ExecToLog. Sorry for the confusion.
BTW, by using EXEs to run the RDKs, it allows me to handle both 32-bit and 64-bit from a single 32-bit installer.