<?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: Taskbar issue with Fullscreen Windowed Mode</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=6e31f041-28d5-49e4-b715-889336fc7a48" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=6e31f041-28d5-49e4-b715-889336fc7a48</link>
<description>DisplayFusion RSS: Taskbar issue with Fullscreen Windowed Mode</description>
<lastBuildDate>Thu, 21 May 2026 08:23:14 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=6e31f041-28d5-49e4-b715-889336fc7a48</generator>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#18</link>
<pubDate>Wed, 13 Jul 2016 14:40:57 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#18</guid>
<category>DisplayFusion</category>
<description><![CDATA[Actually, you could create a Scripted Function in DisplayFusion to disable the taskbar, launch the game, then re-enable the taskbar after it exits. See the code below. If it doesn't work (might have the same problem, where it can't see that the game is actually running), just take out the "WaitFo...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Actually, you could create a Scripted Function in DisplayFusion to disable the taskbar, launch the game, then re-enable the taskbar after it exits. See the code below. If it doesn't work (might have the same problem, where it can't see that the game is actually running), just take out the "WaitForExit" and "EnableTaskbar" lines, and move the EnableTaskbar line to a separate Scripted Function. You can then give those two functions hotkeys so that you can enable/disable the taskbar as needed.<br/>
<br/>
<div 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="#code019e49a1b34b7534a824f97ec3746e88" class="ClipboardCopyControl"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019e49a1b34b7534a824f97ec3746e88Js'); return false;"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;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="code019e49a1b34b7534a824f97ec3746e88Js" 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()
    {
      // Disable the taskbar
      BFS.DisplayFusion.DisableTaskbar(1);
        
      // Start the game and wait for it to exit
      uint appID = BFS.Application.Start("E:\\World of Warcraft\World of Warcraft - 1.12\\WoW.exe");
      BFS.Application.WaitForExitByAppID(appID);
       
      // After the game has exited, enable the taskbar
      BFS.DisplayFusion.EnableTaskbar(1);
     }
}</pre><textarea id="code019e49a1b34b7534a824f97ec3746e88" name="code019e49a1b34b7534a824f97ec3746e88" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#17</link>
<pubDate>Tue, 12 Jul 2016 18:39:52 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#17</guid>
<category>DisplayFusion</category>
<description><![CDATA[Is there any bat file i can run that can trigger DisplayFusion to completely hide the task bar? I can write it myself, but just wasn't sure if there is some kinda API call i can make. I'd be fine writing something to hide it till i close the cmd window after i close the game.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Is there any bat file i can run that can trigger DisplayFusion to completely hide the task bar? I can write it myself, but just wasn't sure if there is some kinda API call i can make. I'd be fine writing something to hide it till i close the cmd window after i close the game.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#16</link>
<pubDate>Tue, 12 Jul 2016 18:32:23 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#16</guid>
<category>DisplayFusion</category>
<description><![CDATA[Yeah, that's bizarre. The only thing I can think of is that WoW might have some anti-cheat protection that's preventing DisplayFusion from seeing the process. Unfortunately I don't think there's anything we can do here]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Yeah, that's bizarre. The only thing I can think of is that WoW might have some anti-cheat protection that's preventing DisplayFusion from seeing the process. Unfortunately I don't think there's anything we can do here <img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/face-frown.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>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#15</link>
<pubDate>Tue, 12 Jul 2016 18:27:14 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#15</guid>
<category>DisplayFusion</category>
<description><![CDATA[Yup... that's what i've been thinking is fishy too. It's not showing up at all... I turned on L1 logging, restart DisplayFusion, waited a few moments then opened WoW.exe, logged into my character and waited a few moments, and quit the game. I have no idea why this app would not show up.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Yup... that's what i've been thinking is fishy too. It's not showing up at all... I turned on L1 logging, restart DisplayFusion, waited a few moments then opened WoW.exe, logged into my character and waited a few moments, and quit the game. I have no idea why this app would not show up.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#14</link>
<pubDate>Tue, 12 Jul 2016 15:34:29 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#14</guid>
<category>DisplayFusion</category>
<description><![CDATA[No worries, thanks! I don't see wow.exe listed anywhere in the debug log either
Did you enable debug logging after launching WoW, or before launching it?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
No worries, thanks! I don't see wow.exe listed anywhere in the debug log either <img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/face-frown.light.svg" alt=":(" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":(" HelpButtonDataAlign="BelowMiddle" /><br/>
<br/>
Did you enable debug logging after launching WoW, or before launching it?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#13</link>
<pubDate>Mon, 11 Jul 2016 01:03:53 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#13</guid>
<category>DisplayFusion</category>
<description><![CDATA[Sorry it took a bit to get back to you. Been on vacation   Here are the logs, the time is about 7:00 PM MST when it happened again.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Sorry it took a bit to get back to you. Been on vacation <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" />  Here are the logs, the time is about 7:00 PM MST when it happened again.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#12</link>
<pubDate>Wed, 22 Jun 2016 17:23:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#12</guid>
<category>DisplayFusion</category>
<description><![CDATA[I'm really stumped on this! Could you try updating to the latest DisplayFusion Beta, and then send over a debug log while WoW is running?
On the Troubleshooting tab, change the Logging drop-down to "L1: Log Minimal"
Restart DisplayFusion
Reproduce the issue and note the time so we'll know wher...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I'm really stumped on this! Could you try updating to the latest <a href="https://www.displayfusion.com/Download/Beta" target="_blank" rel="nofollow"><b>DisplayFusion Beta</b></a>, and then send over a debug log while WoW is running?<br/>
<ul class="ListBullet">
<li>On the Troubleshooting tab, change the Logging drop-down to "L1: Log Minimal"</li>
<li>Restart DisplayFusion</li>
<li>Reproduce the issue and note the time so we'll know where to check in the log file</li>
<li>Send us the DisplayFusion.log and DebugInfo.html files (can be found by clicking the Open Log button on the Troubleshooting tab)</li>
<li>Disable debug logging after sending the log</li></ul>
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#11</link>
<pubDate>Fri, 17 Jun 2016 04:07:11 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#11</guid>
<category>DisplayFusion</category>
<description><![CDATA[Here you go]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Here you go
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#10</link>
<pubDate>Thu, 16 Jun 2016 17:45:54 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#10</guid>
<category>DisplayFusion</category>
<description><![CDATA[Could you send a screenshot of that process on the Details tab?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Could you send a screenshot of that process on the Details tab?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#9</link>
<pubDate>Thu, 16 Jun 2016 16:55:55 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#9</guid>
<category>DisplayFusion</category>
<description><![CDATA[Yea, that's what I thought was weird to. I have tried making it detect on multiple names, and I for the life of me cannot figure this one out...
The process shows up as World of Warcraft (32 bit).]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Yea, that's what I thought was weird to. I have tried making it detect on multiple names, and I for the life of me cannot figure this one out...<br/>
<br/>
The process shows up as World of Warcraft (32 bit).
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#8</link>
<pubDate>Thu, 16 Jun 2016 13:54:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#8</guid>
<category>DisplayFusion</category>
<description><![CDATA[Ok, the weird part is that WoW.exe doesn't even seem to be detected by DisplayFusion in the list of processes. Do you run WoW as administrator, or as a different user?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ok, the weird part is that WoW.exe doesn't even seem to be detected by DisplayFusion in the list of processes. Do you run WoW as administrator, or as a different user?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#7</link>
<pubDate>Wed, 15 Jun 2016 22:10:25 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#7</guid>
<category>DisplayFusion</category>
<description><![CDATA[Still doesn't like it :/]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Still doesn't like it :/
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#6</link>
<pubDate>Wed, 15 Jun 2016 16:51:25 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#6</guid>
<category>DisplayFusion</category>
<description><![CDATA[Can you try changing the path in the Compatibility rule to just: Code
Copy
Select All
*WoW.exe?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Can you try changing the path in the Compatibility rule to just: <div 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="#code019e49a1b3ae74ea8fbf4655b4920ffc" class="ClipboardCopyControl"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019e49a1b3ae74ea8fbf4655b4920ffcJs'); return false;"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;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="code019e49a1b3ae74ea8fbf4655b4920ffcJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">*WoW.exe?</pre><textarea id="code019e49a1b3ae74ea8fbf4655b4920ffc" name="code019e49a1b3ae74ea8fbf4655b4920ffc" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#5</link>
<pubDate>Wed, 15 Jun 2016 04:29:39 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#5</guid>
<category>DisplayFusion</category>
<description><![CDATA[Here ya go.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Here ya go.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#4</link>
<pubDate>Tue, 14 Jun 2016 19:13:34 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[Ok, could you attach a copy of your troubleshooting info, copied while WoW.exe is running?
Open the Settings  Troubleshooting tab
Click the "Copy to Clipboard" button
Paste the text into a text file (please don't paste the text directly into your reply, the formatting gets garbled and makes it...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ok, could you attach a copy of your troubleshooting info, copied while WoW.exe is running?<br/>
<ul class="ListBullet">
<li>Open the Settings > Troubleshooting tab</li>
<li>Click the "Copy to Clipboard" button</li>
<li>Paste the text into a text file (please don't paste the text directly into your reply, the formatting gets garbled and makes it difficult to parse)</li>
<li>Reply with the file attached</li></ul>
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#3</link>
<pubDate>Tue, 14 Jun 2016 02:54:49 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[No it doesn't look like it ever shows up as a FullScreen Application in the Troubleshooting section.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
No it doesn't look like it ever shows up as a FullScreen Application in the Troubleshooting section.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>RE: Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#2</link>
<pubDate>Mon, 13 Jun 2016 18:56:22 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[That Compatibility rule should do the trick, assuming the path to the EXE is correct. If you open the Settings  Troubleshooting tab, and click "Full screen applications," is WoW.exe listed there as detected?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
That Compatibility rule should do the trick, assuming the path to the EXE is correct. If you open the Settings > Troubleshooting tab, and click "Full screen applications," is WoW.exe listed there as detected?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
<item>
<title>Taskbar issue with Fullscreen Windowed Mode</title>
<link>https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48</link>
<pubDate>Sun, 12 Jun 2016 19:13:25 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/taskbar-issue-with-fullscreen-windowed-mode/?ID=6e31f041-28d5-49e4-b715-889336fc7a48</guid>
<category>DisplayFusion</category>
<description><![CDATA[Hey guys,
So Im having an issue with the taskbar not going away on some applications im using in Fullscreen Windowed mode... I have not been able to get this fixed going through all of the options in Display Fusion. I do use all Display Fusion taskbars, and I have the normal bar hidden with Task...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hey guys,<br/>
So Im having an issue with the taskbar not going away on some applications im using in Fullscreen Windowed mode... I have not been able to get this fixed going through all of the options in Display Fusion. I do use all Display Fusion taskbars, and I have the normal bar hidden with Taskbar Magic app. Is there anything else you guys can think of to fix this?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=cc188c01-82bd-4c6f-b376-3af852aa824d"/>
</item>
</channel>
</rss>