TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Steps For A Provider App Architecture Demo Presenting App
Guest User
Mar 26, 2017
2.7
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This blog imparts steps for a Provider App architecture demo presenting app.
Create a ps1 extension file in a path in your local desktop. Change the highlighted part with your Site Collection.
Get - SPsite http:
//hvsp01:10641 | %
{
$results = @()
Get - SPFeature - Limit All | %
{
$feature = $_;
$featuresDefn = (Get - SPFarm).FeatureDefinitions[$_.ID];
$cc = [System.Globalization.CultureInfo]::CurrentCulture;
$obj = New - Object PSObject;
$obj | Add - Member NoteProperty Title $($featuresDefn.GetTitle($cc));
$obj | Add - Member NoteProperty ID $($feature.ID);
$obj | Add - Member NoteProperty Scope $($feature.Scope);
$obj | Add - Member NoteProperty Hidden $($feature.Hidden);
$obj | Add - Member NoteProperty Description $($featuresDefn.GetDescription($cc));
$results += $obj;
}#$results | FT - auto;
$results | Out - GridView;
}
Open Management Shell as an administrator.
Run PS script, using the path along with the shown file.
Here, the required output is given.
Provider App Architecture Demo
SharePoint
Next Recommended Reading
Difference Between Hosted, Provider Hosted and SharePoint Hosted App