First Commit

This commit is contained in:
2021-04-09 10:38:20 -04:00
commit 829f1627a9
3 changed files with 82 additions and 0 deletions

13
sysinfo.bat Normal file
View File

@@ -0,0 +1,13 @@
ECHO off
REM sysinfo.ps1
REM Inumerate a systems processor, serial number, modle number, and ammount of RAM.
echo Hostname
wmic computersystem get name
echo CPU name
wmic cpu get name
echo OS Type
wmic os get Caption
echo System Serial Number
wmic bios get serialnumber
echo System Model Name
wmic csproduct get name