com.ms.wfc.win32.Windows.CreateProcess could not be convertedĀ 

In Visual J++, this function creates a new process and its primary thread. The thread is created with an initial stack whose size is described in the image header of the executable file. The thread begins execution at the image entry point.

The new process and the new thread handles are created with full access rights. For either handle, if a security descriptor is not provided, the handle can be used in any function that requires an object handle of that type. When a security descriptor is provided, an access check is performed on all subsequent uses of the handle before access is granted. If the access check denies access, the requesting process cannot use the handle to gain access to the thread.

In the .NET Framework, there is no direct equivalent.

To correct this error

  • Investigate using the System.Diagnostics.Process class to implement your solution.

See Also

Reference

Component Class
Process Class