mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-22 21:58:42 +01:00
Update write-motd.ps1
This commit is contained in:
parent
104049cb50
commit
475df7fed6
@ -40,7 +40,7 @@ $CurrentLoad = "{0}%" -f $(Get-WmiObject Win32_Processor | Measure-Object -Prope
|
||||
# $Processor = Get-CimInstance -ClassName Win32_Processor
|
||||
# $Memory_Size = "{0}mb/{1}mb Used" -f (([math]::round($ReturnedValues.Operating_System.TotalVisibleMemorySize / 1KB)) - ([math]::round($ReturnedValues.Operating_System.FreePhysicalMemory / 1KB))), ([math]::round($ReturnedValues.Operating_System.TotalVisibleMemorySize / 1KB))
|
||||
$DriveDetails = Get-PSDrive C
|
||||
$DiskSize = "{0}gb/{1}gb Used" -f (([math]::round($DriveDetails.Used / 1GB), ([math]::round(($DriveDetails.Used + $DriveDetails.Free) / 1GB)))
|
||||
$DiskSize = "{0}gb/{1}gb Used" -f (([math]::round($DriveDetails.Used / 1GB), ([math]::round(($DriveDetails.Used + $DriveDetails.Free) / 1GB))))
|
||||
|
||||
# Print results:
|
||||
[Environment]::NewLine
|
||||
|
Loading…
Reference in New Issue
Block a user