Scripting Index and JMP Help page I did link should get you there
Names Default To Here(1);
rp = Run Program(
Executable("powershell.exe"),
Options({"Get-OdbcDsn"}),
ReadFunction("text")
);
You could use Run Program(), call powershell, use command Get-OdbcDsn and parse from the return
@jthi Thanks Jarmo!
I haven't used Run Program before. Mind sharing a reference code to save the DNS in the lists?
Scripting Index and JMP Help page I did link should get you there
Names Default To Here(1);
rp = Run Program(
Executable("powershell.exe"),
Options({"Get-OdbcDsn"}),
ReadFunction("text")
);
Appreciate it