是否可以将此博客代码从控制台应用程序转换为 powershell?如果是,如何?
http://digsharepoint.blogspot.com/2011/11/retrieving-credentials-from-secure.html
是否可以将此博客代码从控制台应用程序转换为 powershell?如果是,如何?
http://digsharepoint.blogspot.com/2011/11/retrieving-credentials-from-secure.html
为什么不直接使用完全相同的代码创建一个类库 DLL,然后在 PowerShell 中使用
#Load assemblies (needed for SharePoint Server)
[void][System.Reflection.Assembly]::LoadWithPartialName("YourDllNameSpace")
这将从 GAC 加载,但您也可以指定 LoadFile 和 DLL 路径。
有关更多信息,请参阅此帖子。
希望能帮助到你,
安德鲁