Powershell functions are the most lightweight form of Powershell command, it's a grouping of code runs against each object defined (within that code) in the script block and performs the specified action. Powershell functions help the administrator to create reusable code which acts as Powershell cmdlets. Syntax A function is defined as … [Read more...] about PowerShell Functions
Scripts
Powershell script to uninstall applications
If you are looking for a script to uninstall applications remote on windows 10 desktop computer or windows server 2016 computer then you are at the right place, here in this article we explain how a Powershell Script can uninstall applications on multiple remote computers. We can uninstall any software using Powershell script, there are two … [Read more...] about Powershell script to uninstall applications
Powershell Pipeline
PowerShell Pipeline Concept, the powershell one of the main feature and the most powerful element is a pipeline that enables administrators to write the code easily. When you club two commands, powershell has to find out how to get the output of the first command to the input of the second command, that’s where the pipeline concept comes. Let's … [Read more...] about Powershell Pipeline
PowerShell Operators
PowerShell Operators Basically PowerShell comparison operators are declared using the symbol dash (-) followed by a name (eq for equal, gt for greater than, -lt as less than and more. Comparison operators: 4 -eq 4 # Equal to (=) 3 -ne 5 # Not equal to (!=) 6 -gt 5 # Greater-than (>) 15 -ge 15 # Greater-than or equal to (>=) … [Read more...] about PowerShell Operators
How to get Windows version
How to Find Windows Version on any computer machine and it is required to upgrade when your computer has an old version update, here are the simple steps on how to find windows version. When you are supporting a large scale environment that has a mixed set of computers like servers and desktop machines with different operating systems and want to … [Read more...] about How to get Windows version
Files Version Check Using Powershell | Ping-Test | HTML report
Files Scan Using Powershell | HTML Report, When there is a requirement to check a file or folder status on a single machine it is easy as you simply log into that machine and you can check it, imagine when there are many servers and desktops that you need to search a file or validate a file then it takes much time or even days to check on all the … [Read more...] about Files Version Check Using Powershell | Ping-Test | HTML report