Get System Information
Moderators: Dorian (MJT support), JRL
Get System Information
Is there a command that gets main system information, such as RAM, CPU, OS etc?
executefile use this command to open your system information file on your computer and that would show all the things your asking about maybe that is what your looking for goodluck hope this helps
if idiots rule the world then im the king!!!!
i want a free t-shirt give me all of your rep!!!
please give me pro version of macro scheduler and appnavigator!!!
i want a free t-shirt give me all of your rep!!!
please give me pro version of macro scheduler and appnavigator!!!
Use Systeminfo command to get computer specs
This is what you are looking for:
Have Fun!
Code: Select all
Let>RP_WAIT=1
Run>systeminfo >c:\mytemp.txt
ReadFile>c:\mytemp.txt,strFileContents
MessageModal>strFileContents
Have Fun!
When I run the above macro in MS 11 or 12 on XP or in MS 12 on Win 7, it displays: ##NOFILE##
This is because the file is not being created.
However, if I open a DOS window and actually type the following at the command prompt, the file is created no problem:
systeminfo >c:\mytemp.txt
Is there some sort of syntax error with the following line?
Run>systeminfo >c:\mytemp.txt
Perhaps some missing quotes?
This is because the file is not being created.
However, if I open a DOS window and actually type the following at the command prompt, the file is created no problem:
systeminfo >c:\mytemp.txt
Is there some sort of syntax error with the following line?
Run>systeminfo >c:\mytemp.txt
Perhaps some missing quotes?
jpuziano
Note: If anyone else on the planet would find the following useful...
[Open] PlayWav command that plays from embedded script data
...then please add your thoughts/support at the above post -
Note: If anyone else on the planet would find the following useful...
[Open] PlayWav command that plays from embedded script data
...then please add your thoughts/support at the above post -
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
You need to do:
Code: Select all
Let>RP_WAIT=1
Run>cmd.exe /c systeminfo >%TEMP_DIR%\sysinfo.txt
ReadFile>%TEMP_DIR%\sysinfo.txt,strFileContents
MessageModal>strFileContents
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
Hi Marcus,
Thanks for that, working fine now.
Thanks for that, working fine now.
jpuziano
Note: If anyone else on the planet would find the following useful...
[Open] PlayWav command that plays from embedded script data
...then please add your thoughts/support at the above post -
Note: If anyone else on the planet would find the following useful...
[Open] PlayWav command that plays from embedded script data
...then please add your thoughts/support at the above post -