<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>DisplayFusion RSS: Opening an app when a profile is activated</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d</link>
<description>DisplayFusion RSS: Opening an app when a profile is activated</description>
<lastBuildDate>Sun, 12 Apr 2026 13:59:49 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d</generator>
<item>
<title>RE: Opening an app when a profile is activated</title>
<link>https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#5</link>
<pubDate>Fri, 12 Dec 2014 18:44:34 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#5</guid>
<category>DisplayFusion</category>
<description><![CDATA[You are AWESOME! Thank you so much. I'll try this out over the weekend.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
You are AWESOME! Thank you so much. I'll try this out over the weekend.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Opening an app when a profile is activated</title>
<link>https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#4</link>
<pubDate>Fri, 12 Dec 2014 15:49:12 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[In the latest DisplayFusion 7.0 Betas (http://www.displayfusion.com/Download/Beta/) you can now do "Add Scripted" on the Settings &gt; Functions tab. Here's the code you would use for your request:
Code
Copy
Select All
using System;
using System.Drawing;
// The 'windowHandle' parameter will...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
In the latest DisplayFusion 7.0 Betas (<a href="http://www.displayfusion.com/Download/Beta/" target="_blank" rel="nofollow"><b>http://www.displayfusion.com/Download/Beta/</b></a>) you can now do "Add Scripted" on the Settings &gt; Functions tab. Here's the code you would use for your request:<br/>
<br/>
<div id="" class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019d81fdd4c375cb993c4a4ab1cdc7c5" class="ClipboardCopyControl"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019d81fdd4c375cb993c4a4ab1cdc7c5Js'); return false;"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019d81fdd4c375cb993c4a4ab1cdc7c5Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

// The 'windowHandle' parameter will contain the window handle for the:
//   - Active window when run by hotkey
//   - Window Location target when run by a Window Location rule
//   - TitleBar Button owner when run by a TitleBar Button
//   - Jump List owner when run from a Taskbar Jump List
//   - Currently focused window if none of these match
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
//Loads the Monitor Profile, make sure to update the name below with the name of your Monitor Profile
BFS.DisplayFusion.LoadMonitorProfile("Monitor Profile Name");

//Loads the application, make sure to update the path with the full path to your application (note the double-backslashes in the path)
BFS.Application.Start("C:\\Program Files (x86)\\TechSmith\\Snagit 12\\Snagit32.exe", "");

}
}</pre><textarea id="code019d81fdd4c375cb993c4a4ab1cdc7c5" name="code019d81fdd4c375cb993c4a4ab1cdc7c5" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Opening an app when a profile is activated</title>
<link>https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#3</link>
<pubDate>Tue, 03 Sep 2013 23:59:00 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Great news! Can't wait!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Great news! Can't wait! <img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/face-smile.light.svg" alt=":)" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":)" HelpButtonDataAlign="BelowMiddle" />
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Opening an app when a profile is activated</title>
<link>https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#2</link>
<pubDate>Tue, 03 Sep 2013 19:51:05 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[We're planning to add functionality in a future version that would allow you to do this. I'll be sure to let you know as soon as it's available!
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
We're planning to add functionality in a future version that would allow you to do this. I'll be sure to let you know as soon as it's available!<br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>Opening an app when a profile is activated</title>
<link>https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d</link>
<pubDate>Mon, 02 Sep 2013 23:32:11 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/opening-an-app-when-a-profile-is-activated/?ID=ce76b3a1-b3c0-4bda-8a99-9c42b9b6559d</guid>
<category>DisplayFusion</category>
<description><![CDATA[I have a TV connected to my computer but I only activate it (with a profile) when I want to use Plex. It would be great to have Plex (or another app) automatically start when a profile is selected.
Thank you very much for such an awesome app,
Jacob]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I have a TV connected to my computer but I only activate it (with a profile) when I want to use Plex. It would be great to have Plex (or another app) automatically start when a profile is selected.<br/>
<br/>
Thank you very much for such an awesome app,<br/>
Jacob
</div>
]]></content:encoded>
</item>
</channel>
</rss>