using System.Diagnostics; using UnityEngine; public class OpenExeButton : MonoBehaviour { public string exePath; public void OpenExe() { Process.Start(exePath); } }