前提・実現したいこと
SharePoint Onlineへのファイルのアップロードを自動化することになり、今までVBAばかり書いていましたが、PowerShellを書くことになりました。
M365の環境では二要素認証が強制されています。
本来はforeachで繰り返し処理を行う予定ですが、その前に単発でSharePoint Onlineへのファイルアップロードテストを行ったところ、以下のエラーメッセージが表示されました。
先週金曜日にアップロードに成功しましたが、今日再び試すと同じエラーが発生しました。
発生している問題・エラーメッセージ
"Add" の引数 "parameters" (値 "Microsoft.SharePoint.Client.FileCreationInformation") を型 "Microsoft.SharePoint.Client.FileCreationInformatio n" に変換できません: ""Microsoft.SharePoint.Client.FileCreationInformation" の値を "Microsoft.SharePoint.Client.FileCreationInformation" 型から "Micr osoft.SharePoint.Client.FileCreationInformation" 型に変換できません。" 発生場所 (PowerShellファイルのパス):76 文字:1 + $UpLoad = $UFolder.Files.Add($FileCreationInfo) + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [], MethodException + FullyQualifiedErrorId : MethodArgumentConversionInvalidCastArgument
該当のソースコード
以下のページを参考にしています。
- powershellを使ってsharepoint上のファイルを制御する - Qiita
- SharePoint Online DocumentLibrary List Retrive(取得) and Add(追加) Using PnP PowerShell (MFA) - Qiita
- (Office365)SharePoint Online上にPowershellにてファイルをアップロードする方法を検証してみた : ITインフラに悩まされてる日常
※テナント名とサイト名は実際とは異なります。
PowerShell
1# SharepointOnline用のCSOMをロードする 2[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client") > $null 3[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Publishing") > $null 4[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Runtime") > $null 5[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Search") > $null 6[System.Reflection.Assembly]::LoadWithPartialName("OfficeDevPnP.Core") > $null 7Get-Module -Name "SharePointPnPPowerShellOnline"> $null 8 9function login($SiteURL) 10{ 11 12 #既にログインしていないか確認する 13 $IsConnect = $FALSE 14 15 try { 16 if (Get-PnPContext) { 17 $IsConnect = $TRUE 18 } 19 } 20 catch { 21 } 22 23 24 #ログインしていない場合はログインする 25 if($IsConnect -eq $FALSE) 26 { 27 #ログインしていない場合はWebログインする(MFAを回避するため) 28 Connect-PnPOnline -Url $SiteURL -UseWebLogin -WarningAction Ignore 29 } 30} 31 32$UserName = "<SharepointUserName>" 33$Password = ConvertTo-SecureString "<SharepointPassword>" -AsPlainText -Force 34 35# サイトのURL 36$SiteURL = "https://<sitename>.sharepoint.com/sites/test_site" 37 38# 認証←二要素認証が導入されているアカウントには使えない 39# $credential = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($UserName, $Password) 40# $Context = New-Object Microsoft.SharePoint.Client.ClientContext($SiteURL) 41# $Context.Credentials = $credential 42 43# Authentication Manager を設定←エラーが発生するのでCO 44# $AuthenticationManager = New-Object OfficeDevPnP.Core.AuthenticationManager 45# $Context = $AuthenticationManager.GetWebLoginClientContext($SiteURL) 46 47login -SiteURL $SiteURL 48$Context = Get-PnPContext 49 50$objWeb = $Context.Web 51$Context.Load($objWeb) 52$Context.ExecuteQuery() 53 54# ドキュメントライブラリ上のアップロード先フォルダをロードする 55$SPOLib = "Shared Documents" 56$SPOPath = "テストフォルダ" 57 58$UploadFolder = $SPOLib + "/" + $SPOPath 59$Ufolder = $objWeb.GetFolderByServerRelativeUrl($objWeb.ServerRelativeUrl + $UploadFolder) 60$Context.Load($Ufolder) 61$Context.ExecuteQuery() 62 63# ローカルサーバ側のアップロード元ファイルを定義 64$Path = "C:\Test" 65$FileName = "Test.docx" 66$TargetFile = Join-Path $Path $FileName 67$LocalFile = Get-ChildItem $TargetFile 68 69# sharepoint側のファイルストリームを開いてファイルをアップロード(Overwriteは必要に応じて変更) 70$FileStream = New-Object System.IO.FileStream($TargetFile,[System.IO.FileMode]::Open) 71$FileCreationInfo = New-Object Microsoft.SharePoint.Client.FileCreationInformation 72$FileCreationInfo.Overwrite = $true 73$FileCreationInfo.ContentStream = $FileStream 74$FileCreationInfo.Url = $FileName 75 76$UpLoad = $UFolder.Files.Add($FileCreationInfo) 77 78$Context.Load($UpLoad) 79$Context.ExecuteQuery() 80 81$FileStream.Close() 82 83$Context.Dispose() 84 85exit 0
試したこと
エラーメッセージで検索しましたが、何も出てきませんでした。
英語表記
Cannot convert argument "parameters", with value: "Microsoft.SharePoint.Client.FileCreationInformation", for "Add" to type "Microsoft.SharePoint.Client.FileCreationInformation": "Cannot convert the "Microsoft.SharePoint.Client.FileCreationInformation" value of type "Microsoft.SharePoint.Client.FileCreationInformation" to type "Microsoft.SharePoint.Client.FileCreationInformation"."
でも検索しましたが、当てはまる情報は出てきませんでした。
- Cannot convert argument "parameters", with value: "Microsoft.SharePoint.Client. - PowerShell - Spiceworks
- Upload a file to Sharepoint - SAPIEN Forums
- Uploading Solution file programatically to a SPO Modern site throws exception
- Uploading Files to O365 SP
- powershell - Cannot convert the "Microsoft.SharePoint.Client.ClientResult`1[System.IO.Stream]" to type "System.IO.Stream" - SharePoint Stack Exchange
また、二要素認証に使っている SharePointPnPPowerShellOnline は古いらしく、PnP Framework に移行が推奨されているようですが、インストールがうまくいかず使用をあきらめました。
PowerShell
1PS C:\Windows\system32> Install-Package PnP.Framework -Version 1.7.0 2Install-Package : パラメーター名 'Version' に一致するパラメーターが見つかりません。 3発生場所 行:1 文字:31 4+ Install-Package PnP.Framework -Version 1.7.0 5+ ~~~~~~~~ 6 + CategoryInfo : InvalidArgument: (:) [Install-Package]、ParameterBindingException 7 + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage 8 9 10PS C:\Windows\system32> Install-Package PnP.Framework 11Install-Package : No match was found for the specified search criteria and package name 'PnP.Framework'. Try Get-PackageSource to see a 12ll available registered package sources. 13発生場所 行:1 文字:1 14+ Install-Package PnP.Framework 15+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 16 + CategoryInfo : ObjectNotFound: (Microsoft.Power....InstallPackage:InstallPackage) [Install-Package], Exception 17 + FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage
ファイルが開かれたままだから失敗したのかと思いきや、ファイルは事前に閉じられていました。
補足情報(FW/ツールのバージョンなど)
- エディション Windows 10 Enterprise
- バージョン 21H1
- インストール日 2021/07/08
- OS ビルド 19043.1288
- エクスペリエンス Windows Feature Experience Pack 120.2212.3920.0
>$PSVersionTable Name Value ---- ----- PSVersion 5.1.19041.1237 PSEdition Desktop PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} BuildVersion 10.0.19041.1237 CLRVersion 4.0.30319.42000 WSManStackVersion 3.0 PSRemotingProtocolVersion 2.3 SerializationVersion 1.1.0.1
> Get-InstalledModule | Select-Object -Property Version,Name Version Name ------- ---- 2.0.2.137 AzureAD 2.0.5 ExchangeOnlineManagement 1.1.183.57 MSOnline 3.29.2101.0 SharePointPnPPowerShellOnline 6.3.0 Az 2.5.2 Az.Accounts 1.1.1 Az.Advisor 2.3.0 Az.Aks 1.1.4 Az.AnalysisServices 2.2.0 Az.ApiManagement 1.0.0 Az.AppConfiguration 1.2.0 Az.ApplicationInsights 1.7.0 Az.Automation 3.1.0 Az.Batch 2.0.0 Az.Billing 1.7.1 Az.Cdn 1.9.0 Az.CognitiveServices 4.16.0 Az.Compute 2.1.0 Az.ContainerInstance 2.2.3 Az.ContainerRegistry 1.3.0 Az.CosmosDB 1.1.0 Az.DataBoxEdge 1.1.0 Az.Databricks 1.13.1 Az.DataFactory 1.0.2 Az.DataLakeAnalytics 1.3.0 Az.DataLakeStore 1.0.0 Az.DataShare 1.1.0 Az.DeploymentManager 3.0.0 Az.DesktopVirtualization 1.0.2 Az.DevTestLabs 1.1.2 Az.Dns 1.3.0 Az.EventGrid 1.8.0 Az.EventHub 1.8.0 Az.FrontDoor 3.1.0 Az.Functions 4.3.0 Az.HDInsight 1.3.1 Az.HealthcareApis 2.7.3 Az.IotHub 3.4.5 Az.KeyVault 2.0.0 Az.Kusto 1.5.0 Az.LogicApp 1.1.3 Az.MachineLearning 1.1.1 Az.Maintenance 2.0.0 Az.ManagedServices 1.0.2 Az.MarketplaceOrdering 1.1.1 Az.Media 1.1.0 Az.Migrate 2.7.0 Az.Monitor 4.10.0 Az.Network 1.1.1 Az.NotificationHubs 2.3.0 Az.OperationalInsights 1.4.1 Az.PolicyInsights 1.1.2 Az.PowerBIEmbedded 1.0.3 Az.PrivateDns 4.4.0 Az.RecoveryServices 1.5.0 Az.RedisCache 1.0.0 Az.RedisEnterpriseCache 1.0.3 Az.Relay 1.0.0 Az.ResourceMover 4.3.0 Az.Resources 1.0.0 Az.Security 1.0.0 Az.SecurityInsights 1.5.0 Az.ServiceBus 3.0.1 Az.ServiceFabric 1.3.0 Az.SignalR 3.4.1 Az.Sql 1.1.0 Az.SqlVirtualMachine 3.10.0 Az.Storage 1.5.0 Az.StorageSync 2.0.0 Az.StreamAnalytics 1.0.0 Az.Support 1.0.4 Az.TrafficManager 2.8.1 Az.Websites 1.4.7 PackageManagement
Microsoft 365の契約はE3です。
認証で使用しているアカウントは該当のSharePointサイトでフルコントロール権限が与えられていることを確認済みです。
どうかよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。