mirror of
https://github.com/serialexperiments0815/PowershellExcercises.git
synced 2026-07-12 15:32:25 +00:00
Added: 1. File extension filtered file-counter. 2. System-info display script (OS, CPU, RAM). 3. File listing script. 4. Filtered file renaming script by pattern. 5. Start of to-do-text-file for next commit.
4 lines
No EOL
275 B
PowerShell
4 lines
No EOL
275 B
PowerShell
# Calling 'Get-ComputerInfo' method to return all computer information.
|
|
Get-ComputerInfo |
|
|
# Calling 'Select-Object' method to filter results through '-Property' parameters.
|
|
Select-Object -Property WindowsProductName, OSDisplayVersion, CsProcessors, OsTotalVisibleMemorySize |