カスタムリモートPowerShellをリモートで開く


1

2台のコンピューターがあります。コンピューターAには、PowerShell 3.0用のC#で記述され、MSIを介してインストールされたカスタムモジュールがあります。また、モジュールが既にロードされている状態でpowershellを開くショートカットもあります。

ショートカットをダブルクリックするだけで、Exchange Server PowerShellのように問題なくこのコンピューターでコマンドDo-Somethingを実行できます。

しかし、今はC#のコンピューターBのリモートセッションから実行したいと思います。

だから私の質問は、コマンドを実行してコンピューターAで実行する場合と同じ結果を取得できるように、既にモジュールが読み込まれ、シェルが構成されているコンピューターAへのリモートPowerShellセッションを開くにはどうすればよいですか?


psexecを見ましたか?

いいえ、psexecを試しませんでした。例を挙げてください。問題なくリモートPowerShellセッションを開くことができます。問題は、通常のPowerShellを起動するだけです。モジュールが既に読み込まれている状態でpowershellを起動したいのですが、この時点ではモジュールのインストールパスがわからないため、リモートセッションから実行するのはより困難な場合があります。スタートアップスクリプトを許可するPSSessionConfigurationについての情報を見ましたが、その良い方法はわかりません。
ヤンレーベル

回答:


2

ついに必要なことを達成する方法を見つけました。

まず、モジュールとモジュールスクリプトファイルをインポートするためのPowerShellスクリプトを作成しました

ShellInitScript

function Get-ScriptDirectory
{
    $Invocation = (Get-Variable MyInvocation -Scope 1).Value
    Split-Path $Invocation.MyCommand.Path
}
$MyModuleDirectory = Get-ScriptDirectory
Set-Location $MyModuleDirectory 
Import-Module .\MyModule.psd1

MyModule.psd1

@{
GUID                = "[GENERATE A GUID HERE]" # Generate using $myGuid = [guid]::NewGuid() 

Author              = "Me"

CompanyName         = "My Company"

Copyright           = "© My Company. All rights reserved."

ModuleVersion       = "1.0.0.0"

ModuleToProcess     = "MyModule.psm1"
}

MyModule.psm1

Import-Module .\MyModuleCSharpAssembly.dll

function Enable-MyShellRemoting([switch]$Force)
{
    $proceed = 0

    if($Force -eq $false)
    {
        Write-Warning "Enable-MyShellRemoting restarts the WinRM service and all dependent services.`r`nAll WinRM sessions connected to Windows PowerShell session configurations are disconnected."

        $title = "Are you sure you want to perform this action?"
        $message = "Performing this operation will allow selected users to remotely run MyModule commands on this computer."

        $yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes"

        $no = New-Object System.Management.Automation.Host.ChoiceDescription "&No"

        $options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)

        $proceed = $Host.UI.PromptForChoice($title, $message, $options, 0) 
    }

    if($proceed -eq 0)
    {
        Enable-PSRemoting -Force

        if((Get-WmiObject Win32_ComputerSystem).PartOfDomain -eq $false){
            Set-Item WSMan:\localhost\Client\TrustedHosts *
            Restart-Service WinRM
        }

        $path = Join-Path -Path $MyModuleDirectory  -ChildPath "ShellInitScript.ps1"
        Register-PSSessionConfiguration -Name "MyShellUri" -StartupScript $path -Force
    }
}
function Disable-MyShellRemoting([switch]$Force, [switch]$DisablePSRemoting)
{
    $proceed = 0

    if($Force -eq $false)
    {
        Write-Warning "Disable-MyShellRemoting restarts the WinRM service and all dependent services.`r`nAll WinRM sessions connected to Windows PowerShell session configurations are disconnected."

        $title = "Are you sure you want to perform this action?"
        $message = "Performing this operation will prevent all users to remotely run MyModule commands on this computer.`r`nUse the the -DisablePSRemoting switch to disable all PowerShell remoting features."

        $yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes"

        $no = New-Object System.Management.Automation.Host.ChoiceDescription "&No"

        $options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)

        $proceed = $Host.UI.PromptForChoice($title, $message, $options, 0) 
    }

    if($proceed -eq 0)
    {
        if($DisablePSRemoting)
        {
            Disable-PSRemoting
        }

        if((Get-PSSessionConfiguration -Name "MyShellUri" -ErrorAction SilentlyContinue) -eq $null){
            Write-Host "The session configuration MyShellUri is already unregistered."
        }
        else {        
            Unregister-PSSessionConfiguration -Name "MyShellUri" -Force -ErrorAction Ignore
        }
    }
}

function Test-MyShellRemote()
{
    return "Test completed"
}

dll MyModuleCSharpAssembly.dllは、カスタムコマンドレットを含む通常の.Netアセンブリです。

この問題の解決策は、Enable-MyShellRemoting関数を使用することです。このメソッドは、Powershellリモート処理を有効にし、モジュールをロードするstatupスクリプトでカスタムPowershellセッション構成を登録します。

次に、C#では、このように接続オブジェクトでShellUriを指定するだけです。

WSManConnectionInfo connectionInfo = new WSManConnectionInfo();
connectionInfo.ComputerName = "MyComputer";
connectionInfo.ShellUri = "http://schemas.microsoft.com/powershell/MyShellUri";
using (Runspace remoteRunspace = RunspaceFactory.CreateRunspace(connectionInfo))
{
     remoteRunspace.Open();
     using (PowerShell shell = PowerShell.Create())
     {
          shell.Runspace = remoteRunspace;
          shell.AddCommand("Test-MyShellRemote");
          Collection<PSObject> results = shell.Invoke();
          //the results collection contains the string return by the command
     }
     remoteRunspace.Close();
 }

[guid] :: NewGuid()を使用して、生成されたguidをコピーして貼り付けることができます。このGUIDは、モジュールに対して常に同じである必要があります。
ヤンレーベル

ShellInitScriptはprofile.ps1に含めることができますか?
キケネット

はい、可能ですが、この場合、モジュールはユーザーのすべてのpowershellコンソールに読み込まれますが、それらを分離したままにすると、Exchange Serverシェルのような分離シェルを作成できます。
ヤンレーベル
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.