powershell 此脚本运行SharePoint列表中的项目列表,并将其更改为大写,然后更新列表项。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 此脚本运行SharePoint列表中的项目列表,并将其更改为大写,然后更新列表项。相关的知识,希望对你有一定的参考价值。

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

以上是关于powershell 此脚本运行SharePoint列表中的项目列表,并将其更改为大写,然后更新列表项。的主要内容,如果未能解决你的问题,请参考以下文章

运行powershell 脚本 在此系统上禁止运行脚本

PowerShell: 问题,此系统上禁止运行脚本解决方法

PowerShell:因为在此系统上禁止运行脚本

PowerShell错误“在此系统上禁用了脚本的执行。”

powershell 此脚本运行SharePoint列表中的项目列表,并将其更改为大写,然后更新列表项。

PowerShell yarn : 无法加载文件 C:UsersAdminAppDataRoaming pmyarn.ps1,因为在此系统因为在此系统上禁止运行脚本。