Everything works but one question. Deana's code called
objectClrOption( 'use', 'System.Reflection, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a')
oAssembly = ObjectClrNew( 'System.Reflection.Assembly' )
My laptop doesn't recognize this (Win 7 32 bit, updated .NET 4.5)
instead I use
ObjectClrOption("use","System.Net, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=b03f5f7f11d50a3a")
oAssembly = ObjectClrNew( 'System.Reflection.Assembly' )
Just wondered why the difference?
P.S. and all worked with the original Powershell created dll, but happy to see WB can create as well.