This is something we look at all the time too, would be a great feature to have as often a framework comes and wants new searches added to all it's projects and they have OR tabs in them and it is very time consuming to add them manually, scripted would…
Hey Kirk,Without seeing any error messages or output I can't be sure, but it looks like a similar problem to this post.Are you able to establish a connection to the SQL Server?I think if you use the updated example script linked in the above post…
Found it thanks! Another issue - I can't seem to use the script to login to our hosted datasources. Is there something I am missing?
UPDATE - I found it ... the -UseBentleyIMS switch is required.
I think there are some good points to be made here, and I’m glad the topic has been raised – long post incoming. Before we get into it, be aware I have some updates both to the script and Power BI report coming soon.
An example…
Imagine…
Hello everyone,
For those of you at the conference, this was the dashboard I showed in my presentation and for those not at the conference, this is a dashboard on performance monitoring inside of ProjectWise using PowerShell. Please find the attached…
Here you go. Our need is to send an email to a specific user on a schedule, a list of any email that is in a predefined folder. We have email getting dumped directly into ProjectWise automatically. The user then moves the email as needed once notified…
Hi Rene,
I am in the process of posting the new build of PW Explorer that has this fix. I apologize for the delay. I will let you know once the new version is available for download.
Regards
Philip
We should already have those. Get-Help *pw*owner
should be close:
$group = "Administrator"
$gid = (get-pwgroup $group).groupid
$usrs = get-pwGroupMember -groupid $gid | where LastLogin -gt (get-date).AddDays(-90)
"Group $($group) has $($usrs.count) users who have logged on in the last 90 days…