• Need to get list of folder paths of Folders with the word Voided in its name to a spreadsheet so I can later rename

    Need to get list of folder paths of Folders with the word Voided in its name to a spreadsheet so I can later rename. $SPSdrawVoidedFolders = get-pwfolders -folderpath "SUBTRAN\SUB\Drawings" -PopulatePaths | where-object -Property "Name" -Like -Value…
  • Recreate ProjectWise Folders Locally

    Based on a previous post ( Exporting complex folder structure from ProjectWise to Windows - ProjectWise PowerShell Extensions Forum - ProjectWise - Bentley Communities ) I've successfully re-created a ProjectWise tree locally using the following:…
  • How to avoid empty folders while querying Get-PWFolders

    I was trying to get the list of folders in a folder. But I can see a large number of empty folders in the result. Is there any way to exclude empty folders while querying folder list using Get-PWFolders? $UndergroundStorageFolders= Get-PWFolders …
  • Get-PWFoldersImmediateChildren performance observation

    Using Get-PWFoldersImmediateChildren appears to take a significant longer time than using Get-PWFolders with a filter. $ImmediateChildrenStartTime = Get-Date $a = Get-PWFoldersImmediateChildren -FolderPath 'Projects\500xxx' $ImmediateChildrenEndTime…