• Define Interface when using Export-PWDocument with export of metadata

    Hi! In Projectwise we have multiple Interfaces within the same Environment. Does anyone know of there is a way to define which interface should be used when exporting documents with metadata using Export-PWDocuments? I did not see any possiblity to…
  • Powershell access to User Attribute for Windows/Windows Synchronized

    I am trying to identify user accounts whose "Authentication" is set to "Windows"...and perhaps change it to "Windows Synchronize"...I can't seem to find that in any of the docs...if it is not there, can it be added? Thanks! Bob
  • Get-PWAttributeValueListFixedList - is there a setter?

    There is a getter (Get-PWAttributeValueListFixedList) to get the fixed list values of an attribute. Is there a setter (Set-PWAttributeValueListFixedList)? Or is there some other way to update the fixed value list that I seem to be missing? Thanks.
  • SQL Script and convert it to a powershell function within Projectwise.

    UPDATE I_STATION_NUMBER__NAME SET PROJECT_Station_ID = (SELECT LEFT(o_projectname, CASE WHEN charindex(' ', o_projectname) = 0 THEN LEN(o_projectname) ELSE charindex(' ', o_projectname) - 1 END)) from dms_proj INNER JOIN I_STATION_NUMBER__NAME …
  • edit new document attribute values on adding new document

    With powershell ISE I can add a new document and pass the result to a variable: $var1 = New-PWDocument -FilePath "valid file path" -FolderPath "valid PW folder path" How do I issue values to the attributes? maybe something like this? $var1.Attributes…