Greetings,
I am trying to run an external EXE, or to be more specific, a Skyrim game from the small profile manager program I've written.
Running literally any other EXE from the program is completely fine. All games that are stored and ran from the program run perfectly.
However, when running Skyrim game from the program, it appears that the game is ran with some restrictions or otherwise is limited, because when the user attempts to load any saved games, the game will notify the user that the save games are corrupted, or based on content that is no longer there. No save games can be loaded.
Running the game's EXE manually even when the program is running does not result in an error.
I have tried running a simple System.Diagnost ics.Process.Sta rt but seeing it produces the error, I tried using:
It still produces the error.
I assume that this is somehow tied to running the game from seperate process instead as a user from Windows.
Thoughts?
I am trying to run an external EXE, or to be more specific, a Skyrim game from the small profile manager program I've written.
Running literally any other EXE from the program is completely fine. All games that are stored and ran from the program run perfectly.
However, when running Skyrim game from the program, it appears that the game is ran with some restrictions or otherwise is limited, because when the user attempts to load any saved games, the game will notify the user that the save games are corrupted, or based on content that is no longer there. No save games can be loaded.
Running the game's EXE manually even when the program is running does not result in an error.
I have tried running a simple System.Diagnost ics.Process.Sta rt but seeing it produces the error, I tried using:
Code:
System.Diagnostics.ProcessStartInfo game = new System.Diagnostics.ProcessStartInfo(split[1]); game.UseShellExecute = true; game.LoadUserProfile = true; System.Diagnostics.Process.Start(game);
I assume that this is somehow tied to running the game from seperate process instead as a user from Windows.
Thoughts?
Comment