powershell 此powershell将列表导出到已删除的文件。第二个文件将数据导入另一个列表。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 此powershell将列表导出到已删除的文件。第二个文件将数据导入另一个列表。相关的知识,希望对你有一定的参考价值。

    $webUrl = "https://xxxxx"
    $listName = "Deficiency Reports"
    # Open web and library
    $web = Get-SPWeb $webUrl
    $list = $web.Lists[$listName]
    $items = $list.items
    
    foreach ($item in $items)
    {
		$line = ""
		$i = 1
		try{
			write-host $item["ID"].ToString() -background yellow -foreground blue
			foreach($field in $item.Fields)
			{
				#$field.InternalName | out-file f:\temp\eRDR.txt -append
				if($i -lt 70 -and $item[$field.InternalName] -ne $null){
					$line +=$item[$field.InternalName].ToString() -replace "`r`n"," "
					$line += '~'
				}
				else{
					$line += '~'
				}
				$i++
			}
			$line | out-file f:\temp\eRDR.txt -append
		}
		catch{
			"Something strange occurred: $_" | out-file f:\temp\eRDRerror.txt -append
		}
    }

以上是关于powershell 此powershell将列表导出到已删除的文件。第二个文件将数据导入另一个列表。的主要内容,如果未能解决你的问题,请参考以下文章

powershell 此PowerShell脚本创建三个SharePoint列表并添加字段

powershell 此PowerShell脚本列出了SharePoint列表中的所有字段内部名称。

powershell 此powershell脚本使用字段名称获取所有值是sharepoint列表中的字段

powershell 此SharePoint PowerShell从Web应用程序中的所有站点获取使用特定内容类型的列表的URL。

PowerShell 新手,试图找到可以为 IP 列表提供此输出的内容

powershell文件名的唯一部分列表