Skip to Main Content
Spotfire Ideas Portal

ability to open Spotfire.Dxp.Main.dll.config in text editor

Please add ability to open Spotfire.Dxp.Main.dll.config in text editor.


Sometimes we need to suggest our customers to modify this file to change some settings.


This file can be found in various locations, so it's difficult to figure out which one is used actually.


PS, below IronPython script can do the trick.


from System.Diagnostics import *

from System.IO import Directory, Path

path=Directory.GetCurrentDirectory()

file=Path.Combine(path,"Spotfire.Dxp.Main.dll.config")

print file

Document.Properties['config']=file

p = Process()

p.StartInfo.FileName = "C:/Windows/notepad.exe"

p.StartInfo.Arguments = file

p.Start()


  • Attach files
      Drop here to upload