Here is a cheat sheet that is a list of all PowerShell approved verbs.
You can download cheat sheet from
here.
Related Posts:
Find out who is logged on and logged off
Being an SCCM administrator, I often have to log into machines to see if a deployment went ok. Trying to login to machines and getting the message that someone is already logged in gets tiring. Ed Wilson originally wrote a … Read More
Application Uninstall Script
This script will uninstall an application with just the partial description that is listed in Add/Remove programs. It searches the product list and then grabs the GUID to use in the MSI uninstallation. At current, it will o… Read More
Dell Client System Update for the SCCM & MDT Build
The DCSU is a great utility that Dell has made available to update the drivers and driver applications on Dell systems. The industry I work in requires specific drivers for specific applications, which makes the DCSU not a… Read More
Robocopy User Profile Contents to UNC Path
The Windows 10 upgrades required us to move profile contents off of the machines to a file share and then move them back. This was because USMT could not be used due to the architecture changing from 32-bit to 64-bit.
This … Read More
Add/Remove Program entries
Sometimes it is necessary to add an add/remove programs entry. There are instances where an application is independent and requires not installation and you want to make sure it is copied to the system, or you use add/remov… Read More
Thanks, another way to get the list is to run get-verb ;)
ReplyDeleteThat is actually how I got and created the list. I wrote a powershell script that uses the get-verb and then writes the output to a formatted excel document.
Delete