43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
using LANCommander.SDK;
|
|
using LANCommander.SDK.Helpers;
|
|
using LANCommander.SDK.PowerShell;
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Management.Automation;
|
|
using System.Windows.Forms;
|
|
|
|
namespace LANCommander.PowerShell.Cmdlets
|
|
{
|
|
[Cmdlet(VerbsLifecycle.Uninstall, "Game")]
|
|
[OutputType(typeof(string))]
|
|
public class UninstallGameCmdlet : Cmdlet
|
|
{
|
|
[Parameter(Mandatory = true)]
|
|
public string InstallDirectory { get; set; }
|
|
|
|
protected override void ProcessRecord()
|
|
{
|
|
var scriptPath = ScriptHelper.GetScriptFilePath(InstallDirectory, SDK.Enums.ScriptType.Uninstall);
|
|
|
|
if (!String.IsNullOrEmpty(scriptPath) && File.Exists(scriptPath))
|
|
{
|
|
var manifest = ManifestHelper.Read(InstallDirectory);
|
|
var script = new PowerShellScript();
|
|
|
|
script.AddVariable("InstallDirectory", InstallDirectory);
|
|
script.AddVariable("GameManifest", manifest);
|
|
|
|
script.UseFile(scriptPath);
|
|
|
|
script.Execute();
|
|
}
|
|
|
|
var gameManager = new GameManager(null, InstallDirectory);
|
|
|
|
gameManager.Uninstall(InstallDirectory);
|
|
}
|
|
}
|
|
}
|