Bijay Kumar
Blogs, Articles, and Posts
10 Useful Tips for Customizing SharePoint List Fields with PnP PowerShell
(spguides.com)
Recently, I was working on building a Power Apps application that takes data sources as a SharePoint
By: Bijay Kumar submitted:Aug 16 2024
Recently, I was working on building a Power Apps application that takes data sources as a SharePoint
list. To avoid creating SharePoint lists and manually adding different types of columns, I wrote a PowerShell script. While adding different types of columns to the SharePoint lists
By: Bijay Kumar submitted:Aug 16 2024
Foreach vs Foreach-Object in PowerShell
(spguides.com)
The foreach statement and the ForEach-Object cmdlet, while similar in function, difference in form,
By: Bijay Kumar submitted:Mar 8 2024
The foreach statement and the ForEach-Object cmdlet, while similar in function, difference in form,
execution context, and performance implications. They are both designed for iterating over collections, executing a block of script code for each object in the collection. In this PowerShell tutorial, we will explain everything about the Foreach vs Foreach-Object in PowerShell.
By: Bijay Kumar submitted:Mar 8 2024
How to Add Quotes in PowerShell (Single & Double Quotes)
(spguides.com)
Many a time, you might need to add quotes in PowerShell, like single and double quotes. In this
By: Bijay Kumar submitted:Mar 8 2024
Many a time, you might need to add quotes in PowerShell, like single and double quotes. In this
PowerShell tutorial, I will explain how to add quotes in PowerShell. In PowerShell, when a string is enclosed within double quotes, it is subject to interpretation by the parser.
By: Bijay Kumar submitted:Mar 8 2024
How to Check if a Variable is Null or Empty in PowerShell?
(spguides.com)
While working on a PowerShell script, I got a requirement to check if a PowerShell variable in null
By: Bijay Kumar submitted:Feb 9 2024
While working on a PowerShell script, I got a requirement to check if a PowerShell variable in null
or empty. In this PowerShell tutorial, we'll explore how to check if a variable is null or empty in PowerShell using various methods. To check if a variable in PowerShell is null or empty, you can use ... read more...
By: Bijay Kumar submitted:Feb 9 2024
How To Check If File Modified In Last 24 Hours Using PowerShell?
(spguides.com)
One of my team members recently wanted to check if a file has been modified in the last 24 hours. I
By: Bijay Kumar submitted:Dec 6 2024
One of my team members recently wanted to check if a file has been modified in the last 24 hours. I
suggest using PowerShell as it provides different methods to check. In this tutorial, I will explain how to check if a file has been modified in the last 24 hours using PowerShell with examples.
By: Bijay Kumar submitted:Dec 6 2024
How to Convert Multiline String to Array in PowerShell?
(spguides.com)
Do you need to convert multiline strings into arrays in PowerShell? In this PowerShell tutorial, I
By: Bijay Kumar submitted:Feb 2 2024
Do you need to convert multiline strings into arrays in PowerShell? In this PowerShell tutorial, I
will explain to you different methods to convert a multiline string into an array in PowerShell. To convert a multiline string into an array in PowerShell, you can use the -split operator with a newline character as the delimiter.
By: Bijay Kumar submitted:Feb 2 2024
How to Disable Power Apps Permissions PopUp Consent Form? [Using PowerShell]
(spguides.com)
While sharing Power Apps applications with end users, we might get a consent popup message like the
By: Bijay Kumar submitted:Nov 8 2024
While sharing Power Apps applications with end users, we might get a consent popup message like the
one below. This message asks the user permission to establish a new connection to the application. So, the user needs to connect to whatever connectors the app maker used for that application.
By: Bijay Kumar submitted:Nov 8 2024
How to Get Current Function Name in PowerShell?
(spguides.com)
Do you want to get the current PowerShell function name? In this PowerShell tutorial, I will explain
By: Bijay Kumar submitted:Jan 19 2024
Do you want to get the current PowerShell function name? In this PowerShell tutorial, I will explain
how to get the current function name in PowerShell. Get the Current Function Name in PowerShell A function in PowerShell is a block of code with a name that performs a specific task.
By: Bijay Kumar submitted:Jan 19 2024
How to Get-Date Without Time in PowerShell?
(spguides.com)
Do you want to get-date without time in PowerShell? In this PowerShell tutorial, I will explain
By: Bijay Kumar submitted:Jan 12 2024
Do you want to get-date without time in PowerShell? In this PowerShell tutorial, I will explain
different "PowerShell get-date without time" methods with examples. PowerShell get-date without time Here are different ways to get-date without time in PowerShell. Using Get-Date with DisplayHint Parameter PowerShell provides the Get-Date cmdlet, which is a versatile command used to retrieve the
By: Bijay Kumar submitted:Jan 12 2024
How to Rename Multiple Files Using PowerShell?
(spguides.com)
Recently, I got a requirement to rename numerous report files in a project. PowerShell script is the
By: Bijay Kumar submitted:Dec 13 2024
Recently, I got a requirement to rename numerous report files in a project. PowerShell script is the
best option for it. In this tutorial, I will explain how to rename multiple files using PowerShell. Rename Multiple Files Using PowerShell Recently, I was working on a project for a client in New York City.
By: Bijay Kumar submitted:Dec 13 2024
How to Replace Carriage Returns in Strings Using PowerShell?
(spguides.com)
There will be times when you want to replace carriage returns in strings using PowerShell. In this
By: Bijay Kumar submitted:Dec 6 2024
There will be times when you want to replace carriage returns in strings using PowerShell. In this
tutorial, we will learn how to replace carriage returns in strings using PowerShell. To replace a string containing a carriage return in PowerShell, use the -replace operator with the carriage return escape sequence `r. For example, $string -replace "r", "replacement text"will replace
By: Bijay Kumar submitted:Dec 6 2024
How to Split a String by Length in PowerShell?
(spguides.com)
When you need to split a string by a specific length, PowerShell offers various methods to do it.
By: Bijay Kumar submitted:Jun 21 2024
When you need to split a string by a specific length, PowerShell offers various methods to do it.
This PowerShell tutorial explains various methods to split a string by length in PowerShell To split a string by length in PowerShell, you can use a loop with the Substring method to iteratively extract parts of the string
By: Bijay Kumar submitted:Jun 21 2024
How to Use PowerShell Get-Date Cmdlet?
(spguides.com)
In this tutorial, I will explain how to use the PowerShell Get-Date cmdlet to work with dates and
By: Bijay Kumar submitted:Dec 20 2024
In this tutorial, I will explain how to use the PowerShell Get-Date cmdlet to work with dates and
times in your scripts. The Get-Date cmdlet allows you to retrieve the current date and time, format dates, and perform date calculations. As a system administrator or a developer, you should know how to use Get-Date
By: Bijay Kumar submitted:Dec 20 2024
PowerShell Copy-Item with Folder Structure
(spguides.com)
In this tutorial, I will explain how to use PowerShell's Copy-Item cmdlet to copy files and folders
By: Bijay Kumar submitted:Nov 22 2024
In this tutorial, I will explain how to use PowerShell's Copy-Item cmdlet to copy files and folders
while maintaining their original structure. This is a common task for system administrators and developers who need to manage file systems efficiently. You will learn here how to use the PowerShell Copy-Item cmdlet to efficiently copy files
By: Bijay Kumar submitted:Nov 22 2024
PowerShell get file size
(spguides.com)
Do you want to check file size in PowerShell? In this PowerShell tutorial, I will explain everything
By: Bijay Kumar submitted:Dec 8 2023
Do you want to check file size in PowerShell? In this PowerShell tutorial, I will explain everything
about PowerShell get file size with various methods and examples. To check the file size using PowerShell, you can use the Get-Item command followed by the .Length property.
By: Bijay Kumar submitted:Dec 8 2023
Powershell Global Variable: Mastering Scope and Usage with Examples
(spguides.com)
PowerShell global variables are an essential aspect of scripting in Windows PowerShell. They offer a
By: Bijay Kumar submitted:Dec 15 2023
PowerShell global variables are an essential aspect of scripting in Windows PowerShell. They offer a
way to store and manipulate data across functions, scripts, and cmdlets. In this tutorial, I will explain to you how to define, set, and use global variable in PowerShell.
By: Bijay Kumar submitted:Dec 15 2023
Replace String Containing Special Characters in PowerShell
(spguides.com)
There might have been scenarios where you want to replace a string containing special characters in
By: Bijay Kumar submitted:Jan 26 2024
There might have been scenarios where you want to replace a string containing special characters in
PowerShell. In this tutorial, I will explain to you different examples of how to replace strings containing special characters in PowerShell. To replace a string containing special characters in PowerShell, you can use the -replace operator with an escape character
By: Bijay Kumar submitted:Jan 26 2024
SharePoint Management Shell [How to use]
(spguides.com)
Do you want to know how to use the SharePoint management shell? In this PowerShell tutorial, I will
By: Bijay Kumar submitted:Oct 27 2023
Do you want to know how to use the SharePoint management shell? In this PowerShell tutorial, I will
explain how to connect with SharePoint sites from Microsoft PowerShell. I will show you how to use the SharePoint Online management shell to connect with SharePoint Online sites and also how to work with SharePoint on-premises sites.
By: Bijay Kumar submitted:Oct 27 2023
Projects, Scripts, and Modules
How to Create SharePoint List & Add Columns Using PnP PowerShell?
(spguides.com)
Recently, I developed one Power Apps application that needed a SharePoint list data source. Before
By: Bijay Kumar submitted:Jul 12 2024
Recently, I developed one Power Apps application that needed a SharePoint list data source. Before
running the application, the client must create the specific SharePoint list on their site. So, I wrote a Power Shell script to create the SharePoint list along columns to avoid mistakes when creating it manually.
By: Bijay Kumar submitted:Jul 12 2024