Update to Powershell to accomidate Windows 7 #3

Merged
efrick merged 4 commits from Win7_Fix into master 2021-04-27 15:37:52 -04:00
Owner

This should reslove issue #2 by detecting the system it's being run on and falling back to wmic commands if it is detected that the computer is running Windows 7.

This should reslove issue #2 by detecting the system it's being run on and falling back to wmic commands if it is detected that the computer is running Windows 7.
efrick added the
bug
label 2021-04-27 14:56:44 -04:00
efrick added 1 commit 2021-04-27 14:56:45 -04:00
Author
Owner

Testing shows most things working on the output side with the exception of RAM not having an ammount shown. IE. 4 instead of 4 GB.

This can be fixed by adding the line

$system_memory_7 = $system_memory_7.ToString() + "GB"

To the Find-RAM_7 function before $system_memory_7 is returned.

Testing shows most things working on the output side with the exception of RAM not having an ammount shown. IE. 4 instead of 4 GB. This can be fixed by adding the line ```powershell $system_memory_7 = $system_memory_7.ToString() + "GB" ``` To the `Find-RAM_7` function before `$system_memory_7` is returned.
Author
Owner

Issue #4 should be corrected as well before merge.

Issue #4 should be corrected as well before merge.
efrick added 3 commits 2021-04-27 15:36:59 -04:00
efrick merged commit b346d7f79d into master 2021-04-27 15:37:52 -04:00
efrick added the
Bugfix
label 2021-04-27 15:45:28 -04:00
Sign in to join this conversation.
No description provided.