Last active
December 4, 2023 03:22
-
-
Save Youka/cd472b729f8b06413aa2a1fcbb9c62cc to your computer and use it in GitHub Desktop.
Revisions
-
Youka revised this gist
Oct 3, 2018 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -9,15 +9,15 @@ wmic CPU GET AddressWidth,CurrentClockSpeed,CurrentVoltage,L2CacheSize,L3CacheSi echo. rem Get graphics card information echo # VIDEO wmic PATH Win32_videocontroller GET AdapterRAM,CurrentRefreshRate,Description,DriverVersion,VideoModeDescription echo. rem Get main memory information echo # MEMORY wmic MEMORYCHIP GET BankLabel,DataWidth,Manufacturer,PartNumber,Capacity,Speed,TypeDetail echo. rem Get disks information echo # VOLUME wmic VOLUME GET BlockSize,Capacity,DriveLetter,FileSystem,FreeSpace,IndexingEnabled,Label,MaximumFileNameLength echo. rem Get operating system information echo # OS -
Youka revised this gist
Oct 3, 2018 . 1 changed file with 10 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,21 +1,31 @@ @echo off rem Resize window for following masses of content mode 200,50 rem Get CPU information echo # CPU wmic CPU GET AddressWidth,CurrentClockSpeed,CurrentVoltage,L2CacheSize,L3CacheSize,LoadPercentage,Manufacturer,Name,NumberOfCores,NumberOfLogicalProcessors echo. rem Get graphics card information echo # VIDEO wmic PATH Win32_videocontroller GET AdapterRAM,CurrentBitsPerPixel,CurrentRefreshRate,Description,DriverVersion,VideoModeDescription echo. rem Get main memory information echo # MEMORY wmic MEMORYCHIP GET BankLabel,Manufacturer,PartNumber,Capacity,Speed,TypeDetail echo. rem Get disks information echo # VOLUME wmic VOLUME GET BlockSize,Capacity,DriveLetter,FileSystem,FreeSpace,IndexingEnabled,MaximumFileNameLength echo. rem Get operating system information echo # OS wmic OS GET Caption,CodeSet,CSName,InstallDate,Locale,NumberOfProcesses,OSArchitecture,SerialNumber,SystemDirectory,Version echo. rem Get autostart programs list echo # STARTUP wmic STARTUP GET Caption,Command,Location rem Keep window open until key is pressed pause -
Youka revised this gist
Oct 3, 2018 . 1 changed file with 7 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,21 +1,21 @@ @echo off echo # CPU wmic CPU GET AddressWidth,CurrentClockSpeed,CurrentVoltage,L2CacheSize,L3CacheSize,LoadPercentage,Manufacturer,Name,NumberOfCores,NumberOfLogicalProcessors echo. echo # VIDEO wmic PATH Win32_videocontroller GET AdapterRAM,CurrentBitsPerPixel,CurrentRefreshRate,Description,DriverVersion,VideoModeDescription echo. echo # MEMORY wmic MEMORYCHIP GET BankLabel,Manufacturer,PartNumber,Capacity,Speed,TypeDetail echo. echo # VOLUME wmic VOLUME GET BlockSize,Capacity,DriveLetter,FileSystem,FreeSpace,IndexingEnabled,MaximumFileNameLength echo. echo # OS wmic OS GET Caption,CodeSet,CSName,InstallDate,Locale,NumberOfProcesses,OSArchitecture,SerialNumber,SystemDirectory,Version echo. echo # STARTUP wmic STARTUP GET Caption,Command,Location pause -
Youka created this gist
Oct 3, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ @echo off echo CPU wmic CPU GET AddressWidth,CurrentClockSpeed,CurrentVoltage,L2CacheSize,L3CacheSize,LoadPercentage,Manufacturer,Name,NumberOfCores,NumberOfLogicalProcessors echo. echo VIDEO wmic PATH Win32_videocontroller GET AdapterRAM,CurrentBitsPerPixel,Description,DriverVersion,VideoModeDescription echo. echo MEMORY wmic MEMORYCHIP GET BankLabel,Manufacturer,PartNumber,Capacity,Speed,TypeDetail echo. echo VOLUME wmic VOLUME GET BlockSize,Capacity,DriveLetter,FileSystem,FreeSpace,IndexingEnabled,MaximumFileNameLength echo. echo OS wmic OS GET Caption,CodeSet,CSName,InstallDate,Locale,NumberOfProcesses,OSArchitecture,SerialNumber,SystemDirectory,Version echo. echo STARTUP wmic STARTUP GET Caption,Command,Location pause