Posts

Showing posts from 2017

Create Private / Public CDN in SharePoint Online

Here are some command which can help you to create your own CDN : # Connect to your tenant Connect-SPOService -Url https://mytenant-admin.sharepoint.com # Check the current status of CDN capability - by default disabled Get-SPOTenantCdnEnabled -CdnType Public Get-SPOTenantCdnEnabled -CdnType Private # Enable CDN using default settings - -NoDefaultOrigins as optional parameter Set-SPOTenantCdnEnabled -CdnType Public -NoDefaultOrigins Set-SPOTenantCdnEnabled -CdnType Private -NoDefaultOrigins # Get CDN policies Get-SPOTenantCdnPolicies -CdnType Public Get-SPOTenantCdnPolicies -CdnType Private # Add CDN origin Add-SPOTenantCdnOrigin -CdnType Public -OriginUrl sites/cdn/cdn Add-SPOTenantCdnOrigin -CdnType Private -OriginUrl sites/pub35/assets # Get CDN origin Get-SPOTenantCdnOrigins -CdnType Public Get-SPOTenantCdnOrigins -CdnType Private # Public CDN Url, when configured https://publiccdn.sharepointonline.com/<tenant host name>/sites/sites/library # Re

How to move MS CRM 2013 database from one domain to another?

Hi, I wanted to move my MS CRM related organization database from one domain to another domain. I did research on it and did it. It is quite easy. Just follow these steps: Install MS CRM 2013 Install Rollups for MS CRM 2013 First create all users which you have in old domain for MS CRM. There has to be one user enable with System Administrator role in your old CRM. Now just import your organization database into MS CRM with use of Deployment Manager of MS CRM 2013. It will ask you to setup some information i.e. Organization display name, Unique Name, Currency etc., Please setup these information. Then in next step, you have to map users. You can map users with following methods:   Automatic mapping Manually mapping With XML file Here you need to map at least one System Administrator from MS CRM DB. Here is one point which need to take care is, current user has to be System Admin in this case. If you still facing any issue, Please feel free to ask me.

How to set My Start Page in Office 365?

Image
Office 365 has given a way to set start page for current user. You can set it by using a few steps. Login with https://Portal.office.com url Go to Office 365 settings   Now on the My Account setting page , Click on the Start Page. You will be able to see more options & you can select as you want : Here I am selecting SharePoint for me & you can select what you want & hit Save button & its done.

SharePoint Framework with the extension

Image
I tried to create SharePoint Framework with the extension provided by SharePoint PnP. It is very easy to create a SharePoint Framework Web Part in Visual Studio. Developer need to first fulfill the Pr-requisites Set up your Office 365 tenant Set up your development environment Install the extension in Visual Studio: Download the .vsix file from the repo Releases page or from the Visual Studio Extension Gallery Ensure Visual Studio is closed Double-click on the downloaded .vsix file Follow the installation prompts Restart Visual Studio when the installer has completed After installation of these pre-requisites , You will be ready to create new Web Part with SharePoint Framework. Here is simple steps to create a small web part: Open Visual Studio 2015 / 2017 & Create new project. Here you need to go to the SharePoint templates category and then select SPFx Web Part Project. You must provide sol