Registering .net com object from notes

Hi all,

I have two .net com object. I need to register the dll files using the gacutil and regasm commands.

(i.e) gacutil /i x.dll

   regasm x.dll

i have included these commands in a batch file and i tried to execute the batch file using shell. But the com objects are not registered can any one help me to sort out this problem.

shell command : res = Shell(“cmd /c”+“regbatch.bat>result.txt”)

Thanks in advance

Subject: Registering .net com object from notes

I notice that the string within the Shell command evaluates to"cmd /cregbatch.bat>result.txt" and not

“cmd /c regbatch.bat>result.txt”

Dunno if you pasted your actual command or this was just a mistype for the post.