Where is my CLR?

Started by stanl, September 20, 2020, 04:55:28 AM

Previous topic - Next topic

stanl

Code (WINBATCH) Select


;Winbatch 2020A - CLR location
ObjectClrOption('useany', 'System')
oCLR = ObjectClrNew('System.Runtime.InteropServices.RuntimeEnvironment')
runtime = oCLR.GetRuntimeDirectory()
oCLR =0
Message("CLR Runtime Directory",runtime)
Exit