Hello,
Is there a way to get the list of the DNS data source using JSL?
Go to Solution
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") );
View solution in original post
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?
Appreciate it