문제

Is it possible to update metadata of an item in SharePoint 2007 document library using powershell?

I'd like to execute a CAML query and then change && update every item in the results list. My goal is to write a single throwaway script instead of writing a console app in VS. Can anyone point me towards a way of doing this?

Thanks, josko

도움이 되었습니까?

해결책

I'm normally able to do anything in sharepoint 2010 just using Powershell and:

[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Sharepoint")

But never tried in Sharepoint 2007. However I think you won't have any problem, since it seems Sharepoint Services 3.0 supports the assembly as well, along with SPQuery

다른 팁

Yes you can update document library item using powershell.
please refer site :
http://www.powershell.nu/2009/09/08/moss-2007-script-collection/

Refer these examples given here.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top