0

ac# コンソール アプリからリモート シェアポイント サーバーで powershell コマンドを実行しようとしています。これは私がこれまでに持っているコードです。エラーなしで実行されますが、何もしません。私は何を間違っていますか?

ありがとう

サーバー名、ユーザー名パスワード、url を取り出した

    public static string RunScript()
    {

       Runspace remoteRunspace = null;
       openRunspace("http://server/wsman",
            "http://schemas.microsoft.com/powershell/Microsoft.PowerShell",
            @"domain\user",
            "password",
            ref remoteRunspace);
       try
       {
           StringBuilder stringBuilder = new StringBuilder();
           using (PowerShell powershell = PowerShell.Create())
           {

               powershell.Runspace = remoteRunspace;
               powershell.AddScript("Add-PsSnapin Microsoft.SharePoint.PowerShell");
               powershell.AddScript("enable-SPFeature -identity \"2dfc204b-e9da-4c6c-8b4f-c2f7c593ad4e\" -url sharepointsite -Confirm:$False");
               powershell.Invoke();
               Collection<PSObject> results = powershell.Invoke();
               remoteRunspace.Close();
               foreach (PSObject obj in results)
               {
                   stringBuilder.AppendLine(obj.ToString());
               }
           }

           return stringBuilder.ToString();
       }
       catch (Exception e)
       {

           return "";

       }


     }

    public static void  openRunspace(string uri, string schema, string username, string livePass, ref Runspace remoteRunspace)
    {
        System.Security.SecureString password = new System.Security.SecureString();
        foreach (char c in livePass.ToCharArray())
        {
            password.AppendChar(c);
        }
        PSCredential psc = new PSCredential(username, password);
        WSManConnectionInfo rri = new WSManConnectionInfo(new Uri(uri), schema, psc);
        rri.AuthenticationMechanism = AuthenticationMechanism.Kerberos;
        rri.ProxyAuthentication = AuthenticationMechanism.Negotiate;
        remoteRunspace = RunspaceFactory.CreateRunspace(rri);
        remoteRunspace.Open();
    }
4

1 に答える 1

1

SharePoint データベースへのアクセス権があるかどうかを確認してみてください。スナップインを正しく追加するには、構成データベースに対する ShellAccess 権限が必要です。私が覚えているように、ファームの管理者権限が必要です。スクリプトでスナップインを追加できない可能性があるため、SharePoint オブジェクト モデルで何もできません。

于 2012-11-08T16:35:48.197 に答える