Advertisement
private775

SP: populate dummy list

May 17th, 2017
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $lines = @(
  2. "Face blessed",
  3. "So greater light also dominion fish him kind",
  4. "Female made replenish, appear great isn't gathered created cattle dominion be light called",
  5. "His green fourth forth fly deep Sea a have night from saying cattle second morning",
  6. "Can't from called female forth",
  7. "Is called Grass without together have seed in don't were seed and of may grass bring air",
  8. "Dominion multiply",
  9. "Had together set face land image you're creeping place lesser",
  10. "Given form seasons made us yielding darkness, winged Signs you so hath second likeness",
  11. "Stars spirit day saw midst wherein living meat won't which seasons second called made"
  12. );
  13.  
  14. $w = get-spweb "http://team/workgroups/ttt/comms02"
  15. $l = $w.lists["Root Causes"]
  16.  
  17. foreach($line in $lines){
  18.     $itm = $l.Items.Add()
  19.     $itm["Title"] = $line
  20.     $itm.Update()
  21. }
  22.  
  23. $w.Dispose()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement