Skip to main content

Posts

Showing posts from April, 2021

Difference between Team site and Communication Site

  Difference between Team site and Communication site in Office 365 Hi guys, this is very quick question which is asked during the interview. so i have written this i my blog. Sr. No Feature Team Site Communication Site 1 Purpose Team site are focused on Collaboration Sharing information 2 Group Microsoft Office 365 Group SharePoint Group 3 External Sharing By default, enabled in Team site. It can be disabled by Site administrator By default, disabled in Communication Site it can be enabled by Site administrator 4 Navigation Left Navigation is used in team site Top navigation is used. 5 Authors on site All members are content authors in the site who jointly create or edit the content on site . Few members are content authors and  a lagr...

Group Types in Office 365

  Microsoft Office 365 Groups Office 365 Groups are also used in SharePoint Sites with SharePoint groups. Mostly recommended Office 365 group by Microsoft is 'Office 365'.  Each office 365 group is created after completing below given steps -   Group Type    Basics   Settings(This is not applicable for Security Group)   Owners (This is not applicable for Distribution, mail-enabled security and Security)  Finish Group Type - There is four types of office 365 groups.  Office 365 - (By Default, it is recommended)  This allows teams to collaborate by giving them a group email and a shared workspace for conversations, files, and calendars. This is a default setting while creating the group and this is the recommended one. Distribution - Send Email to all members of the list                                          ...

Why Hub Site & What is Hub Site

  SharePoint Hub Site   As you now, today every organization has an intranet portal for the business. Today’s intranet portal is based on hierarchical structure of subsite relationships to nest sites within sites and shared navigation to connect sites. But there is a challenge with hierarchical structure. ‘Challenge is governance of intranet like managing permission etc. and no more flexibility and changes.’ Example- Like a user has permission ‘update’ on a site collection of intranet portal but we want to remove the permission from sub sites. For the same we have to break inheritance, we have to provide permission individually one by one for all sub sites. On other end, Many features like retention and classification in SharePoint apply to all sites within site collection, whether you want them to or not. So hierarchical structure has less flexibility and has governance issue. You have to make lot of changes to make a simple change for the same. Due to less flexibility ...

Basic of PowerShell-Part 1

 Basic of PowerShell-Part 1 PowerShell is a scripting language. It helps to automate the technical tasks like generate daily client reports. Going to start a series  of  blogs to share the basic understanding of PowerShell for the beginners.  This is the Part-1 in which we will cover the below given points. 1- Define the variable - $ is used to define the variable  2- Comment the single line -  # is used to comment the single line 3- Comment the Multiple lines - <# content #>  is used to comment the multiple lines 4- Use of  Write-Host - Write-host is used to print the outcome or print the any message 5- Use of  Read-Host -  Read-host is used to take run time input from the User. it returns the datatype string. 6- Covert the datatype-  To convert the datatype, use syntax like [Int]$stringvaribale . it will convert the string value into the int. To understand the above, we will take a example of  'Add two numbers'. PowerSh...