- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Get list of DNS data source name
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Get list of DNS data source name
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")
);
-Jarmo
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Get list of DNS data source name
You could use Run Program(), call powershell, use command Get-OdbcDsn and parse from the return
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Get list of DNS data source name
@jthi Thanks Jarmo!
I haven't used Run Program before. Mind sharing a reference code to save the DNS in the lists?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Get list of DNS data source name
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")
);
-Jarmo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Get list of DNS data source name
Appreciate it