有没有任何工具可以对powershell执行c#代码

时间:2013-05-31 16:40:55

标签: c# sharepoint powershell sharepoint-2010 cmdlets

我想知道是否有一个可以将c#代码转换为powershell cmdlet代码的在线工具。我有以下代码,我需要它有PowerShell。我没有visual studio把它变成exe或dll。任何帮助或想法都会很棒。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;

namespace CopyUsersBetweenGroupsInSharepointByRR
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("This tool will copy the users from one group to another group");
            Console.WriteLine("Please enter the URL of the site where your groups are available");
            String siteUrl = Console.ReadLine();
            using (SPSite site = new SPSite(siteUrl))
            {
                try
                {
                    SPWeb web = site.OpenWeb();
                    Console.WriteLine("Please enter the name of the source group");
                    String sourceGroupName = Console.ReadLine();
                    Console.WriteLine("Please enter the name of the destination group");
                    String destinationGroupName = Console.ReadLine();
                    SPGroup sourceGroup = web.Groups[sourceGroupName];
                    SPGroup destinationGroup = web.Groups[destinationGroupName];
                    SPUserCollection sourceUsers = sourceGroup.Users;
                    SPUserInfo[] sourceUserInfoArray = new SPUserInfo[sourceUsers.Count];
                    for (int i = 0; i < sourceUsers.Count; i++)
                    {
                        sourceUserInfoArray[i] = new SPUserInfo();
                        sourceUserInfoArray[i].LoginName = sourceUsers[i].LoginName;
                        sourceUserInfoArray[i].Name = sourceUsers[i].Name;
                    }
                    destinationGroup.Users.AddCollection(sourceUserInfoArray);
                    destinationGroup.Update();
                    web.Update();
                    Console.WriteLine("Operation Completed Successfully");
                    Console.ReadLine();
                }
                catch (Exception e)
                {
                    Console.WriteLine(e.Message);
                    Console.ReadLine();
                }
            }
        }
    }
}

4 个答案:

答案 0 :(得分:6)

最快的方法是自己编写PowerShell代码。 下面是代码在PowerShell中的外观,我想说大多数C#开发人员应该能够在很短的时间内掌握将C#代码转换为PowerShell的概念。

一开始函数可能有点奇怪,因为通常的PS语法是

myFunction Parameter1 Parameter2

此外,您确实应该安装PowerShell 3.0并使用Windows PowerShell ISE工具来开发代码。 无论如何,在PowerShell中运行C#代码不应超过1-2个小时。

[System.Reflection.Assembly]::LoadWithPartialName(”Microsoft.SharePoint”) 
Write-Host "This tool will copy the users from one group to another group"
Write-Host "Please enter the URL of the site where your groups are available"
[string] $siteUrl = [Console]::ReadLine()

$site = new-object Microsoft.SharePoint.SPSite($siteUrl) 
try
{
  $web = $site.OpenWeb()
  Write-Host "Please enter the name of the source group"
  [string] $sourceGroupName = [Console]::ReadLine()
  Write-Host "Please enter the name of the destination group"
  [string] $destinationGroupName = [Console]::ReadLine()
  $sourceUsers = $web.Groups[$sourceGroupName]

  (and so on)
}
catch
{
  Write-Error ("Failed to copy sharepoint users." + $_)
}

答案 1 :(得分:6)

上述那些让人们成群结队地离开SO的评论。 OP的问题是明确的,显示出真正的需要。

有几种方法可以实现这一目标。重写整个C#代码库不是其中之一。

如前所述,从PS 2开始,您既可以内联运行C#(或大多数其他语言),也可以参考格式正确的外部文件。我已经取得了不同程度的成功,我不相信OP真正追求的是什么。

如果你真的想要转换代码(特别是编译的程序集),那么像Reflector这样的反编译器就可以做到这一点,并且 - 使用PowerShell插件 - 也能够即时转换它。

http://blog.lekman.com/2011/10/converting-c-to-powershell.html

如果您希望输入和输出在PS控制台中进行,那么您仍然需要执行一些明显的重写。但是这种方法对我来说非常有用。

答案 2 :(得分:1)

我怀疑有类似的东西,但是Visual Studio不需要编译c#代码。你可以编译没有VS的exe。编译器(csc.exe)和msbuild作为框架的一部分包含在内。它们位于C:\Windows\Microsoft.NET\Framework\{version}

如果您真的想从PowerShell中调用它,请查看Add-Type cmdlet。您提供源代码,它将动态编译源代码,然后将程序集加载到您的会话中。

答案 3 :(得分:0)

不确定在线工具,但下载免费的Visual Studio Express&amp;按照this tutorial,您应该立即创建一个cmdlet