控制台应用程序到PowerShell for SharePoint om

时间:2013-02-27 22:54:44

标签: sharepoint powershell sharepoint-2010

是否可以将此博客代码从控制台应用转换为PowerShell?如果有,怎么样?

http://digsharepoint.blogspot.com/2011/11/retrieving-credentials-from-secure.html

1 个答案:

答案 0 :(得分:0)

为什么不用完全相同的代码创建一个类库DLL,只需使用

在PowerShell中加载此DLL
 #Load assemblies (needed for SharePoint Server)
 [void][System.Reflection.Assembly]::LoadWithPartialName("YourDllNameSpace")

这将从GAC加载,但您也可以指定LoadFile和DLL的路径。

有关详细信息,请参阅this帖子。

希望它有所帮助,

安德鲁