Questions tagged [msinfo32]
14 questions
2
votes
0 answers
Run msinfo32 from cmd in language other than currently used in Windows?
My Windows10 is displayed in Polish language.
English language pack is additionally installed in the system.
When I run msinfo32 (from cmd or start menu), the output is also in Polish, which won't be useful for bug report sharing.I would like to see…

DanyGee
- 93
- 1
- 7
2
votes
2 answers
msinfo32 won't run in NSIS under Windows XP
The following NSIS line refuses to run for some reason (returns immediately) under Windows XP:
ExecWait ' "$PROGRAMFILES\Common Files\Microsoft Shared\MSInfo\msinfo32" /report "$DESKTOP\msinfo.log" '
If I run msinfo32 in the command line, it runs…

Eternal Learner
- 2,602
- 5
- 27
- 38
2
votes
1 answer
C# Win. Form - How to get "System Summary" from "msinfo32"
I am creating a utility software in which it stores all the details of the PC and i managed to find a program which contains all the details i want "msinfo32".
The problem at this very moment is i don't know how to get this information in the…

Agent_Spock
- 1,107
- 2
- 16
- 44
1
vote
2 answers
Parse a *.nfo file with python
I try to parse a nfo file and print in a html code style (a table).
I tried with xml.etree but i get only 2 elements: Metadata and Category.
This is how a .nfo looks like:

VladutZzZ
- 680
- 1
- 8
- 27
1
vote
3 answers
Is there any ways to use msinfo32.exe in my program?
I'm writing a program to maintain computers at my workplace. I want to use msinfo32 to automatically collect system information about computers in network remotely and use this data in my program.
The only way I found is to manually connect using…

Nikolay Zhulikov
- 130
- 11
1
vote
2 answers
msinfo32.exe can't collect information on a sharepoint page ASP.net
I am creating a new process on my Sharepoint web application. I've run the same command as below and works on my OS but not on my web app. I wanted to know why and if this is even possible. Here's code that creates the process.
string filePath =…

lzc
- 1,645
- 5
- 27
- 41
1
vote
1 answer
Managing msi from external program
We have our custom setup.exe program which launches a series of individial MSIs in synchronous manner. Scheme and command use to launch msi is :
msiexcehandle = CreateProcess("msiexec.exe /i product.msi /qr")
WaitForSingleObject(msiexechandle,…

Kartlee
- 1,129
- 2
- 19
- 33
1
vote
0 answers
WMI 0x80041013 "Provider load failure"
A number of programs are failing with this error eg, MSinfo32, AS SSD, Samsung Magician etc. I have tried all the following actions to no avail:
Repaired W7 Ultimate SP1 OS using the Upgrade option with a W7 Ultimate SP1 cd.
Run SFC /Scannow - no…

user780781
- 56
- 1
- 5
1
vote
1 answer
msinfo command line export only running tasks
I want from command line to run msinfo32 and get to a text file ONLY the running tasks of the system. For example I run the command :
msinfo32 /report .\nfo.txt /categories-all+SWEnvRunningTasks
msinfo32 /report .\nfo.txt /category…

Stathis Andronikos
- 1,259
- 2
- 25
- 44
1
vote
1 answer
Powershell get-content text file and loot to run msinfo32.exe
$computers = Get-Content -Path C:\output\output.txt
$output = '\\PCname\c$\output\'
$output1 = '.txt'
($output2 =$output+$computers+$output1)
msinfo32.exe /report $output2 /computer $computer
What I am getting is the msinfo32.exe /report $output2…

Dex
- 33
- 1
- 2
- 6
0
votes
1 answer
How to convert MsInfo32 into English from Hungarian?
I am currently facing an issue, where I need to send Ubisoft my MsInfo32, because I literally cannot play a game I bought from them.
However, the file I generate running msinfo with admin privileges, and saving the file, gives out Hungarian field…

Shadow0013
- 61
- 7
0
votes
1 answer
create a report from msinfo32.exe via ruby
I would like to silently save out a report from msinfo32.exe using ruby. How can I do so? I tried the following
system "msinfo32.exe /\report c:/\/\temp/\/\fromruby.txt"
exec 'msinfo32.exe /\report c:/\/\temp/\/\fromruby.txt'
IO.popen("msinfo32.exe…

ybi
- 171
- 1
- 3
- 9
0
votes
2 answers
Issues extracting data with PS and saving to UNC path
I'm currently trying to pull msinfo data from a remote server and then save that output onto a share located on another server. When I run the command, a progress bar appears and then completes without apparent issue, but the file isn't saved to…

mosaic3
- 1
- 1
0
votes
1 answer
MS DOS function like ipconfig to get system performance specs?
I am aware of MSINFO32, but I'm wondering if there is a MS DOS command similar to ipconfig in order to get system specifications?
I would like for the system specifications to be displayed in the MS DOS prompt.
I would like to see at…

JustADude
- 2,619
- 7
- 31
- 45