Hi - 
I'm trying to get some IML work with R; have used it successfully in the past.   Here's a trivial example to replicate the error:
proc iml;
 rannet=j(10,10,0);
 /* send matrix to R */
 run ExportMatrixToR(rannet, "rannet"); 
 quit;
 
That  generates this error:
ERROR: SAS could not initialize the R language interface.
ERROR: The request could not be completed because the R child process terminated unexpectedly with exit status 0xa.
ERROR: Execution error as noted previously. (rc=1000)
 
SAS is initialized with the RLANG option, this used to work...(startup bit from the shortcut here is:)
"C:\Program Files\SASHome\SASFoundation\9.4\sas.exe" -CONFIG "C:\Program Files\SASHome\SASFoundation\9.4\nls\u8\sasv9.cfg" -MEMSIZE 24G -RLANG -CPUCOUNT 8 -MEMMAXSZ 20G
 
Any suggestions?
Thanks in advance,
Jim