本文介绍了获取SPWeb.Lists null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试编写PS脚本..简单但有麻烦.

I am trying to write a PS script.. something simple but having some trouble.

我只是在尝试访问共享点站点的列表,但出现此错误. 您不能在空值表达式上调用方法".

I am simply trying to access a list of a sharepoint site but I am getting this error. "You cannot call a method on a null-valued expression". 

$web=Get-SPWeb https://xxxxxx


$list = $web.Lists.TryGetList["Lists/ListNameX"] 

$list.BreakRoleInheritance($true) //error on this line

感谢您的帮助.

推荐答案

尝试




这篇关于获取SPWeb.Lists null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 10:07