Summary: Look at variables that do not have a description.
How can you look at automatic and user-created variables that have no description?
Use the Get-Variable cmdlet and search for an empty description:
Get-Variable | where description -eq “”
0 comments