PowerShell Memory – CIM_PhysicalMemory
Check A Computer’s Memory with PowerShell’s CIM_PhysicalMemory Our mission to use PowerShell to interrogate a computer’s physical memory, to see the properties of that RAM stick(s). Goals include discovering the capacity, speed and data width. We also have pure PowerShell goals, to research with Get-member and to control the display …
Windows PowerShell -As Type Operator My main use for PowerShell’s -as operator is to truncate decimals, for example: # PowerShell -As Type Operator341.1134143891 -as # Produces the answer# 341 Note 1: Naturally, this operator is not case sensitive, you can use -as, -As or even -AS. Topics for PowerShell’s -As Operator Type …
Windows PowerShell Maths PowerShell is very good at understand whether a command in your script should be handled as text or as a number. Incidentally, the more you study PowerShell’s different math techniques, the more reasons you will find to turn to PowerShell rather than VBScript or Excel. Topics for …
PowerShell Share Permissions Please Note: The original page has been moved here See here for Set-Acl See here for WMI Share Recommended: Solarwinds’ Permissions Analyzer – Free Active Directory Tool I like the Permissions Monitor because it enables me to see WHO has permissions to do WHAT at a glance. …
PowerShell Measure-Object Measure is one of PowerShell’s more interesting and unusual verbs; it deals with maths such as sum, average and maximum. Thanks to the concept of an object, this cmdlet can also calculate the properties of text objects, such as the number of words in a document. Topics for …
PowerShell Script – Exchange 2007 Mailcontact This page explains how to create Contact and – Mailcontact objects in Exchange 2007. If you are looking for a straightforward example to learn Exchange 2007 PowerShell commands, then Mailcontact is an ideal vehicle to practise. The key verbs are: get, new and disable. …