Skip to content

Instantly share code, notes, and snippets.

@piotrkubisa
Last active August 29, 2015 13:57
Show Gist options
  • Save piotrkubisa/9567550 to your computer and use it in GitHub Desktop.
Save piotrkubisa/9567550 to your computer and use it in GitHub Desktop.
Some scripts to get rid of freaky dynamic color (aka unicorn's rainbow vomit) tiles in Windows 8.1.

README.md

Some scripts to get rid of freaky dynamic color (aka unicorn's rainbow vomit) tiles in Windows 8.1.

RefreshLnk.cmd

Command used to refresh all *.lnk files (for example in StartMenu/Programs to update Windows 8.1 Metro/Modern UI tiles).

  1. Get into Command Prompt (Admin). SUPER(WinLogo) + X + A
  2. Switch to Start Menu/Programs dir.
  3. Call this command.

AddManifestToExe.cmd

Copy FILE_NAME.visualelementsmanifest.xml to direcory where are *.exe files which can be pinned to Start and you want to override dynamic tile colouring with own configuration.

  1. Get into Command Prompt (Admin). SUPER(WinLogo) + X + A
  2. Switch to C:/Programs Files/PLACE_WHERE_I_HAVE_SOME/FILE_NAME.EXE.
  3. Call this command.

EXE.visualelementsmanifest.xml

Sample VEM configuration.

forfiles /m "*.exe" /C "cmd /c xcopy C:\PATH_TO\EXE.visualelementsmanifest.xml .\@fname.visualelementsmanifest.xml"
<Application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<VisualElements
BackgroundColor="#444444"
ShowNameOnSquare150x150Logo="on"
ForegroundText="light" />
</Application>
forfiles /s /m "*.lnk" /C "cmd /c copy /b @file +,,"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment