powershell SharePoint PowerShell,它获取作为字符串的列表项并将其转换为数字,然后更新列表项。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell SharePoint PowerShell,它获取作为字符串的列表项并将其转换为数字,然后更新列表项。相关的知识,希望对你有一定的参考价值。

    $webUrl = "https://xxxx"
    $listName = "Fleet Processing"
    # Open web and library
    $web = Get-SPWeb $webUrl
    $list = $web.Lists[$listName]
    $items = $list.items
    
    foreach ($item in $items)
    {
        $Item["UIC_String"] = $Item["UIC_Num"].ToString()
        $Item["UIC_String"]
        $Item.Update()
    }

以上是关于powershell SharePoint PowerShell,它获取作为字符串的列表项并将其转换为数字,然后更新列表项。的主要内容,如果未能解决你的问题,请参考以下文章

powershell Powershell用于将Powershell与SharePoint 2007一起使用

powershell SharePoint Powershell添加列表项

powershell Sharepoint Powershell Snippets

powershell 为SharePoint 2013创建SharePoint服务帐户(最低)

使用 Powershell 插入 Sharepoint 凭据

powershell SharePoint事件接收器powershell脚本