Skip to main content

Naming a SharePoint Site

A few thoughts on picking a URL name for the a SharePoint Intranet site: The URL name is one of the most central branding pieces of the site. From my experience, this is a tough decision for organizations because a corporate Intranet is so many things and (will become many things that are not even conceived yet). Nevertheless, it is an very important one and one that needs to be made at the beginning of the Intranet build.

- The URL name needs to be easy to remember, be consistent with company branding, represent the content it delivers but also not be so specific that it can’t be flexible and grow and deliver new functionality.

- I would not vote for the name “sharepoint.mycompany.com” because users shouldn’t have to care what technology is being used to deliver functionality. We aren’t selling sharepoint to employees. We  are delivering company content and the company brand to employees.

- Many companies use their company name along with a generic word like “web” or “net”. This is because the name should represent the company, and the content it contains, but also be general enough so that you can add content to it in the future that is still described by the URL name. For example Microsoft uses “http://msweb”.

Here is what some other companies are naming their Corporate Intranets. Some of these are projects I’ve worked on, and some are from research:

Microsoft uses

http://msweb

Home Security Company uses

http://compannamenet

McKinney ISD uses

http://moss.mckinneyisd.net (I think this is a bad name, it was decided on in a hurry)

DELL:

http://inside.dell.com

Bank ONE

http://intranet.bankone.com

Yahoo

http://backyard.yahoo.com

Sprint

Http://iconnect

Catapult:

http://home.companydomain.com

On other projects where I haven’t pressed my client to come up with a good URL name for their Intranet, we end up using a name that no one likes and then we get stuck with it. Note it is relatively technologically simple to change the URL name (DNS entry change and a SharePoint setting), but it is difficult to change user habits once a name has been chosen.

Comments

Mrbk30 said…
Very Informative blog thank you for sharing. Keep sharing.

Best software training institute in Chennai. Make your career development the best by learning software courses.

uipath course in chennai
cloud computing courses in chennai
devops training in chennai
Block said…
I wish to show thanks to you just for bailing me out of this particular
trouble.As a result of checking through the net and meeting
techniques that were not productive, I thought my life was done.
mysql dba training in chennai
unix course in chennai
top software training institute in Chennai

Popular posts from this blog

How to Create and Run Tableau Bridge on Linux Containers

Tableau Bridge is now availble on Linux Containers. Yay! Now what does this mean and how do I build and run Linux Containers? We will discuss the advantages of running Bridge on Linux Containers the steps to build them, and finally, we will provide some automation script ideas for monitoring and scaling Linux Bridge agents. Tableau Bridge Today Until recently, Tableau Bridge was only available as a Windows application running on a Windows VM. It supported only one bridge agent per Virtual or Physical Machine. Advantages of Bridge in Containers Better Hardware Utilization: Linux containers are more efficient than Windows VMs, requiring only about 1/50th of the disk space. Ability to Spin Up Multiple Bridge Agents: With Linux Containers, it becomes easier to spin up multiple bridge agents on a single machine, improving scalability and resource utilization. Infrastructure Automation: Linux Containers enable easier automation of provisioning bridge agents and upgrading Tableau Bridge, the...

Unleashing Tableau’s Semantic Layer with AI Agents

⚡ TL;DR I helped built a tool that lets you query Tableau’s semantic layer  using natural language and AI. By integrating a LangChain agent with Tableau’s VizQL Data Service (VDS), we can repurpose Tableau’s trusted data model for conversational analytics . This means you can ask questions in plain English and get answers backed by the same definitions and security that your Tableau dashboards use. In this post, I’ll introduce this open-source agentic tool ( tableau_langchain ), why it’s transformative for analytics, and how it works under the hood. Why Connect LangChain Agents to Tableau? As a user of Tableau, I’ve seen how powerful Tableau’s semantic layer is. It encapsulates our organization’s business logic: things like predefined metrics, calculations, data relationships, and even row-level security rules. Traditionally, that semantic layer is only accessible through Tableau’s interface – you drag and drop fields to build a viz, and Tableau generates the query for you. Rece...

RAM Disks do not speed up Visual Studio

  The limiting factor for Visual Studio is disk IO. I got a tip to speed up Visual Studio from Channel 9 by creating a RAM disk which sounded like a great idea. However, when I ran a thorough set of tests, I found that the performance difference between the Ram disk and the hard disk were not appreciably different. This was a big surprise since RAM is 240,000 times faster than disk (see my previous blog post). But the reason is because Visual Studio and Vista do a lot of caching. So compile times for the same project in RAM disk and on hard disk were pretty similar. I also tested the time it took to search the entire solution for a word, and times to open a solution. There was no discernable difference!   If you still want to try it out and create your own RAM disk, you can download a simple RAMDISK.EXE utility to create a RAM disk in just a few minutes. What is a RAM Disk ?   Ramdisk is a virtual drive created in RAM.   Performance Analysis Creating f...