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()