0 of 0

File information

Last updated

Original upload

Created by

dany5639

Uploaded by

dany5639

Virus scan

Some manually verified files

Tags for this mod

Documentation

Readme

View as plain text

TLDR: win10 start menu icons. Make MCC and MCCCE shortcuts then pin to start.

### WHATS THIS ###
Shortcuts to Steam games can't be pinned in the Windows 10 Start menu. Use this to do it. It's a one line program to simply call steam and launch the game.

### INSTRUCTIONS ###
Right click on "MCC.exe", create a shortcut, rename shortcut to "MCC" and right click on it, click "Pin to Start".
Do the same for "MCCCE.exe". You can rename the shortcut to anything such as Halo MCC Custom Edition.

### RENAMING MCC or MCCCE (OPTIONAL) ###
If you rename "MCC.exe" or "MCCCE.exe", also change the original name in the file ".visualelementsmanifest.xml" to match.

### SOURCES ###
"MCC.exe"'s icon is from Steam.
70x70.png and 150x150.png are from MCC from Microsoft Store.

### CUSTOMISATION ###
.visualelementsmanifest.xml has some customisable options.
Replace "70x70.png" and "150x150.png" to customize.
Unpin and pin again to update the new images.

### EXE PROGRAM ###
MCC.exe and MCCCE.exe are a simple program to run MCC trough Steam.
It simply starts "steam://launch/976730/option0" which tells Steam to open MCC with EAC enabled, or option1 with EAC disabled.
A batch file didn't seem to work to launch MCC with EAC disabled.

### SOURCE CODE ###
// Using Visual Studio Community 2019, start a new C# blank project and match the main code to the following:
// For some reason, both NexusMods and Virustotal.com would detect it as a virus, it's possible some viruses would use the same function for malicious purposes.
using System.Diagnostics;
namespace MCC{class Program{static void Main(){Process.Start("steam://launch/976730/option0");}}}

### Insider Flights or other Steam games ###
Use Visual Studio Community 2019, start a new C# blank project and copy the above code. Use SteamDB.com to get the game's ID and replace it. Options might on the game's page.

Thanks to Halo Mods discord for providing the link to run MCC with the EAC option.
Thanks to Nexus moderator (Pickysaurus) for helping with an issue.

dany5639