From 352d2a13e6be86771be7cdad50fb99a37089618a Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Sun, 15 Jan 2023 01:28:05 -0600 Subject: [PATCH] PowerShellRuntime methods for running uninstall scripts --- .../PowerShellRuntime.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/LANCommander.Playnite.Extension/PowerShellRuntime.cs b/LANCommander.Playnite.Extension/PowerShellRuntime.cs index af469f5..4eed616 100644 --- a/LANCommander.Playnite.Extension/PowerShellRuntime.cs +++ b/LANCommander.Playnite.Extension/PowerShellRuntime.cs @@ -12,7 +12,7 @@ namespace LANCommander.PlaynitePlugin { internal class PowerShellRuntime { - public void RunScript(string script, Dictionary parameters) + public void RunScript(string script) { var process = new Process(); process.StartInfo.FileName = "powershell.exe"; @@ -25,22 +25,22 @@ namespace LANCommander.PlaynitePlugin public void RunInstallScript(Game game) { - var defaultParameters = new Dictionary() - { - { "InstallDir", game.InstallDirectory }, - { "Title", game.Name }, - { "Description", game.Description }, - { "GameId", game.GameId } - }; - var scriptPath = Path.Combine(game.InstallDirectory, "_install.ps1"); if (!File.Exists(scriptPath)) throw new FileNotFoundException(scriptPath); - var scriptContents = File.ReadAllText(scriptPath); + RunScript(scriptPath); + } - RunScript(scriptPath, defaultParameters); + public void RunUninstallScript(Game game) + { + var scriptPath = Path.Combine(game.InstallDirectory, "_uninstall.ps1"); + + if (!File.Exists(scriptPath)) + throw new FileNotFoundException(scriptPath); + + RunScript(scriptPath); } } }