Advertisement
Combreal

get-all-filesets-with-comments.ps1

May 19th, 2021
1,601
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. . .\FilewavePS.ps1
  2.  
  3. $filesetList = Get-FWFileset -ExpandAll
  4.  
  5. $filesetList | foreach {
  6.     new-object psobject -Property @{
  7.         Name = $_.name.value
  8.         Comment = $_.comment
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement