From 5a1346b5e594600a31048104ba173c2c7d083379 Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Thu, 8 Aug 2024 18:08:35 -0500 Subject: [PATCH] Remove reference to install/uninstall cmdlet --- LANCommander.SDK/PowerShell/PowerShellScript.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/LANCommander.SDK/PowerShell/PowerShellScript.cs b/LANCommander.SDK/PowerShell/PowerShellScript.cs index b3ef6d9b..8fd42485 100644 --- a/LANCommander.SDK/PowerShell/PowerShellScript.cs +++ b/LANCommander.SDK/PowerShell/PowerShellScript.cs @@ -45,8 +45,6 @@ namespace LANCommander.SDK.PowerShell InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Edit-PatchBinary", typeof(EditPatchBinaryCmdlet), null)); InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Get-GameManifest", typeof(GetGameManifestCmdlet), null)); InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Get-PrimaryDisplay", typeof(GetPrimaryDisplayCmdlet), null)); - InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Install-Game", typeof(InstallGameCmdlet), null)); - InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Uninstall-Game", typeof(UninstallGameCmdlet), null)); InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Update-IniValue", typeof(UpdateIniValueCmdlet), null)); InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Write-GameManifest", typeof(WriteGameManifestCmdlet), null)); InitialSessionState.Commands.Add(new SessionStateCmdletEntry("Write-ReplaceContentInFile", typeof(ReplaceContentInFileCmdlet), null));