Obtaining Last Login Information for ProjectWise Users with PowerShell When managing users in ProjectWise, administrators often need to audit user activity, including tracking their last login dates. This script demonstrates how to retrieve and organize this information using PowerShell and custom embedded C# code for enhanced functionality. All of the ProjectWise related cmdlets are available… Continue reading HowTo: Get LastLogin for ALL PW Users
Tag: #PowerShell
HowTo: Get-PWOwner
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
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
