Sometime while executing script we find some exceptions/error e.g. Access is denied. So to see details of inner except just run following powershell command:
$error[0]|format-list -for...
Monday, December 25, 2017
Powershell script to get folder and their filename in SharePoint, Project Server
I was asked for project documentation auditing to get listing of folders & files for all projects in Project Server 2016. Excercise is to make sure all project managers adhere to business check related to docuemntation must be provided for all project phases. So here is the script to do the magic
$folder = "\\SomePRojectserver\pwa\";
$toInclude =("Shared Documents");
$outputFolder="C:\TempOutput\output.csv";
gci -recurse -Path $folder | select parent,name,Directory |? { $_.Directory -match $toInclude }|
Export-Csv $outputFolder...
Run powershell script as domain user from non-domain computer
Recently I need to run one powershell script which will bring all files in EPM project folder for project documentation audit. Since I worked as consultant and mostly working on my personal laptop at different client side. So I was struggling to run this powershell script
$folder = "\\SomePRojectserver\pwa\";
$toInclude =("Shared Documents");
$outputFolder="C:\TempOutput\output.csv";
gci -recurse -Path $folder | select parent,name,Directory |? { $_.Directory -match $toInclude }|
Export-Csv $outputFolder -Encoding UTF8
Reason...
Tuesday, December 19, 2017
Power BI / Excel: OData feed Dataformat error "The given URL neither points to an OData service or a feed"
Scenario:
While updating some of columns in Power BI / Excel I started facing following error:
DataFormat.Error: OData: The given URL neither points to an OData service or a feed:"http://SomeEPMServer/pwa/_api/Projectdata/Projects". Although if you tried same rest api/odata feed in browser it fetch related project feed.
Causes:
Somehow my credentials for data source which I set to used as current user credentials has not been working.
Solution:
Delete current set up credentials from Datasource settings->...
Project server: reserve keyword custom field odata feed
Issue: Odata error processing request:
We should not use reserve keyword while creating custom fields for project server (2010/2013/2016). What I faced while using Power BI through OData feed was facing conflict of my custom field with reserve keyword.
Cause: Duplicate custom field
There was a field called "Project ID" but this custom field internal name become "projectid" which is reserve internal field use by Project server for referencing...