How to Install Python and Visual Studio Code (VS Code)

Installing Python and Visual Studio Code (VS Code) on your computer will set up a powerful environment for programming. This guide will show you how to install both tools and configure them for optimal use.

 Step 1: Install Python

Check if Python Is Already Installed

Before installing Python, check if it is already installed on your system:

  1. Open Command Prompt (Win + R, type cmd, then press Enter).
  2. Type python --version or python3 --version and press Enter.
  3. we can see the Python version like below.






If Python is not installed, follow these steps:

Download Python

  1. Go to the official Python website.
  2. Navigate to the Downloads section.
  3. Select the latest version for your operating system (Windows, macOS, or Linux).
  4. Download the installer.


Install Python

Windows:

  1. Run the downloaded installer.
  2. Check the box for Add Python to PATH.
  3. Click Install Now.
  4. Verify installation: Open Command Prompt and type python --version.

 Step 2: Install Visual Studio Code

Download VS Code

  1. Visit the VS Code website.
  2. Click on Download for [Your Operating System].
  3. Download the installer for your system.
Install VS Code

Windows:

  1. Run the downloaded .exe file.
  2. Follow the installation wizard.
  3. Check the box for Add to PATH during installation.

 Step 3: Configure Python in VS Code

Install the Python Extension

  1. Open VS Code.
  2. Click on the Extensions icon in the sidebar or press Ctrl + Shift + X.
  3. Search for Python in the Extensions Marketplace.
  4. Click Install on the extension provided by Microsoft.

Verify the Python Environment

  1. Open VS Code and press Ctrl + Shift + P (Windows/Linux)
  2. Type Python: Select Interpreter and press Enter.
  3. Choose the Python version you installed.

 

Step 4: Test Your Setup

Create a Python File

  1. Open VS Code.
  2. Click File > New File or press Ctrl + N.
  3. Save the file with a .py extension, e.g., test.py.

Write and Run a Python Script

  1. In test.py, write:

print("Hello, World!")

  1. Save the file.
  2. Run the script:
    • Open the integrated terminal (Ctrl + \`` or View > Terminal`).
    • Type python test.py and press Enter.

You should see the output:

Hello, World!

Troubleshooting

  • Python Not Found: Ensure Python is added to PATH (Windows)
  • Extension Issues: Restart VS Code after installing the Python extension.
  • Run Button Missing: Ensure you’ve selected the correct Python interpreter.

You’re all set! Python and VS Code are now ready for your programming projects.


The Secret Superpowers of Python: Beyond the Basics

Introduction: Not Just a Programming Language, But a Universe of Possibilities

We’ve all heard about Python. It’s the go-to language for beginners, the favorite of data scientists, and the engine behind cutting-edge AI systems. But Python isn’t just popular because it’s easy to learn or versatile; there’s something magical beneath its surface. In this post, we’ll uncover some of Python's hidden superpowers — features, libraries, and uses that make it a truly unique language.

                                                                  

1. Python : The “Swiss Army Knife” of Programming

Python is often called a “Swiss Army Knife” in the world of programming, and for good reason. While it’s popular in certain domains like web development and data science, Python’s ability to seamlessly integrate into almost any area of development makes it a jack-of-all-trades.

  • Web Scraping: With libraries like BeautifulSoup and Scrapy, Python allows you to extract data from websites with ease. Think of it like a digital detective, parsing HTML and turning unstructured data into something usable.
  • Automation: Python isn’t just for building applications; it’s perfect for automating repetitive tasks. Whether it's file renaming, email responses, or even managing large data sets, Python can save you hours every week with just a few lines of code. Tools like Selenium and PyAutoGUI let you control your web browser or simulate mouse/keyboard events, automating tedious tasks effortlessly.
  • Rapid Prototyping: Need to turn an idea into a working prototype fast? Python is your go-to tool. Unlike more verbose languages, Python lets you focus on the logic rather than the syntax, so you can build applications in record time.

 

2. Python as a Gateway to Artificial Intelligence

We often think of Python as a simple, beginner-friendly language, but it also powers the most sophisticated AI systems in the world. Python’s simple syntax and powerful libraries make it the top choice for AI enthusiasts and professionals alike.

  • Neural Networks with TensorFlow and PyTorch: These two powerful Python libraries are the backbone of many AI applications, from image recognition to natural language processing. With TensorFlow, you can build complex deep learning models, while PyTorch allows for more flexibility and rapid experimentation.
  • Natural Language Processing with NLTK and SpaCy: Python is the secret sauce behind many natural language processing (NLP) applications. Whether it's chatbots, text summarization, or sentiment analysis, Python's rich ecosystem for text processing (NLTK, SpaCy) allows developers to train models that understand human language.
  • AI is Easier with Python: The beauty of Python lies in its simplicity. AI, often perceived as a complex field, becomes accessible with Python’s user-friendly libraries and frameworks.

 

3. The Magic of Python Libraries: Unlocking Hidden Potential

While many developers are familiar with the famous libraries like Pandas for data analysis and Django for web development, Python is home to many other hidden gems that are worth exploring.

  • SymPy: Did you know Python can help you solve algebraic equations symbolically? With SymPy, you can perform symbolic mathematics directly in Python, making it an excellent tool for anyone working in math-heavy fields like physics or engineering.
  • Pygame: Python can even be used for game development! Pygame, a library designed for making 2D games, makes it easy to design interactive games, teach basic game development, or even just experiment with creative coding.
  • OpenCV: For computer vision enthusiasts, Python’s OpenCV library provides a robust toolkit for real-time image processing, facial recognition, object detection, and more. Want to build an application that can recognize objects in photos? Python has you covered.
  • Dash and Streamlit: For interactive web-based data visualizations and dashboards, Dash and Streamlit allow you to quickly turn data into dynamic apps without the need for extensive front-end knowledge. A perfect way for data scientists to showcase their work without spending hours on HTML/CSS.

 

4. Python and the Power of Code Readability: A Language for Humans

What makes Python truly unique is its emphasis on readability. Many programming languages prioritize performance or features over simplicity, but Python’s syntax is designed to be as human-readable as possible.

  • “Code is Poetry”: Python’s code reads like English. By using whitespace indentation and minimizing punctuation, Python reduces the cognitive load, making code easier to understand for both beginners and seasoned developers.
  • The Zen of Python: One of Python’s most unique features is its design philosophy, encapsulated in the "Zen of Python," which is a collection of 19 principles that guide Python development. A few highlights:
    • "Readability counts."
    • "There should be one — and preferably only one — obvious way to do it."
    • "If the implementation is hard to explain, it’s a bad idea."

This philosophy encourages clear and simple code, fostering a community that values readability over complexity.

 

5. Python in the Real World: Unexpected Uses

Python isn’t just for building websites or analyzing data. Here are a few unexpected ways Python is being used:

  • Music: Yes, Python is even used to compose music! Libraries like PyDub and MIDIUtil let you generate and manipulate audio programmatically. You could write code that creates original music or analyzes sound patterns in songs.
  • Robotics: Python plays a key role in robotics, with libraries like RoboPi and PyRobot enabling developers to control and automate robotic systems. It’s not just about programming robots; it’s about simplifying hardware control and integrating advanced AI models.
  • Bioinformatics: In fields like genetics and bioinformatics, Python is used to analyze DNA sequences and biological data. Libraries like Biopython make it easier for biologists and researchers to work with complex datasets without needing to be full-fledged programmers.

 

6. The Future of Python: What’s Next?

As Python continues to evolve, it’s expected to maintain its position as the go-to language for emerging fields like quantum computing, blockchain, and edge computing. The language is also becoming more efficient, with new releases improving performance and adding features that appeal to both beginners and experts.

  • Quantum Computing with Python: Libraries like Qiskit are helping bridge the gap between quantum physics and programming. Python is playing a crucial role in making quantum computing accessible to the masses.
  • Python in Blockchain: While not as widely used as languages like Solidity, Python’s simplicity and ease of integration make it a great option for building blockchain applications.

 

Conclusion: Python—More Than Meets the Eye

Python is often seen as the beginner’s language, but it has far more depth than many realize. From its versatile libraries and integration into cutting-edge technologies like AI and robotics to its emphasis on code readability, Python is a language with endless potential. Whether you’re automating simple tasks or working on a groundbreaking machine learning project, Python’s simplicity and power make it a tool you’ll keep coming back to. So, dive in, explore, and discover the true magic of Python.

 

Ready to Take the Leap?

Ready to unlock Python’s hidden superpowers? Start with a small project today, explore a new library, or experiment with some of the ideas in this post. Leave a comment and let me know what cool Python projects you’re working on — or any other Python "superpowers" you’ve discovered that I missed!


Create a SharePoint site using Power automate from SharePoint list

In this article we are going to learn how to create a SharePoint site using Power automate from SharePoint list.

Some cases we don’t want to provide SharePoint admin access, or we want to automate the process as a bulk site creation, this will be help full.

Step:1 Created a SharePoint list with columns as per the below.

 Once list is created, we can see the New Form, we have added the description of the columns to understand more why we need to add this data, make sure all columns   are required to avoid issues.


Step: 2

Create automated Power automate flow, when item is created trigger action.






For creating a new site, we are using Send a Http request action.  

URi: /_api/SPSiteManager/create

Headers: Accept Application/json;odata.metadata=none 

{

"request": {

               "Title": "@{triggerOutputs()?['body/Title']}",

               "Url": "https://pwtq.sharepoint.com/sites/@{triggerOutputs()?['body/SiteName']}",

               "Lcid": @{triggerOutputs()?['body/Sitelanguage/Value']},

               "ShareByEmailEnabled": @{triggerOutputs()?['body/EnableExternalSharing/Value']},

               "Description": "@{triggerOutputs()?['body/Description']}",

               "WebTemplate": "@{triggerOutputs()?['body/SiteTemplate/Value']}",

               "Owner": "@{triggerOutputs()?['body/SiteOwner/Email']}"

               }

}






I have created a couple of items to create a SharePoint site.


Flow was started and site was provisioned successfully as per the below.


We can also update the site URL in the SharePoint list using update action for future reference.

 To handle the issues, we can use SiteStatus code, and we send email to required people based on conditions.

0 - Not Found. The site doesn't exist.

1 - Provisioning. The site is currently being provisioned.

2 - Ready. The site has been created.

3 - Error. An error occurred while provisioning the site.

4 - Site with requested URL already exist.

 Hope this will helps. 

Deep linking in power apps

In most of the scenarios when we want to share specific screen, deep lining will be useful to go directly to that screen.

We have created a sample form and galley.

To access the edit from with data from gallery, we have added the formula Onselect                                                         

Set(varitem,ThisItem);EditForm(Form1);Navigate(Screen2)

To access the specific screen based the parameter we can use the below formula

Switch(

    Param("screenname"),

    "screen1",

    Screen1,

    "screen2",

    If(User().Email in ["Phani@pwtq.onmicrosoft.com"],

    Screen2,Screen3),

    "screen3",

    Screen3,

    Screen4

)


If you want to pass specific item with screen and item ID in the URL, use below formula, we have set it as New form as default.

If(!IsBlank(Param("ID")),Set(varitem,LookUp(MYTasks,ID= Value(Param("ID"))));EditForm(Form1))


As an example, below is the URL to pass the parameter screen and item ID to show data in the Edit form.

 

https://apps.powerapps.com/play/e/default-b6fd27c4-bb1d-4bfa-9ef8-404492a9233a/a/971566ef-5e0e-452e-b515-2dda18ce02be?tenantId=b6fd27c4-bb1d-4bfa-9ef8-404492a9233a&screenname=screen2&ID=4

Using Power automate we can send deep linking URL to users, getting URL dynamically when item is created.

Hope this will helps.


Create a button in SharePoint list to trigger a Power automate flow

Some scenarios we need to trigger a flow for a selected item, in that case we can add button in the SharePoint list view itself, using JSON we can add the button easily to trigger a power automate from default environment.


Step 1: Create a single line of text column as per the below screen shot.

SharePoint online training


Step 2: Once column is created, click on the column name ->column settings-> Format this column
SharePoint online trainingStep 3:  To add the power automate flow id, we can get it from flow as per the below screen shot.

Click on the flow name, in the browser we can get the flow id.


Add the JSON code as per the below.

{

  "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",

  "elmType": "button",

  "txtContent": "Start Approval",

  "customRowAction": {

    "action": "executeFlow",

    "actionParams": "{\"id\": \"e4691fd4-368c-4ae7-8b1f-4e998a9c7a42\"}"

  }

}

Button will be created as per the below screen shot

If we want to design the button with different color, we can use the below code.

  {

  "$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",

  "elmType": "button",

  "txtContent": "Start Approval",

  "customRowAction": {

    "action": "executeFlow",

    "actionParams": "{\"id\": \"e4691fd4-368c-4ae7-8b1f-4e998a9c7a42\"}"

  },

  "style": {

    "background-color": "Green",

    "color": "white",

    "cursor": "pointer"

  }

}

Once you click on the button workflow will start automatically, hope this will helps.





Search gallery with number in Power apps

 

In Power apps using search function we cannot search with number fields by default, however there is a work around, in smaller lists we need to search with number field.

Designed the screen as per the below.


Select the gallery and items property add the below formula

Search(AddColumns(MYTasks,"Taskid",Text(ID)),txtSearch.Text,"Taskid")


Save the app and search with number 2 as an example, you can get the results with no 2



 Note: This will work only for small lists under the delegation limit. Hope this helps.


Extract information from PDF with AI builder using Power Automate

In this example we can see how we can extract the information from PDF’s when we receive email to shared mail and send notification to approval team with required details.

Step 1: Navigate to make.powerautomate.com-> under AI Builder-> Models-> click on Extract custom information from documents.


Step 2: Create custom model, our PDF is in structured documents, select “Structured documents”->Click on Next

Create Text fields as per your requirement, I have created four columns as per the below. 

Step 3: Click on Next -> click on “New collection” -> add at least 5 PDFs with different data-> Click on Next


Step:4 Select the data in the PDF that you want to extract in email as per the below for all 5 PDFS’-> Click on Next-> Click on Train-> We need to publish then only we can use it.




Step 5:  Create an automated flow, we are selecting trigger condition when new email arrives on Shared mailbox-> Click on Create  


Created the flow as per the below screen shot, add the dynamic content which we want to show in the email.


When we receive the email to the shared mailbox, we will get the email as per the TO address.

Output:


 



Most used PowerShell admin tasks in SharePoint Online

In this article we can see most used PowerShell tasks based on the requirements in SharePoint online.

How to provide site collection admin access?

Set-SPOUser -site  https://sr7yn.sharepoint.com/sites/TestPublic -LoginName $SiteCollectionAdmin -IsSiteCollectionAdmin $True


How to enable and disable custom scripting?

Set-SPOSite  https://sr7yn.sharepoint.com/sites/TestPublic -DenyAddAndCustomizePages $False


How to enable external sharing?

Set-SPOSite -Identity  https://sr7yn.sharepoint.com/sites/TestPublic -SharingCapability ExternalUserSharingOnly


How to remove external user from admin centre?

$ExternalUserEmail = "Phani_xyz.onmicrosoft.com#EXT#@abc.onmicrosoft.com"

$ExternalUser = Get-SPOExternalUser -filter $ExternalUserEmail

Remove-SPOExternalUser -UniqueIDs @($ExternalUser.UniqueId) -Confirm:$false


How to lock the site in SharePoint site?

Set-SPOSite -Identity https://sr7yn.sharepoint.com/sites/TestPublic -LockState ReadOnly

Set-SPOSite -Identity https://sr7yn.sharepoint.com/sites/TestPublic -LockState unlock


Get file name and folder path in power automate

Split file name and folder path in Power Automate

In this article we are going to how to get folder path and file name in separate variables.

While we are working with document library we need to validate the folder path or file names in that case we need to get the data in a variable.

Initialize a variable  and use compose actions to split the folder path and file name as pe the below screen shot.



Varpath /documents/_abcfolder/xyzfolder/abcsample1.xlsx

Filename expression : last(split(variables('varpath'),'/'))

Folder Path expression : first(split(variables('varpath'),outputs('filename')))


Hope this will helps.

 

Show Drop Down Values based on another list column in Power Apps

How to populate drop down values from SharePoint lookup lists.

In this article we are going to see, how to show drop down values to book  interview slot based on available date and time in power apps.

In our requirements dates and time are static , we are maintain those values in SharePoint lists. 

Created 3 lists.

Book Date :


Book Time:




Book Slot:




Connected 3 lists and added Edit form and connected Book Slot , Changed the Default form mode to New

Unlock the properties , To filter the Book Date drop down only based on Is Available  = Yes as per the below.




ShowColumns(RenameColumns(Filter(BookDate,IsAvailable.Value="Yes"),"Title","Value","ID","id"),"id","Value")


To Filter the Book Time values drop , based on condition  Is Available  = Yes and Date selected  from previous drop down value




ShowColumns(RenameColumns(Filter(BookTime,Date.Value = DataCardValue7.Selected.Value And IsAvailable.Value = "Yes"),"Title","Value","ID","Id"),"Id","Value")


Output will  come as per the below screen shot.





Labels

.Net Interview Questions add custom button in sharepoint using javascript Add custom column property into a PageLayout in SharePoint Add Page Title on their browser's title bar in SharePoint Customly add zip files in blogger Add-SPOSiteCollectionAppCatalog : Must have Manage Web Site permissions or be a tenant admin in order to add or remove sites from the site collection app catalog allow list Advance SmartObject An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL. Angular 2 Angular JS Angularjs Angularjs 1 anonymous users accessing lists and libraries App Permissions for SharePoint 2013 asp.net membership unique email Asp.net TreeView Control asp.net. Attendees in SharePoint Auto refresh list using Content Editor WebPart in SharePoint 2013. Auto Refresh SharePoint list using JavaScript Block and unblock of attachment types in SharePoint Blogger C# Callouts in SharePoint 2013 Cascading Dropdown list in SharePoint change onenote to another location. change SuiteBarLeft in SharePoint 2013 check if userid exists in database c# click node text to expand/collapse in Treeview client object model Close webpart CQWP crate chart using BI site in PPS Create a modern team site collection in SharePoint online Create BI chart in PPS SharePoint 2013 create filter in dashboard designer. create kpi's in dashboard designer create kpi's in SharePoint 2013 dashboard designer Create List Create List In SharePoint Create List using Power Shell Script Create Lookup Field in List using Power Shell Script Create lookup field in List create SharePoint List custom view. create SharePoint List views in List Schema create site collection in site collection in SharePoint using powershell created Date Time calculated field in SharePoint Cross site Collection in SharePoint 2013 Crud Operation in Asp.net Using Stored Procedure Custom MasterPage Approval in SharePoint custom view for survey list Customly add SharePoint List view in Page. delete items in sharepoint using powershell Difference between Angular 1.x & Angular 2 difference between Office 365 and Windows Azure difference between Windows Azure and Office 365 in sharepoint? DifferenceBetween discussion board Display Data in Grid View display radio buttons and choice fields horizontally in SharePoint 2013 Document library DotNet Drag and drop documents in document library in SharePoint dynamically populating values from one list to another list using jquery in sharepoint edit and delete buttons in datagridview Edit Links email notification using Nintex enable anonymous access in SharePoint 2013 enable app catalog sharepoint online site collection powershell Enable appcatalog site collection level using PowerShell based on Input file Enable versions for list and library except the hidden lists using PowerShell Script Error occurred in deployment step 'Recycle IIS Application Pool': Cannot resolve model for the project package Errors&Solutions Export document library in sharepoint using powershell Export particular Group in Term Store Management in SharePoint 2013 Export to Excel first release Flow Flow features free disk space on servers using powershell Friendly URLs and Managed Navigation in SharePoint 2013 get a list of site collection with template in web application using PowerShell Script in SharePoint Get attachments in SharePoint custom list using c# get current list item id sharepoint programmatically Get current url using jquery Get data from SharePoint list using Rest api & Angular JS Get Random Get Random SharePoint items using PowerShell Get Random values from SharePoint list using PowerShell Get url of the last value using jquery Get-SPOSite : The managed path sites/yoursitename is not a managed path in this tenant. Getting Email From User Hide “Edit Links” in left navigation SharePoint 2013 hide button in sharepoint based on permissions Hide column in SharePoint List view hide fields using client side object model Hide list in Quick Launch in SharePoint using PowerShell How to add Custom Tiles to SharePoint site Page. How to add extension files in Search Navigation in SharePoint 2013 How to Add Multiple users Using SharePoint People Picker How to add SharePoint list view in Page using C# How to Approve MasterPage using PowerShell in SharePoint How to bind Multiple users Using SharePoint People Picker how to change indicators on kpi performance how to check if an email address already exists in the database in asp.net how to configure workflow manager platform for SharePoint 2013 how to create calculated value using powershell how to create certificate in SharePoint How to create flow. how to create gantt chart webpart in sharepoint how to create KPI indicators in Dashboard designer How to create moden communication site in SharePoint online How to create Multi selected filter in Dashboard How to create nintex workflow in sharepoint how to create rdlc reports in asp.net How to Display Data Grid View in ASP.net How to enable anonymous access in SharePoint How to find data in datagridview in c# How to get image names from the folder using C# how to get particular list content type id in SharePoint 2013 How to get QueryString value in SharePoint WebPart Programatically how to get the current item id for newly created item using REST API and JQuery how to hide list in sharepoint how to know who created list in sharepoint How to make a Site Collection Read-Only in SharePoint 2010 How to overlay Office 365 shared calendar on SharePoint Site how to pass jquery value to asp.net textbox control How to pass pagename as a browser's title bar in the page how to remove unused Application Pool in SharePoint how to remove zone using powershell script How to send mail to particular group of people using PowerShell how to update modified by and created by using powershell how to uplaod RAR files in blogger import csv data into sharepoint import data using powershell Import group to term store management using SharePoint 2013. InfoPath InfoPath Cascading Dropdown list Insert update delete in datagridview in C# winforms Integration from SharePoint to k2. K2 Smart Forms for SharePoint JavaScript Injection jquery JSON K2 blackpearl K2 Designer K2 Designer Workflow. K2 smartform cascading dropdown list k2 Workflow K2 workflow to send a mail with PDF left navigation Local Term Set in managed meta data Managed meta data navigation in SharePoint 2013 Managed metadata service in SharePoint 2013. Managed Navigation in SharePoint 2013. Managed Promoted Sites. meta data navigation Microsoft Flow New Features New-SPConfigurationDatabase The user does not exist or is not unique NintexWorkFlow Office 365 OneDrive OneNote overwrite existing document in sharepoint using javascript PDF Converter PDF Method in K2 Performance Point Service in SharePoint 2013 PerformancePoint Services Configurtion PerformancePoint Services Configurtion for SharePoint 2013 PerformancePoint Services in SharePoint Server 2013 Popularity trends in SharePoint 2013 Pages populate dropdown list dynamicallyusing jquery Power Power Automate Power Shell Power shell script to get SharePoint site size. PowerApps powershell read xml PowerShell Script PowerShell script to get list of users from SharePoint groups PowerShell Scripts in SharePoint 2013 Powershell to set the masterpage in SharePoint Promoted Links Promoted Sites psconfig.exe Python quick launch Rdlc reports Readonly Column in SharePoint Editview Realtime DotNet Interview Questions Recent Dotnet interview questions Recent SharePoint interview questions recover deleted OneNote page. OneNote content is missing Regional Settings in SharePoint 2013 Replace New Item text in SharePoint Rest API Schedule PowerShell Script Search in SharePoint 2013 Search navigation in SharePoint 2013 Secure store service SecureStore Services SecureStore Services configuration for SharePoint 2013 self-signed certificate on IIS Server Send email to members of SharePoint Group using PowerShell sharepint2010 sharepoin2010 SharePoint 2013 SharePoint 2010 SharePoint 2013 SharePoint 2013 Dashboard Designer SharePoint 2013 features SharePoint 2013 Interview Questions SharePoint 2013. SharePoint 2013.disable views from user to create SharePoint 2013.Power shell SharePoint 2013.SharePoint 2010 SharePoint 2016 SharePoint Administration SharePoint Alerts and Reminders SharePoint App Configuration SharePoint Apps SharePoint Bulk upload SharePoint Calculated field SharePoint Calendar View sharepoint interview questions SharePoint online interview questions SharePoint online training SharePoint Onprem vs Online SharePoint RealTime Online Training SharePoint2010 SharePoint2013 SharePoint2016 SharePointInterview SharePointOnline SharePointOnline;Restore deleted site;SharePoint 2013 show data in datagridview in C# Simple Insert update Delete Retrieve Clear in asp.net. Site Collection Operations in SharePoint 2013 Site Collection Read-Only in SharePoint 2013 site contents Sorting & Filtering SPO SPSite Site Collection Operation parameters in SharePoint 2013 Step by step to create rdlc report in .Net Store names in text files in C# Sub site Subsite Term store management. The server was unable to save the form at this time. please try again UI New look update created by using client side object model update field values in SharePoint using powershell update items in SharePoint list using client object model update modified by field using client side object model upload zip files in blog use IsNullOrEmpty in PowerShell VirtoSoftware VirtoSofware vitrosoftware WebParts what is Document Set in SharePoint 2010 What is Filter in SharePoint Dashboard what is Limited-access user permission lock down mode feature What is Modern Team site What is Target Audience in SharePoint Who Created Site Using PowerShell Workflow in SharePoint 2013 Workflow management platform in SharePoint 2013 Workflow manager for SharePoint 2013 XSL-Template.