• Problem with recursion when using Get-PWFolders in large directories

    I have a script which traverses all subfolders within a given master directory and extracts certain properties from the documents stored there. It works perfectly if a master directory contains a small amount (20-40) of subfolders at various depths…
  • How do I extract "Doc_no_status" property from a document?

    In PWE i see the "Doc_no_status" property on every single document: But in Powershel, when i try using Get-PWDocumentsBySearch (even with - GetAttributes parameter added), i do not see "Doc_no_status" property listed in the output. I also tried…
  • Version 23.2.6 of PWPS_DAB Just Posted to the PowerShell Gallery

    We just posted version 23.2.6 of the #PWPS_DAB #PowerShell module for #ProjectWise to the PowerShell Gallery. To install, from a 64-bit Admin session of PowerShell v5 run: [Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12…
  • Powershell positional parameter cannot be found

    I was using the below command to create project folders from the template, but recently I am getting the following error. can you please help me fix it? New-PWLogin $outfile = Get-TablesFromXLSXWorkbook -InputFileName “\\JC\OutFile.xlsx” foreach…
  • Update User IdentityProvider in PowerShell

    How can I update user's Identify provider column using PowerShell?
  • How to filter Get-PWFolderSecurity based on type 'User'

    I am trying to get all User type access control list using Get-PWFolderSecurity. But unfortunately it is taking more time to get the results and I did not find a way to filter only ' User' type results. Is there any way to filter out the results so that…
  • Change environment

    Hi, I want to change the environment to folder which is containing the documents. There is cmdlet available however that is changing the environment to empty folders. Is there a way we can fix using the powershell? Thank you! Regards, Amol …
  • Powershell Login - Remove messages

    Hello, When i run the New-PWLogin Command, at the start it gives the following three messages as output: Security Protocol now set to TLS 1.2 PWPS_DAB Version is 2.1.18.0 This is a 64-bit process. Since I want to create an .exe-file with this…
  • Updating folder description

    Trying to updating the folder properties which i am trying to get the value from one source folder and updating the target folder. The below code is working when there is a value in the source folder but giving a below error if there is no value. Could…
  • Set-PWConnectedProjectAssociation

    I created a rich/connected project manually. And i want to associate it both. Using the below code is saying error and even I could not get the connected project guid. The connected projectid is showing like "00000000-0000-0000-0000-000000000000" Could…
  • Name of the below Attribute ? to update Work area Name

    I am using the below code to update the connected work area name but i am struck here that, when i put @{PROJECT_Project_Name="NewProjectName"} this will be updating the properties not the name of the project. The rectangle marked one in that image that…