Add an Item with "Hyperlink" type to a list using PowerShell in Sharepoint 2010

בPost הקודם, הסברתי איך להוסיף פריט לרשימה עם שדה Text פשוט. השאלה איך מוסיפים פריט עם שדה מסובך יותר כמו שדה קישור.

אז בדומה לקוד של c#, השדה מסוג Hyperlink מקבל את הUrl ואת הTitle.

בדוגמא הבאה, אוסיף לרשימה את כל האתרים באתר כפרטים ברשימה ואקשר להם את הUrl הרלוונטים.

foreach ($url in $mySite.allwebs)
{
   $newItem = $MyList.Items.Add();
   $newItem["Title"]= "Site " + $myUrl.url;
   $newItem["myHyperlinkColumn"]= "$($myUrl.url), $(myUrl.title)" ;
   $newItem.Update()
}
 
זה כל כך פשוט

Comments

Popular posts from this blog

A sharepoint list view of the current month

The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters

Export SharePoint 2010 List to Excel with PowerShell