In this post, I'll show a function I created for selecting a folder from your local machine. This function will return the path to a selected folder. FUNCTION Definition The following is the function wrapper which will contain the remainder of the code. FUNCTION Show-FolderBrowserDialog { <# .Synopsis Opens the Folder Browser dialog and allows… Continue reading HowTo: FUNCTION Show-FolderBrowserDialog
Category: #PowerWiseScripting
HowTo: FUNCTION Get-PWAuditTrailRecordsByUser
In this post, I'll show a function I created for getting all audit trail records for a provided user. This function will poplulate a datatable with the records which can be exported to a report. FUNCTION Definition The following is the function wrapper which will contain the remainder of the code. FUNCTION Get-PWAuditTrailRecordsByUser { <#… Continue reading HowTo: FUNCTION Get-PWAuditTrailRecordsByUser
FUNCTION Set-PWEnvironment
In this post I will step through the Set-PWEnvironment function. This function can be used to set the environment on a specified folder and can include all sub-folders. The function contains a dynamic variable for selecting the desired Environment Name. It can also remove any attribute sheets associated with existing documents. This is required to… Continue reading FUNCTION Set-PWEnvironment
HowTo: Create Zip File
In this post, I'll show a simple way to create a zip file containing documents exported from ProjectWise. FUNCTION Definition The following is the function wrapper which will contain the remainder of the code. <# .Synopsis Export documents from ProjectWise to a zip file. .DESCRIPTION Used to export documents from ProjectWise, either by Folder ID… Continue reading HowTo: Create Zip File
HowTo: PW Tools
In this post, I'm going to share a ProjectWise customization tool I created to quickly get the Project ID or Project GUID for a selected folder or navigate to a folder by the ProjectID or Project GUID. This is a simple tool but has proven to come in handy for me. You can download a… Continue reading HowTo: PW Tools
