Posts

#PowerShell, #PowerWiseScripting, #ProjectWise, PWPS_DAB

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

#PowerShell, #PowerWiseScripting, #ProjectWise, PWPS_DAB

HowTo: PW Tools

In this post, I'm going to share an update to the ProjectWise customization tool I created to add some additional functionality. This is a simple tool but has proven to come in handy for me. You can download a zip file (PWTools2) containing the following two files: PWTools.dll PWTools.mrr Copy the two files into the… Continue reading HowTo: PW Tools

#PowerShell, #PowerWiseScripting, #ProjectWise, PWPS_DAB

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

#PowerShell, #PowerWiseScripting, #ProjectWise, PWPS_DAB

HowTo: Refresh ProjectWise Explorer Client – Updated Version

In this post, I'll show a script to refresh the ProjectWise Explorer Client from PowerShell. Many thanks to ChatGPT for some assistance. This script will select the "ProjectWise Datasources" item within the Datasource Listing and refresh. Can be used when enabling/disabling ProjectWise Datasources. I am not going to break down the code in this one,… Continue reading HowTo: Refresh ProjectWise Explorer Client – Updated Version

#PowerShell, #PowerWiseScripting, #ProjectWise, PWPS_DAB

HowTo: Refresh ProjectWise Explorer Client

In this post, I'll show a function to refresh the ProjectWise Explorer Client from PowerShell. Many thanks to Kevin Van Haaren for this. He provided the initial function. FUNCTION Definition The following is the function wrapper which will contain the remainder of the code. <#.Synopsis Refresh the datasource list within ProjectWise Explorer Client dialog..DESCRIPTION Refresh… Continue reading HowTo: Refresh ProjectWise Explorer Client