vendredi 16 septembre 2016

Fix Organizational Browser for sharePoint 2016

Due to the fact that sharepoint 2016 use claim authentication organizational browser doesn't work anymore.

In order to fix this issue simply add the following script into the page just after your webpart:


<script type="text/javascript">

function CreateHierarchyChartControl(parentId, profileId, type, persistControlId, flowDirection, silverLightControlId)
{
var i = profileId.indexOf("|");
var claimsmode = profileId.substr(i-1,1);

if((i >=0 ) & (claimsmode=="w"))
{
profileId = profileId.substr(i+1,profileId.length-i-1);

//var initParam = profileId + ',' + type + ',' + persistControlId;
var initParam = profileId + ',' + type + ',' + persistControlId + ',' + flowDirection + ',' + silverLightControlId;

var host = document.getElementById(parentId);
host.setAttribute('width', '100%');
host.setAttribute('height', '100%');

Silverlight.createObject('/_layouts/ClientBin/hierarchychart.xap',
host,'ProfileBrowserSilverlightControl',
{
top: '30',
width: '100%',
height: '100%',
version: '2.0',
isWindowless: 'true',
enableHtmlAccess: 'true'
},
{
onLoad: OnHierarchyChartLoaded
}, initParam, null);
}
}
</script>

samedi 30 avril 2016

House Ads: Télécommande LiveBox pour windows 10 / windows phone 10


Déjà plus de 100 téléchargements pour mon application sur le Windows Store !!

L'application est disponible sur tablette et PC avec Windows 10 ainsi que les nouveaux Windows Phone 10

https://www.microsoft.com/store/apps/9nblggh4p1cb

L'application est uniquement disponible pour le marché Français.

L'application permet de télécommander votre LiveBox, l'application se veut simple et sans fonctionnalités superflus.

vendredi 22 avril 2016

Set up SharePoint 2016 Extranet for your client/provider part 2, set up web.config and install FBA pack


Please see step 1 if you missed it on how to create membership database, create webApplication for your Extranet site and how to extend it :  http://larry-microsoft-techno.blogspot.fr/2016/04/set-up-sharepoint-2016-extranet-for.html

1. Configure web.config

We will now tell SharePoint that membership provider and the role provider are stored into the database we create in the first step.

Locate the file machine.config into C:\Windows\Microsoft.Net\Framework64\v4.0.30319\Config
save a copy of that file and edit the original one:


In the section "Connectionstrings"  add :

<add connectionString="Server=SP2016; Database=fba_extranet; Integrated Security=true" name="SQLConn" />

Replace "SP2016" and "fba_extranet" by your SQL server instance and the database name you create earlier:


Into "<membership><providers>"  add the following lines, replace "SQL_Membership" by the membership provider name you chose earlier when we have extended the webApplication. You can see that you can change some parameters (password length, max invalid password attempts before account will be locked etc..):

  <add name="SQL_Membership"  Type="System.Web.Security.SqlMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"  ConnectionStringName="SQLConn"  EnablePasswordRetrieval="false"  enablePasswordReset="true"  requiresQuestionAndAnswer="false"  applicationName="/"  requiresUniqueEmail="true"  passwordFormat="Hashed"  maxInvalidPasswordAttempts="20"  minRequiredPasswordLength="7"  minRequiredNonalphanumericCharacters="1"  passwordAttemptWindow="10"  passwordStrengthRegularExpression="" />


Into "<roleManager><providers>"  add the following lines, replace "SQL_Role" by the membership provider name:

<add name="SQL_Role" connectionStringName="SQLConn" applicationName="/"
 type="System.Web.Security.SqlRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />



Save the file (if you have problem saving the file open notepad with admin right).

2. Edit Security Token Service Application

Go to IIS manager, go into "SharePoint Web Services" right click on "SecurityTokenServiceApplication" and clic "Explore":

 

Modify web.config file add the membership and role like you did into machine.config file add the following line under <configuration>

<!-- Section to add -->
  <system.web>
   <membership>
<providers>
  <!-- Add membership provider here -->
</providers>
   </membership>
   <roleManager enabled="true">
    <providers>
    <!-- Add role provider here -->
    </provider>
   </roleManager>
   <customErrors mode="RemoteOnly"/>
  </system.web>
<!-- End Section to add -->


3. Install FBA Pack solution

We can now create our first site collection in the web application go to "Application Management => Create site collection"

Select the webApplication Extranet and create a team site for example

Download the zip from https://sharepoint2013fba.codeplex.com/ and extract the archive on the SharePoint 2016 server, add the solution thanks to powershell with the Add-SPSolution.

Navigate to the farm solutions management page and deploy the solution to your WebApplication:









Set up SharePoint 2016 Extranet for your client/provider


One of the first feature that many company need is to provide information to client or provider, one of the way to do that is to open an extranet on which they can connect and find your latest documentation on product, technical documents.

In order to open one site you can add for each users of AD account but it can be expensive if you have many clients. SharePoint offer an other way to authenticate users called FBA (Forms Based Authentication) users and authorization will be stored in a dedicated database.

1. Create the database

From your SharePoint 2016 server go to the folder: "C:\Windows\Microsoft.NET\Framework64\v4.0.30319"

Open and click on "Next/Suivant"
Select the first option and click next again:

Specify the server that will host the datadabse and the named instance if you have any, specify a name for the database "fba_extranet" in my case and click next.
The account use to connect to the SharePoint server will be used as admin for the database you can change the right after.
Click "next/suivant" and the base will be created, you can see the dase and the structure thanks to Management studio:

2. Create Extranet WebApplication

We will now create the SharePoint WebApplication that will host you extranet sites, from SharePoint central administration create a WebApplication

Specify:
- Name
- Port
In claims authentication types chose "Enable Windows Authentication" "NTLM"

Set up you webApplication as you normally do and create it.

2.1 Extend the webApplication

The web application is now available but only your AD users can connect we will now extend the webApplication to make it available through an other url that will be dedicated for your client/provider users.

I've created my webApplication on port 82 my internal users will use that url to connect with SSO to the site using their windows account.

I will now decide that external users will connect on port 8282 but they will use FBA credentials.
Select your webApplication in SharePoint central administration and click on "Extend":
Extend webApplication


Give a name to your extension "Extranet - External users" in my case and a port "8282" for me

Unselect "Enable windows authentication" and select "Enable Forms Based"
Type of name for ASP.Net Membership provider and save it for later do the same for ASP.Net Role Manager:

You can also change the default sign in page if you want to add your company logo or message for your customer but we will not see it here.
Just set up the public Url and chose "Extranet" for the zone:

Please now go to step 2 of this article to see how to tell your SharePoint in which database your users are stored and how to install webParts that will help you manage your users and roles :

Step 2 configuration and install FBA Pack webparts








mardi 29 mars 2016

Use SharePoint icons in design/development


In my previous post we saw how to change default image used by sharepoint into standard masterpage or ribbon for example  (http://larry-microsoft-techno.blogspot.fr/2016/03/change-icons-used-for-sharepoint-2016.html)

In order to map icons to your design I just found this post by Eric :
http://ericoverfield.com/sharepoint-2013-spcommon-png-sprite-breakdown/

Thanks to him you can easily find which css code to use in order to include sharepoint icons into your masterpage or webparts.


vendredi 25 mars 2016

Change icons used for SharePoint 2016 and SharePoint 2016 (spcommon.png and fgimg.jpg)

Designer can easily change icons used for site by modifying the following sprite, one example if you want to have the ribbon in a dark colour the icons "share" "follow" are nearly invisible because they are gray. 
custom spcommon.png 
Once you've changed the image you can use the following css to override the image where they are used : 
img[src*="fgimg.png"]{ 
background-image:url("/_layouts/15/[YOUR-PROJECT]/fgimg-project.png"); 
width:0; 
height:0; 
padding:346.5px 90px; 
}

img[src*="spcommon.png"]{ 
background-image:url("/_layouts/15/[YOUR-PROJECT]/spcommon-project.png"); 
width:0; 
height:0;
padding:134px 135.5px;

mardi 9 février 2016

Install and configure Apps environnement for SharePoint 2016


One new feature that is coming to us from SharePoint 2013 is the Apps Management Service. This awesome new feature allow user to use Apps published on SharePoint Store by the community or by the company IT to enhanced private site for example.

If you want to be able to publish your killer app to the store and maybe make some money with it or if you are ask by your IT to configure the Apps Management Service to offer this feature to user this article is made for you.

There is a few step to achieve in order to enable this service application that will be described below.
First of all if you want to make sure that the service is not yet configured to can navigate to your SharePoint 2016 Central Administration page, section Apps and clic on Purchase Apps.
If the service is not configured or not well configured you will see the following message
This are the steps that we gonna do in order to active Apps Management Service:
  1. Set up a forward lookup zone for apps
  2. Set up the link between the app domain and SharePoint Server 2016
  3. Create applications services:  App Management service
  4. Check the required services on SharePoint Server
  5. Set up the Apps URLs in SharePoint Apps section
  6.  Test apps capabilities.

Set up a forward lookup zone for apps 


SharePoint 2016 need to have urls that are isolated from the Urls of the site where that are used in. In order to do that it’s required to provide an isolation by using a new domain.

It’s highly recommended to not use a subdomain of the domain used by your SharePoint web application.

First of all you have to use a user account that have local administrator right on the domain controller.
1.       From Administrative Tools, click on DNS 
2.       In the DNS Manager window, right-click on Forward Lookup Zones, and click New Zone.
3.       A pop up opened and you will be asked to provide some informations
4.    In the Zone Type page, accept the default of Primary zone, and then click Next.
5.  In the Zone Name page, in the Zone name box type the name for your new app domain name (for example, mcatrinescuApps.com), and then click Next.
6. Click next on the page and review the setting

Set up the link between the app domain and SharePoint Server 2016

We do need to ask the DNS to forward requests from sp.localApps to our SharePoint Server 2016 that will host SharePoint Apps:

1. In the Administrative tools logged as Domain Admin go into the DNS section, in DNS Manager, under Forward Lookup Zones, right-click the new app domain name, and then click New Alias (CNAME).


2. In the New Resource Record dialog box, in the Alias name (uses parent domain if left blank) box, type *
3. To the Fully qualified domain name (FQDN) for target host box, click Browse and navigate to the Forward Lookup Zone for the domain that hosts the SharePoint sites 
4. And then navigate to the record that points to the server that hosts the SharePoint site.


See below the screen well filled, and click OK

Create applications services:  App Management service

1. From SharePoint 2016 administration centrale page click on Manage service application, and add App Management Service service application.


2. Specify the following element in the create form
 - Service application Name
 - Database server
 - Database name
 - Application pool


 3. The service application will be created within a few minutes 

   Check the required services on SharePoint Server

  1. Verify that you are a member of the farm administrators group in Central Administration.
  2. In SharePoint 2016 Central Administration home page, click on Manage services in this farm in the System Settings section
     3. On the Services on Server page, next to App Management Service, verify that the service is well started.

   4. In order to start the "Subscription settings service application" you have to run the following commands other your SharePoint Server 2016. In the first line replace "sp\sp_service" by your managed service account.
         $account = Get-SPManagedAccount sp\sp_service
         $appPool = New-SPServiceApplicationPool -Name SubscriptionServiceAppPool -Account $account         $serviceApp = New-SPSubscriptionSettingsServiceApplication -ApplicationPool              $appPool -name “Subscription Settings Service” -DatabaseName “Subscription_Settings_DB”         $serviceAppProxy = New-SPSubscriptionSettingsServiceApplicationProxy -ServiceApplication $serviceApp
 5. Verify that the service application "Subscription settings service" is well created in the associated page in the central administration page.
6. The service "Microsoft SharePoint Foundation Subscription Settings Service" should also be started in the page "Services on server

Set up the Apps URLs in SharePoint Apps section

From the SharePoint Server 2016 Central Administration page click on Apps and Configure App URLs
1. In the App domain box, type the isolated domain that you just creat for hosting apps url.
2. In App Prefix specify a prefix that will preprend your apps url









Additional set up on Manage web application

The SharePoint Store contains apps for SharePoint intended for use with sites that require Internet-facing endpoints. 

By default, these apps are not available (greyed out and cannot be purchased) because they are incompatible with most sites. However, if your farm is configured to allow internet-facing end points, you can turn on the Internet-facing endpoints feature to show these apps in the SharePoint Store. 

For each web application that will used apps select it from the SharePoint Server 2016 Manage Web Application page


And then activate feature "Apps that require accessible internet facing endpoints"



Test  apps capabilities

From a SharePoint site you can go scroll down setting and click on "Add an app