Introducing WMC mini-mods

Discussion of getting WMC to work on Windows 11 (unsupported)
Kevin Chalet

Posts: 147
Joined: Mon Oct 08, 2018 12:00 pm
Location:

HTPC Specs: Show details

#81

Post by Kevin Chalet » Sun Mar 17, 2024 1:15 am

Engineer wrote: Sat Mar 16, 2024 5:26 pm The individual program information that is briefly display when switching live TV channels is too short - it often cuts off/fades away program information. Additionally, the network name under the channel number is also too short for some networks. It looks to me that fade out length does not even make it to halfway across the available screen area. Is it possible to individually lengthen these two areas?

Thank you,
Will
Changing the "skin files" is out of scope for this project - which exclusively focuses on patching the WMC .NET assemblies - but it's fairly easy to customize that yourself.
For that, you can use the excellent/fantastic/magical/impressive/incredible Media Center Themer tool: https://www.thegreenbutton.tv/wiki/inde ... ter_Themer :mrgreen:

The file you're looking for is called INFOBARHINTING.MCML.

Here's an example of an edited version that uses larger fonts and a much larger MediaInfoPanel size (1000 instead of 359):

Code: Select all

<Mcml xmlns="http://schemas.microsoft.com/2006/mcml"
  xmlns:cor="assembly://MsCorLib/System"
  xmlns:nav="res://Microsoft.MediaCenter.Shell!NavPanel.mcml"
  xmlns:comm="res://Microsoft.MediaCenter.Shell!Globals.mcml"
  xmlns:vid="assembly://ehshell/MediaCenter.Video"
  xmlns:d="res://ehres!DigitEntryView.xml"
  xmlns:play="assembly://ehshell/Microsoft.MediaCenter.Playback"
  xmlns:np="assembly://ehshell/Microsoft.MediaCenter.NowPlaying"
  xmlns:base="res://ehres!InfoBarBase.mcml"
  xmlns:shell="assembly://Microsoft.MediaCenter.Shell/Microsoft.MediaCenter.Shell"
  xmlns:anim="res://Microsoft.MediaCenter.Shell!SlideAnimations.mcml"
  xmlns:me="Me">
  <UI Name="InfoBarHinting" BaseUI="base:InfoBarBase">
    <Properties>
      <vid:InfoBarModel Name="Model" InfoBarModel="$Required"/>
      <np:NowPlayingSlideDeck Name="NowPlaying" NowPlayingSlideDeck="$Required"/>
      <play:MediaNavigator Name="Model1" play:MediaNavigator="$Required"/>
      <play:DigitEntryHelper Name="Helper" play:DigitEntryHelper="$Required"/>
      <play:TunerPolicy Name="TunerPolicy" play:TunerPolicy="null"/>
      <Font Name="PIPFont" FontName="global://comm:MainFontFace" FontSize="28" />
      <Font Name="Font" FontName="global://comm:MainFontFace" FontSize="32" />
      <Color Name="Color" Color="color://comm:OffWhite"/>
      <Color Name="BackColor" Color="color://comm:Transparent"/>
    </Properties>
    <Locals>
      <Environment Name="Environment"/>
      <shell:ShellData Name="ShellData"/>
      <AnchorEdge Name="SafeLeft" Id="Parent" Percent="0"/>
    </Locals>
    <Rules>
      <Rule ConditionLogicalOp="And">
        <Conditions>
          <Equality Source="[Helper.Enabled]" Value="true"/>
          <Equality Source="[Input.DeepKeyFocus]" Value="false"/>
        </Conditions>
        <Actions>
          <Set Target="[DigitEntry.Visible]" Value="true"/>
          <Set Target="[HintingSlide.Visible]" Value="false"/>
        </Actions>
      </Rule>
      <Default Target="[HintingSlide.Visible]" Value="true"/>
      <Default Target="[DigitEntry.Visible]" Value="false"/>
      <Binding Target="[FullChannelNumber.Content]" Source="[Helper.FormattedNumber]"/>
      <Rule ConditionLogicalOp="And">
        <Conditions>
          <Equality Source="[Helper.Submitted]" Value="true"/>
          <IsValid Source="[TunerPolicy]"/>
        </Conditions>
        <Actions>
          <Set Target="[Model1.ChannelNumber]" Value="[TunerPolicy.Number]"/>
          <Set Target="[TunerPolicy.PresetMode]" Value="true"/>
        </Actions>
      </Rule>
      <Rule ConditionLogicalOp="And">
        <Conditions>
          <Equality Source="[Helper.Submitted]" Value="true"/>
          <Equality Source="[TunerPolicy]" ConditionOp="Equals" Value="null"/>
        </Conditions>
        <Actions>
          <Set Target="[Model1.ChannelNumber]" Value="[Helper.Number]"/>
        </Actions>
      </Rule>
      <Condition Source="[Model.CurrentFilter]" SourceValue="" Target="[CurrentFilterIcon.Visible]" Value="false"/>
      <Binding Source="[Model.CurrentFilter]" Target="[CurrentFilterTitle.Content]" />
      <Binding Target="[SafeLeft.Offset]" Source="[ShellData.OverscanMargins.Left]"/>
    </Rules>
    <Content>
      <Panel Layout="Anchor">
        <Children>
          <Panel Name="MainPanel" Layout="Form">
            <Animations>
              <Animation Animation="animation://anim:Infobar.Show" />
              <Animation Animation="animation://anim:Infobar.Hide" />
            </Animations>
            <Children>
              <Panel Name="DigitEntry" Layout="Form" MinimumSize="179,0" MaximumSize="179,0">
                <LayoutInput>
                  <AnchorLayoutInput Left="[SafeLeft]" Top="Outline,0,27"/>
                </LayoutInput>
                <Children>
                  <Text Name="FullChannelNumber" Font="[Font]" Color="[Color]">
                    <LayoutInput>
                      <AnchorLayoutInput Right="Parent,1" Top="Parent,0"/>
                    </LayoutInput>
                  </Text>
                </Children>
              </Panel>
              <Panel Name="HintingSlide" Layout="Form">
                <LayoutInput>
                  <AnchorLayoutInput Left="[SafeLeft]" Top="Outline,0" Bottom="Outline,1"/>
                </LayoutInput>
                <Children>
                  <Panel Name="ChannelInfoPanel" Layout="Form" MinimumSize="120,0">
                    <LayoutInput>
                      <AnchorLayoutInput Right="MediaInfoPanel,0,-12" Top="Parent,0,27"/>
                    </LayoutInput>
                    <Animations>
                      <Animation Animation="animation://comm:MenuItem.HorizontalFaster.Show"/>
                    </Animations>
                    <Children>
                      <d:DigitEntry Name="Channel" EditData="[Model.EditData]" PlayAnimations="false" Font="[TitleFont]" Margins="0,0,0,0">
                        <LayoutInput>
                          <AnchorLayoutInput Right="Parent,1" Top="Parent,0"/>
                        </LayoutInput>
                        <Animations>
                          <Animation Animation="animation://base:InfoBar.Metadata.Show"/>
                          <Animation Animation="animation://base:InfoBar.Metadata.Hide"/>
                        </Animations>
                      </d:DigitEntry>
                      <Text Name="CallSign" Font="[OtherFont]" Color="color://comm:OffWhite" Margins="12,0,0,0">
                        <LayoutInput>
                          <AnchorLayoutInput Right="Parent,1" Top="Channel,1"/>
                        </LayoutInput>
                        <Animations>
                          <Animation Animation="animation://base:InfoBar.Metadata.Show"/>
                          <Animation Animation="animation://base:InfoBar.Metadata.Hide"/>
                        </Animations>
                      </Text>
                      <Panel Name="ChannelInfoIconsPanel">
                        <LayoutInput>
                          <AnchorLayoutInput Right="Channel,0" Top="Channel,0"/>
                        </LayoutInput>
                        <Layout>
                          <FlowLayout Orientation="Horizontal" StopOnEmptyItem="false"/>
                        </Layout>
                        <Children>
                          <Graphic Name="JoinedIcon" Content="res://ehres!InfoBar.TV.Joined.png" Margins="0,11,13,0">
                            <Animations>
                              <Animation Animation="animation://base:InfoBar.Metadata.Show"/>
                              <Animation Animation="animation://base:InfoBar.Metadata.Hide"/>
                            </Animations>
                          </Graphic>
                          <Graphic Name="RecordSeriesIcon" Content="res://ehres!Video.RecordSeries.png" Margins="0,6,13,0">
                            <Animations>
                              <Animation Animation="animation://base:InfoBar.Metadata.Show"/>
                              <Animation Animation="animation://base:InfoBar.Metadata.Hide"/>
                            </Animations>
                          </Graphic>
                          <Graphic Name="RecordSingleIcon" Content="res://ehres!Video.RecordSingle.png" Margins="0,7,13,0">
                            <Animations>
                              <Animation Animation="animation://base:InfoBar.Metadata.Show"/>
                              <Animation Animation="animation://base:InfoBar.Metadata.Hide"/>
                            </Animations>
                          </Graphic>
                        </Children>
                      </Panel>
                    </Children>
                  </Panel>
                  <Graphic Name="DvdIcon" Content="res://ehres!Browse.InsertedCDFocus.png">
                    <LayoutInput>
                      <AnchorLayoutInput Right="MediaInfoPanel,0,-12" Top="Parent,0,27"/>
                    </LayoutInput>
                    <Animations>
                      <Animation Animation="animation://base:InfoBar.Metadata.Show"/>
                      <Animation Animation="animation://base:InfoBar.Metadata.Hide"/>
                    </Animations>
                  </Graphic>
                  <Panel Name="MediaInfoPanel" MaximumSize="1000,0">
                    <LayoutInput>
                      <AnchorLayoutInput Left="Parent,0,191" Top="Parent,0,27" />
                    </LayoutInput>
                    <Layout>
                      <FlowLayout Orientation="Vertical"/>
                    </Layout>
                    <Children>
                      <Text Name="Title" Font="[TitleFont]" Color="color://comm:OffWhite" WordWrap="false"/>
                      <Text Name="SubTitle" Font="[ClockFont]" Color="color://comm:OffWhite" WordWrap="false"/>
                      <Panel Name="TimeInfoPanel" Layout="HorizontalFlow">
                        <Children>
                          <Text Name="TimeInfo" Font="[OtherFont]" Color="color://comm:LightBlue" WordWrap="false"/>
                          <Graphic Name="HDTVIcon" Content="res://ehres!MetaData.HDTV.png" Margins="13, 7, 0, 0"/>
                          <Graphic Name="DolbyDigitalIcon" Content="res://ehres!AudioLogo.png" Margins="17, 7, 0, 0"/>
                        </Children>
                      </Panel>
                      <Panel>
                        <Layout>
                          <FlowLayout Orientation="Horizontal" ItemAlignment="Near"/>
                        </Layout>
                        <Children>
                          <Graphic Name="CurrentFilterIcon" Content="image://me:FavoriteFilterIcon" Visible="true"/>
                          <Text Name="CurrentFilterTitle" Font="[OtherFont]" Color="[OtherColor]"/>
                        </Children>
                      </Panel>
                    </Children>
                  </Panel>
                </Children>
              </Panel>
              <Graphic Content="image://me:BackgroundTopShadow" Name="TopShadow">
                <LayoutInput>
                  <AnchorLayoutInput Top="Parent,0" Left="Parent,0"/>
                </LayoutInput>
              </Graphic>
              <Graphic Content="image://me:Background" Name="Outline">
                <LayoutInput>
                  <AnchorLayoutInput Top="TopShadow,1" Left="Parent,0"/>
                </LayoutInput>
              </Graphic>
            </Children>
          </Panel>
        </Children>
      </Panel>
    </Content>
  </UI>
  <Image Name="Background" Source="res://ehres!NP_Hinting_Background.png" Flippable="true" />
  <Image Name="BackgroundTopShadow" Source="res://ehres!NP_Hinting_Background_TopShd.png" Flippable="true" />
  <Image Name="FavoriteFilterIcon" Image="res://ehres!ChannelBrowser.FavoriteLineup.Icon.png"/>
</Mcml>
You'll also want to replace NP_HINTING_BACKGROUND.PNG by a larger image so that it covers a larger portion of your screen (otherwise, the right part of the program title might be hard to read).
Last edited by Kevin Chalet on Sun Mar 17, 2024 2:33 pm, edited 1 time in total.

User avatar
IT Troll

Posts: 1193
Joined: Sun Nov 27, 2011 9:42 am
Location: Edinburgh, UK

HTPC Specs: Show details

#82

Post by IT Troll » Sun Mar 17, 2024 8:14 am

Media Center Themer is a really excellent tool. It takes a little while to get to grips with it, but once you do, customising things becomes somewhat addictive!
Are you a Recorded TV HD user or want to give it a try? Check out the new community-made update; Recorded TV HD v2.1.1

Kevin Chalet

Posts: 147
Joined: Mon Oct 08, 2018 12:00 pm
Location:

HTPC Specs: Show details

#83

Post by Kevin Chalet » Sun Mar 17, 2024 3:00 pm

IT Troll wrote: Sun Mar 17, 2024 8:14 am Media Center Themer is a really excellent tool. It takes a little while to get to grips with it, but once you do, customising things becomes somewhat addictive!
100% agree. I was a loooooong-time Media Center Studio user - MCS was working just fine so why changing? :lol: - but I finally gave Media Center Themer a try last year: it makes authoring and deploying themes so much easier!
... and combined with PowerShell remoting, it's insanely easy to sync the theme on all your HTPCs at the same time :twisted:

Engineer

Posts: 10
Joined: Sat Oct 03, 2015 1:46 am
Location:

HTPC Specs: Show details

#84

Post by Engineer » Sun Mar 17, 2024 4:48 pm

Kevin;

Thank you for pointing out Media Center Themer tool and also for providing an example! How I never heard of it before is beyond me ... Just too bad that you do not think very highly of the tool. :D

So while I eat Reuben sandwiches and drink green beer on this St. Patrick's day, I get to play with all this tool can can do!

Kevin Chalet

Posts: 147
Joined: Mon Oct 08, 2018 12:00 pm
Location:

HTPC Specs: Show details

#85

Post by Kevin Chalet » Mon Mar 25, 2024 8:13 pm

Engineer wrote: Sun Mar 17, 2024 4:48 pm So while I eat Reuben sandwiches and drink green beer on this St. Patrick's day, I get to play with all this tool can can do!
Did that end well? :mrgreen:

On an unrelated note, I finally updated all my WMC machines - NUCs and homemade HTPCs - last week to adopt the DisableFullscreenOptimizations mini-mod introduced in 1.0.0: after testing it extensively, I was able to confirm that disabling the exclusive fullscreen mode is a very effective way to fix most of - if not all - the graphical issues caused by "HDMI handshakes" (permanent black screens after waking up, weird resolution after unplugging the HDMI cable or waking up, unresponsive GUI, etc.).

I used to rely on MCE Standby to automatically restart WMC (only on machines equipped with Intel iGPUs since NVIDIA and AMD GPUs were much less affected) but it's no longer necessary when using that mod :clap:

prsa01

Posts: 136
Joined: Fri Dec 13, 2019 4:19 pm
Location:

HTPC Specs: Show details

#86

Post by prsa01 » Tue Mar 26, 2024 10:20 am

Kevin Chalet wrote: Mon Mar 25, 2024 8:13 pm
Engineer wrote: Sun Mar 17, 2024 4:48 pm So while I eat Reuben sandwiches and drink green beer on this St. Patrick's day, I get to play with all this tool can can do!
Did that end well? :mrgreen:

On an unrelated note, I finally updated all my WMC machines - NUCs and homemade HTPCs - last week to adopt the DisableFullscreenOptimizations mini-mod introduced in 1.0.0: after testing it extensively, I was able to confirm that disabling the exclusive fullscreen mode is a very effective way to fix most of - if not all - the graphical issues caused by "HDMI handshakes" (permanent black screens after waking up, weird resolution after unplugging the HDMI cable or waking up, unresponsive GUI, etc.).

I used to rely on MCE Standby to automatically restart WMC (only on machines equipped with Intel iGPUs since NVIDIA and AMD GPUs were much less affected) but it's no longer necessary when using that mod :clap:
Cool. I'll give that a try with my wmc black screen on tv power up and report back.

Since winUpdate is known to randomly undo registry settings on occasion, does anyone have a quick/easy way to save & restore specific reg branches such as wmc?

User avatar
IT Troll

Posts: 1193
Joined: Sun Nov 27, 2011 9:42 am
Location: Edinburgh, UK

HTPC Specs: Show details

#87

Post by IT Troll » Tue Mar 26, 2024 10:17 pm

prsa01 wrote: Tue Mar 26, 2024 10:20 am Since winUpdate is known to randomly undo registry settings on occasion, does anyone have a quick/easy way to save & restore specific reg branches such as WMC?
In regedit you can right-click on a branch and export everything from that point down. It exports as a text file which can edit (if desired) and double-click to re-import. Some caution is required though. Some settings are meant to change over time and so re-importing these may have undesirable effects.
Are you a Recorded TV HD user or want to give it a try? Check out the new community-made update; Recorded TV HD v2.1.1

prsa01

Posts: 136
Joined: Fri Dec 13, 2019 4:19 pm
Location:

HTPC Specs: Show details

#88

Post by prsa01 » Wed Apr 03, 2024 2:11 pm

I'm sure this SHOULD be readily apparent but just want to make sure my testing plan is based on correct assumptions. I am probably making this more complicated than it is by not fully understanding the process.

If I want to
create all of the reg keys as disabled (or just a few enabled)
turn off/on individual keys for testing
run tests
repeat

I copy one of the all inclusive reg files, edit as necessary, execute
then do I need to restart services and/or reboot to test?
Can I continue to edit that same reg file tweaking on/off and re-execute or is that a bad idea?

This seems, to me, more straightforward than tweaking individual settings in powershell since the reg file will reflect current settings and can be changed/executed. I suppose, now that all the associated reg keys centralized under minimods, it may be just as simple to review/manage them there once they have been created.

Thanks much

User avatar
IT Troll

Posts: 1193
Joined: Sun Nov 27, 2011 9:42 am
Location: Edinburgh, UK

HTPC Specs: Show details

#89

Post by IT Troll » Wed Apr 03, 2024 9:47 pm

If we are just talking about the registry settings associated with minimods, then there is no need to restart services or reboot. Probably best to close Media Center though whilst making changes.

Personally, I would just use regedit to make the entries and for tweaking during the initial testing stage. Once all is as desired, then use the export function to take the backup of your preferences for a quick restore in future.
Are you a Recorded TV HD user or want to give it a try? Check out the new community-made update; Recorded TV HD v2.1.1

prsa01

Posts: 136
Joined: Fri Dec 13, 2019 4:19 pm
Location:

HTPC Specs: Show details

#90

Post by prsa01 » Sat Apr 06, 2024 9:40 am

IT Troll wrote: Wed Apr 03, 2024 9:47 pm If we are just talking about the registry settings associated with minimods, then there is no need to restart services or reboot. Probably best to close Media Center though whilst making changes.

Personally, I would just use regedit to make the entries and for tweaking during the initial testing stage. Once all is as desired, then use the export function to take the backup of your preferences for a quick restore in future.
Thanks ITT,

I was making it more complicated than necessary. It all works great. Disabling "full screen optimization" did resolve my black screen on tv on issue.

Thanks much, Kevin for this!

Kevin Chalet

Posts: 147
Joined: Mon Oct 08, 2018 12:00 pm
Location:

HTPC Specs: Show details

#91

Post by Kevin Chalet » Sat Apr 06, 2024 7:21 pm

prsa01 wrote: Sat Apr 06, 2024 9:40 am I was making it more complicated than necessary. It all works great. Disabling "full screen optimization" did resolve my black screen on tv on issue.

Thanks much, Kevin for this!
Glad to hear it's working for you too! 8-)
IT Troll wrote: Wed Apr 03, 2024 9:47 pm If we are just talking about the registry settings associated with minimods, then there is no need to restart services or reboot. Probably best to close Media Center though whilst making changes.

Personally, I would just use regedit to make the entries and for tweaking during the initial testing stage. Once all is as desired, then use the export function to take the backup of your preferences for a quick restore in future.
Yeah, it's the simplest option (or you can use Powershell if you're a scripting guy, it works very well too).

You can definitely add/update the mini-mods registry keys while ehshell.exe is still running, but many of the mods will require restarting WMC to be effective (there are exceptions, e.g DisableVideoOverscan only requires stopping/restarting the TV stream, e.g by switching to a different channel).

prsa01

Posts: 136
Joined: Fri Dec 13, 2019 4:19 pm
Location:

HTPC Specs: Show details

#92

Post by prsa01 » Sun Apr 07, 2024 10:23 am

Kevin, is it possible to allow minimizing while DisableWindowedMode is on? I'm guessing not but figured I'd confirm. Confuses the better half.

Not a big deal. She'll figure out alt-tab eventually.

Thanks again for some great wmc usability improvements!

Kevin Chalet

Posts: 147
Joined: Mon Oct 08, 2018 12:00 pm
Location:

HTPC Specs: Show details

#93

Post by Kevin Chalet » Sun Apr 07, 2024 3:20 pm

prsa01 wrote: Sun Apr 07, 2024 10:23 am Kevin, is it possible to allow minimizing while DisableWindowedMode is on? I'm guessing not but figured I'd confirm. Confuses the better half.
Sadly no. I personally only use DisableWindowedMode on my WMC-dedicated machines (they are only used with MCE remotes, so not having a windowed mode is not a concern at all). For my "hybrid" machines, I don't use it: when booting these machines, WMC doesn't go fullscreen automatically, but since I rarely restart them (I'm an hibernation guy :mrgreen:), it's not really a big deal either.
prsa01 wrote: Sun Apr 07, 2024 10:23 am Thanks again for some great WMC usability improvements!
My pleasure!

packetloss

Posts: 13
Joined: Mon Mar 06, 2017 3:00 pm
Location: Massapequa

HTPC Specs: Show details

#94

Post by packetloss » Mon Apr 08, 2024 1:39 am

I've been stuck in the PlayReady update loop and have been trying to find a solution and eventually came across this thread.
From what I've seen in threads, you don't use a CableCard since that is only a US thing. What happens when trying to set up the tuners for use with a CableCard is:
1 - you need to run Digital Advisor. This still works fine.
2 - you need PlayReady (there are 2 versions 1.3.0 and 1.3.10) that are available to install, issue happens with either version. My original W7 WMC is running fine with 1.3.0.
3 - When you go through the tuner setup it eventually comes to a screen where it wants to update PlayReady but can't and complains that you don't have an internet connection and do you want to try again. This apparently fails as the MS server for this update is no longer active.

I am hoping a simple override to this check will allow the tuner setup to complete and that PlayReady will get configured and work. There were some guides suggesting deleting the DRM files from ehome, etc. etc., but none of those really work.

I don't know enough about how WMC libraries work, but it seems like perhaps patching this routine to always return true might work. Ideally, I would want whatever routine that wants to check for an update, to just return success. Just not sure if this is the right place as this doesn't seem to be checking to see if a new version is available. I will have to put a W10 1511 build back together to test this (I trashed it after I couldn't get past the PlayReady update loop), but before I do, I figured I'd see if you had any thoughts as to whether this seems like the right place to patch it or if you might be able to point me to the spot that looks like it's checking to see if a newer version is available and doing the update.

namespace Microsoft.MediaCenter
{
protected override bool IsOfficiallyInstalled
{
get
{
Version v = new Version("1.3.0");
Version version = new Version("0.0");
int num = 50;
StringBuilder stringBuilder = new StringBuilder(50);
uint num2 = 0U;
while (PlayReadyInstaller.MsiEnumClientsW("{63EBD4FD-72C1-49A6-86F1-CCD300FB9532}", num2++, stringBuilder, ref num) == 0U)
{
num = 50;
string text = stringBuilder.ToString();
if (!string.IsNullOrEmpty(text))
{
int num3 = 50;
StringBuilder stringBuilder2 = new StringBuilder(50);
if (PlayReadyInstaller.MsiGetProductInfoW(text, "VersionString", stringBuilder2, ref num3) == 0U)
{
string text2 = stringBuilder2.ToString();
if (!string.IsNullOrEmpty(text2))
{
Version version2;
if (text2.IndexOf('.') == -1)
{
version2 = new Version(Convert.ToInt32(text2, CultureInfo.InvariantCulture), 0);
}
else
{
version2 = new Version(text2);
}
if (version2 > version)
{
version = version2;
}
}
}
}
}
return version >= v;
}
}
}

User avatar
garyan2

Posts: 7480
Joined: Fri Nov 27, 2015 7:23 pm
Location:

HTPC Specs: Show details

#95

Post by garyan2 » Mon Apr 08, 2024 4:05 am

packetloss wrote: Mon Apr 08, 2024 1:39 am I will have to put a W10 1511 build back together to test this (I trashed it after I couldn't get past the PlayReady update loop), but before I do, I figured I'd see if you had any thoughts as to whether this seems like the right place to patch it or if you might be able to point me to the spot that looks like it's checking to see if a newer version is available and doing the update.
If you're going to build a new Win10 1511 WMC, try this method to see if that works. viewtopic.php?p=153329#p153329
- Gary
Keeping WMC alive beyond January 2020. https://garyan2.github.io

Post Reply