Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Echo Off & Cls
- For /F "Tokens=*" %%A In ('systeminfo') Do (
- @Echo %%A | Find /I "Description"
- @Echo %%A | Find /I "Version"
- @Echo %%A | Find /I "System Type"
- @Echo %%A | Find /I "System Locale"
- @Echo %%A | Find /I "Input Locale"
- @Echo %%A | Find /I "Time Zone"
- )
- Echo.
- Echo.
- For /F %%B In ('wmic Os Get /Format:List ^| Find /I "Osarchitecture"') Do (Set Output=%%B)
- For /F "Tokens=*" %%C In ('Systeminfo ^| Find /I "OS Name"') Do (Set OsName=%%C)
- If "%Output:~15,21%"=="64-bit" (Echo %OsName:~12,60% 64-bit) Else (Echo %OsName:~12,60% 32-Bit)
- Pause >nul
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement