<?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: How to prevent Display Fusion from slowing down other apps when they are CPU intensive</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=a1d6d548-5596-4667-8474-262f717e7f94" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=a1d6d548-5596-4667-8474-262f717e7f94</link>
<description>DisplayFusion RSS: How to prevent Display Fusion from slowing down other apps when they are CPU intensive</description>
<lastBuildDate>Mon, 16 Mar 2026 21:24:32 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=a1d6d548-5596-4667-8474-262f717e7f94</generator>
<item>
<title>RE: How to prevent Display Fusion from slowing down other apps when they are CPU intensive</title>
<link>https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#5</link>
<pubDate>Fri, 25 Nov 2022 09:41:04 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#5</guid>
<category>DisplayFusion</category>
<description><![CDATA[Ah! A friend pointed out that the argument should not be in inverted commas. This code is now working:
Code
Copy
Select All
Sub runDFCmdLine()
' Run these command lines
' "C:\Program Files (x86)\DisplayFusion\DisplayFusionCommand.exe" -closeall
' "C:\Program Files (x86)\DisplayFusion\Displ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ah! A friend pointed out that the argument should not be in inverted commas. This code is now working:<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="#code019cf889497975e2983a51cc4b75bb07" 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;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019cf889497975e2983a51cc4b75bb07Js'); 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;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="code019cf889497975e2983a51cc4b75bb07Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">Sub runDFCmdLine()
    ' Run these command lines
    ' "C:\Program Files (x86)\DisplayFusion\DisplayFusionCommand.exe" -closeall
    ' "C:\Program Files (x86)\DisplayFusion\DisplayFusion.exe"

    Dim strProgramName As String
    Dim strArgument As String

    strProgramName = "C:\Program Files (x86)\DisplayFusion\DisplayFusionCommand.exe"
    strArgument = "-closeall"
    Call Shell("""" & strProgramName & """ " & strArgument, vbNormalFocus)
    MsgBox "DisplayFusion has been exited"
    
    ' Perform task without DF running
    
    strProgramName = "C:\Program Files (x86)\DisplayFusion\DisplayFusion.exe"
    Call Shell("""" & strProgramName & """", vbNormalFocus)
    MsgBox "DisplayFusion has been restarted"
End Sub</pre><textarea id="code019cf889497975e2983a51cc4b75bb07" name="code019cf889497975e2983a51cc4b75bb07" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Thanks for the help.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: How to prevent Display Fusion from slowing down other apps when they are CPU intensive</title>
<link>https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#4</link>
<pubDate>Fri, 25 Nov 2022 04:39:37 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[Any idea what's wrong with the Call Shell statement? It is running the command, but DF is telling me "No command line parameters found", which means that it is not picking up the argument. Run directly from the command prompt the command itself works fine.
Sub runCmdLine()
Dim strProgramName As...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Any idea what's wrong with the Call Shell statement? It is running the command, but DF is telling me "No command line parameters found", which means that it is not picking up the argument. Run directly from the command prompt the command itself works fine.<br/>
<br/>
Sub runCmdLine()<br/>
<br/>
    Dim strProgramName As String<br/>
    Dim strArgument As String<br/>
<br/>
    strProgramName = "C:\Program Files (x86)\DisplayFusion\DisplayFusionCommand.exe"<br/>
    strArgument = "-closeall"<br/>
<br/>
    Call Shell(<b>"""" & strProgramName & """ """ & strArgument & """"</b>, vbNormalFocus) ' statement is not passing the argument correctly<br/>
<br/>
    ' These are the command lines to be run<br/>
    ' "C:\Program Files (x86)\DisplayFusion\DisplayFusionCommand.exe" -closeall<br/>
    ' "C:\Program Files (x86)\DisplayFusion\DisplayFusion.exe"<br/>
<br/>
End Sub
</div>
]]></content:encoded>
</item>
<item>
<title>RE: How to prevent Display Fusion from slowing down other apps when they are CPU intensive</title>
<link>https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#3</link>
<pubDate>Thu, 24 Nov 2022 15:40:37 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thanks. That looks like it'll do the trick.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks. That looks like it'll do the trick. <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;width:16px;height:16px;" HelpButtonData=":)" HelpButtonDataAlign="BelowMiddle" />
</div>
]]></content:encoded>
</item>
<item>
<title>RE: How to prevent Display Fusion from slowing down other apps when they are CPU intensive</title>
<link>https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#2</link>
<pubDate>Thu, 24 Nov 2022 13:54:31 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[Hi John,
There isn't a way to pause DisplayFusion, but you can run these commands to exit & start it from a command line:
"C:\Program Files (x86)\DisplayFusion\DisplayFusionCommand.exe" -closeall
"C:\Program Files (x86)\DisplayFusion\DisplayFusion.exe"
Hope that helps!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hi John,<br/>
<br/>
There isn't a way to pause DisplayFusion, but you can run these commands to exit & start it from a command line: <br/>
<br/>
"C:\Program Files (x86)\DisplayFusion\DisplayFusionCommand.exe" -closeall<br/>
<br/>
"C:\Program Files (x86)\DisplayFusion\DisplayFusion.exe"<br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>How to prevent Display Fusion from slowing down other apps when they are CPU intensive</title>
<link>https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94</link>
<pubDate>Wed, 23 Nov 2022 13:31:59 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/how-to-prevent-display-fusion-from-slowing-down-other-apps-when-they-are-cpu-intensive/?ID=a1d6d548-5596-4667-8474-262f717e7f94</guid>
<category>DisplayFusion</category>
<description><![CDATA[Much of my work is done in full-screen MS-Word, with laptop plus two other screens, where the slowest link in the system is the user/keyboard. Plenty of time left for DF to do its thing. There are times, however, when I run a VBA macro that searches and extracts blocks of text from a large databa...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Much of my work is done in full-screen MS-Word, with laptop plus two other screens, where the slowest link in the system is the user/keyboard. Plenty of time left for DF to do its thing. There are times, however, when I run a VBA macro that searches and extracts blocks of text from a large database, according to certain settable keywords/strings. It can take 20-30 mins to run, depending on the keywords/strings selected. When this macro is running alongside DF, DF slows it down by up to 20-25%.<br/>
<br/>
Is there a way to pause DF when this macro is running? i.e. can DF be paused and restarted programmatically? Thanks.
</div>
]]></content:encoded>
</item>
</channel>
</rss>