Change User Regional Setting to “Always follow Web” using PowerShell

I have written this PowerShell script which is related to user regional setting. This below-mentioned code block will help us to change user regional setting to “always follow web” regional setting. [code lang=”c”] Write-Host -ForegroundColor cyan ‘Please provide the site url’ $SiteURL = Read-Host “Site Url” try { Add-PSSnapin “Microsoft.SharePoint.PowerShell” $SPsiteURL = Get-SPSite $SiteURL $SPserviceContext = Get-SPServiceContext $SPsiteURL $SPweb = […]

How to Inject your Custom JavaScript in Modern Pages on Page Load

This SPFx functionality helps to inject your custom JavaScript file in your modern site pages on page load. [code lang=”c”] export default class MySPFXApplicationCustomizer extends BaseApplicationCustomizer<IMySPFXApplicationCustomizerProperties> { private _customJsUrl: string = “https://sharepointdomain.net/scripts/MyCustonScript.js”; @override public onInit(): Promise<void> { let scriptTag: HTMLScriptElement = document.createElement(“script”); scriptTag.src = this._customJsUrl; scriptTag.type = “text/javascript”; document.getElementsByTagName(“head”)[0].appendChild(scriptTag); return Promise.resolve<void>(); } } [/code] This solution is brought to you […]

How to Create Metadata?

Many of us have been told that metadata is very essential and should be implemented in our SharePoint environment. Furthermore, we are also instructed how to import managed metadata into SharePoint.  You might think that it is that easy to covert nested folders in to metadata magically. However, there is sort of a challenge, which is “how to have the […]

No-Code Solutions to Enhance SharePoint Performance

Right out of the box, SharePoint offers a set of useful tools that can be used to smooth the progress of document sharing and to encourage data visualization. However, poor performance issue is one of the frustrating tribulations that all SharePoint administrators have to face every now and then, which turns the whole experience into a disaster. All you have […]

Secure Your Document Library with These Easy Methods!!

One of the major concerns of several organizations out there is the security and integrity of their documents and files that they have stored in SharePoint. There is no doubt that Microsoft has already considered that fact and has provided features for file encryption. But, errors are what make us what we are as human, so additional care is definitely […]

Migrate Files and Documents to SharePoint- Becomes Easy!

How to migrate documents to SharePoint without any hassle? We are pretty sure that every SharePoint admin has thought of this at one point or another whining thinking of moving their organization to cloud. Our offshore SharePoint developers have inscribed a blog that would explain 4 exceptional ways to move your document and files to SharePoint. In this blog, you […]

Issues in SharePoint when using a trust with Selective Authentication

If you ever have experiences with SharePoint, the concern of “Credential request” is probably not new to you, where you have to face that request 3 times before clicking the 401 Unauthorized. While trying to navigate from web-frontend server, we can see this happen a lot of times. Well… resolving this is like a walk in the park for a […]

Open a Performance Point Report in a New Window – JavaScript Solution

Same as the previous blog, we are presenting this blog as a solution to client’s request on “How to easily open a performance Point Report in a New Window?” The circumstance is actually our client has a performance Point dashboard that includes a multitude of Reporting Services reports and Performance Point Analytic Chart reports. Being just the measures of some […]