PlayFallout4Now
Skips the launcher menu when you start Fallout 4 through Steam.
This is easily accomplished by running the following console command from inside the Fallout 4 directory:
set SteamAppID=377160&Fallout4.exe
This is simply a wrapper for this command for those people who don’t know about batch files.
SOURCE CODE
———————
using System.Diagnostics;
namespace PlayFallout4Now
{
class Program
{
static void Main(string[] args)
{
var command = new ProcessStartInfo(“cmd”, @”/c set SteamAppID=377160&Fallout4.exe”);
command.WorkingDirectory = @”C:\Program Files (x86)\Steam\steamapps\common\Fallout 4″;
Process.Start(command);
}
}
}