C # Powershell. Настройте пространство выполнения с помощью RunspaceConfiguration.Create - PullRequest
0 голосов
/ 23 июня 2009

Я пытаюсь выяснить, как используется вызов метода RunspaceConfiguration.Create(). Я хочу настроить хостинг на c # таким образом, чтобы любой возможный скрипт powershell мог выполняться из c #, обеспечивая доступность всех командлетов, провайдеров и т. Глядя на образцы powershell, пример 5, получаем следующее.

RunspaceConfiguration config = RunspaceConfiguration.Create("SampleConsole.psc1", out warnings);

Как создается .psc1 или где хранится, извлекается. Любая помощь будет оценена.

Ответы [ 2 ]

3 голосов
/ 23 июня 2009

Мне пришлось совершить хакерскую попытку зла , чтобы это произошло - вы можете прочитать это в комментариях, но в основном PS не может сделать это в настоящее время.

var _currentRunspace = RunspaceFactory.CreateRunspace(this);

/* XXX: We need to enable dot-sourcing - unfortunately there is no 
 * way in code to just enable it in our host, it always goes out to
 * the system-wide settings. So instead, we're installing our own
 * dummy Auth manager. And since PSh makes us reimplement a ton of
 * code to make a custom RunspaceConfiguration that can't even properly 
 * be done because we only have the public interface, I'm using 
 * Reflection to hack in the AuthManager into a private field. 
 * This will most likely come back to haunt me. */

var t = typeof(RunspaceConfiguration);
var f = t.GetField("_authorizationManager", BindingFlags.Instance | BindingFlags.NonPublic);
f.SetValue(_currentRunspace.RunspaceConfiguration, new DummyAuthorizationManager());

_currentRunspace.Open();
return _currentRunspace;


public class DummyAuthorizationManager : AuthorizationManager
{
    const string constshellId = "Microsoft.PowerShell";
    public DummyAuthorizationManager() : this (constshellId) {}
    public DummyAuthorizationManager(string shellId) : base(shellId) {}

    protected override bool ShouldRun(CommandInfo commandInfo, CommandOrigin origin, PSHost host, out Exception reason)
    {
        // Looks good to me!
        reason = null;
        return true;
    }
}
2 голосов
/ 23 июня 2009
Файл

A .psc1 может быть создан с помощью командлета Export-Console. Обычно вы устанавливаете консольную среду с нужными оснастками, а затем экспортируете ее конфигурацию.

RunspaceConfiguration.Create скорее всего поддерживает абсолютные или относительные пути к такому файлу.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...