<?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: Maximizing windows touble</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b</link>
<description>DisplayFusion RSS: Maximizing windows touble</description>
<lastBuildDate>Sun, 19 Apr 2026 13:40:42 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b</generator>
<item>
<title>RE: Maximizing windows touble</title>
<link>https://www.displayfusion.com/Discussions/View/maximizing-windows-touble/?ID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b#3</link>
<pubDate>Tue, 11 Jun 2019 04:00:00 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/maximizing-windows-touble/?ID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thanks! Appreciate getting back to me and will give this a try.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks! Appreciate getting back to me and will give this a try.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Maximizing windows touble</title>
<link>https://www.displayfusion.com/Discussions/View/maximizing-windows-touble/?ID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b#2</link>
<pubDate>Mon, 10 Jun 2019 18:27:53 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/maximizing-windows-touble/?ID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[There isn't a built-in function for that, but you could use a Scripted Function in the Trigger. This code would restore all minimized windows:
Code
Copy
Select All
using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
There isn't a built-in function for that, but you could use a Scripted Function in the Trigger. This code would restore all minimized windows:<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="#code019da5f8daf97002a5252027c4ed1144" 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('code019da5f8daf97002a5252027c4ed1144Js'); 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="code019da5f8daf97002a5252027c4ed1144Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

public static class DisplayFusionFunction
{
    public static void Run(IntPtr windowHandle)
    {
        foreach (IntPtr window in BFS.Window.GetVisibleAndMinimizedWindowHandles())
        {
            if (BFS.Window.IsMinimized(window))
            {
                BFS.Window.Restore(window);
            }
        }
    }
}</pre><textarea id="code019da5f8daf97002a5252027c4ed1144" name="code019da5f8daf97002a5252027c4ed1144" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>Maximizing windows touble</title>
<link>https://www.displayfusion.com/Discussions/View/maximizing-windows-touble/?ID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b</link>
<pubDate>Sun, 09 Jun 2019 14:28:41 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/maximizing-windows-touble/?ID=ed7f9ebd-7e27-42fa-bb48-5c939d28383b</guid>
<category>DisplayFusion</category>
<description><![CDATA[I need some help trying to figure how to restore window and maximize it.
I created a trigger that when a specific process is created with use the following function: Minimize All Windows Except Current Window (All Monitors)
That works perfectly however I create another trigger that when that sp...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I need some help trying to figure how to restore window and maximize it.<br/>
<br/>
I created a trigger that when a specific process is created with use the following function: Minimize All Windows Except Current Window (All Monitors)<br/>
<br/>
That works perfectly however I create another trigger that when that specific process ends I need it to restore all the windows that got minimized or in this case there is just one. <br/>
<br/>
Is there a function like: Maximize All Windows Except Current Window (All Monitors)? To restore what the first function does.
</div>
]]></content:encoded>
</item>
</channel>
</rss>