4 Commits

Author SHA1 Message Date
150687f2a1 Update 'sysinfo.ps1'
Resolves issue#15
2022-03-17 10:56:37 -04:00
3f805bead7 Merge pull request 'Update 'README.md'' (#13) from readme_csharp into master
Reviewed-on: #13
2021-06-29 10:45:37 -04:00
dbe2543217 Update 'README.md'
Update the README.md to reflect the work being done to rewrite the program in c#.
2021-06-29 10:42:33 -04:00
9170d37d0c Update 'quickrun.bat'
quickrun.bat was not resetting the execution policy. This fixes this.
2021-05-05 17:53:14 -04:00
3 changed files with 11 additions and 4 deletions

View File

@@ -92,3 +92,11 @@ It will require the ability to run Powershell Scripts which is restricted by def
## Dev Notes ## Dev Notes
Going forward branch master will be write protected. Please do all further work on branches off of master. Going forward branch master will be write protected. Please do all further work on branches off of master.
I will be starting to work on rewriting the main script in C#. This will afford the following advangages:
* An executable. This will have the advange of not having to mess with the Powershell ExecutionPolicy everytime you want to run the scritp.
* The Autorun in the USB_Run.zip file will actually be able to launch the script.
* With it being writin in C# it should be more extensable and somewhat easier to manintain.

View File

@@ -3,4 +3,4 @@ REM Runs the quick run commands form the readme.md
REM https://efrick.ddns.net/git/efrick/Sysinfo/src/branch/master/README.md#quick-run REM https://efrick.ddns.net/git/efrick/Sysinfo/src/branch/master/README.md#quick-run
REM This must be run from an elevated prompt. REM This must be run from an elevated prompt.
Powershell.exe -command "$current_execution_policy = Get-ExecutionPolicy; Set-ExecutionPolicy Bypass CurrentUser;$current_path = pwd; .\sysinfo.ps1 -write_output -file_location $current_path.Path" Powershell.exe -command "$current_execution_policy = Get-ExecutionPolicy; Set-ExecutionPolicy Bypass CurrentUser;$current_path = pwd; .\sysinfo.ps1 -write_output -file_location $current_path.Path;Set-ExecutionPolicy $current_execution_policy CurrentUser"

View File

@@ -40,8 +40,7 @@ function Find-RAM { #This finds the systems total physical memory and then retur
$system_memory = $cs.totalphysicalmemory $system_memory = $cs.totalphysicalmemory
$system_memory = $system_memory * 0.000000001 #Multiplies by 0.000000001 as the number give by CIM is in bytes. $system_memory = [math]::Round($system_memory / 1GB, 2)
$system_memory = [math]::floor($system_memory)
$system_memory = [String]$system_memory + " GB" $system_memory = [String]$system_memory + " GB"
return $system_memory return $system_memory