Because I have a project which is designed by VBS(visual basic script). Is it impossible to call this VBS using Julia?If no, any other methods?
Further explanation:
We could call the VBS through python as follows:
import os
import sys
os.system(r"C:\test.vbs")
Is there any methods similar to it?