在Azure上,我使用microsoft/iis:nanoserver映像创建了一个 Windows 容器。我正在尝试在其中运行SharepointPnPPowershellOnline Cmdlet,它在Connect-PnPOnline上引发以下异常。
PS C:\> Connect-PnPOnline -Url https://xyz.sharepoint.com -CurrentCredentials
Could not load type 'System.Security.SecureString' from assembly 'mscorlib,
Version=4.0.0.0, Culture=neutral, PublicKeyToken=7bc...'.
At line:1 char:1
+ Connect-PnPOnline -Url https://xyz.sharepoint.com -CurrentC ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (:) [], TypeLoadException
+ FullyQualifiedErrorId : System.TypeLoadException
我已经在 windows docker 容器中安装了AzureAD、SharePointPnPPowerShellOnline插件。我尝试使用其他连接选项,包括AccessToken、ClientId、Get-Credentials等,在所有这些上,我都面临同样的问题。
非常感谢任何帮助。