In this post, we will be creating a PowerShell function which will return the owner(s) of a specified ProjectWise Group or UserList. All of the ProjectWise related cmdlets are available using the PWPS_DAB module. At the time of this post, I am using version 24.01. Take a look at the help for each of the… Continue reading HowTo: Get-PWOwner
Tag: #PowerShell
HowTo: FUNCTION Remove-MyPWDocumentExplicitAccessControlByDocument
In this post, I'll show a function I created for removing explicit document access control for ProjectWise document objects provided. This is different than the previous post for ALL explicit document access control. I realize there are rare occasions where explicit document access control may be required. FUNCTION Definition The following is the function wrapper… Continue reading HowTo: FUNCTION Remove-MyPWDocumentExplicitAccessControlByDocument
HowTo: Add Active Directory Groups To Synchronize
In this post, we will be creating a simple PowerShell function which will add one or more Active Directory groups to a ProjectWise datasource. You will need to install the 'ActiveDirectory' PowerShell module. This is used to verify the group names to sychronize. Install-Module ActiveDirectory -Force All of the ProjectWise related cmdlets are available using… Continue reading HowTo: Add Active Directory Groups To Synchronize
HowTo: Verify Active Directory Group Synchronized with ProjectWise Datasource
In this post, we will be creating a PowerShell function which will determine whether or not an Active Directory ( AD) group has synchronized with a ProjectWise (PW) datasource. This is useful after adding a new AD group to be synchronized with a PW datasource. It will look for the AD group every 30 seconds… Continue reading HowTo: Verify Active Directory Group Synchronized with ProjectWise Datasource
HowTo: Scan MicroStation / ORD Compiled Configuration File For Invalid Paths
In this post, we will be looking at how to scan a compiled configuration file for MicroStation, OpenRoads Designer, or any other MicroStation based product for invalid path values. This is accomplished by finding any path value containing "pw://". The "pw://" indicates that the ProjectWise folder or document object could not be found. We are… Continue reading HowTo: Scan MicroStation / ORD Compiled Configuration File For Invalid Paths
