Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying PowerShell Troubleshooting Guide
  • Table Of Contents Toc
PowerShell Troubleshooting Guide

PowerShell Troubleshooting Guide

By : Michael Shepard
4.7 (3)
close
close
PowerShell Troubleshooting Guide

PowerShell Troubleshooting Guide

4.7 (3)
By: Michael Shepard

Overview of this book

The techniques in this book apply to beginners who have just started to learn PowerShell, as well as advanced scripters who have a good grasp of the language.
Table of Contents (10 chapters)
close
close
9
Index

Validating disk and memory availability


Trying to run a script on a system that is out of memory or disk space is a frustrating experience. An important piece of preparation is to determine the amount of memory and disk space present as well as how much of each is unused. Retrieving these statistics with WMI is a simple matter, and with a bit of effort we can make the results more user-friendly.

We already encountered the Win32_OperatingSystem class in the first part of this chapter. Fortunately for us, there are two properties on this class that will tell us both the total amount and the free amount of memory.

Get-CIMInstance Win32_OperatingSystem | 
  Select-object FreePhysicalMemory,TotalVisibleMemorySize 

The output on my laptop is this:

Since we're going to probably want to see these in a different unit than kilobytes, we can use a trick recommended by Jeffery Hicks (Microsoft MVP in PowerShell) to add script properties to the class returned by get-CIMInstance:

Update-TypeData -TypeName...
CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
PowerShell Troubleshooting Guide
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon