If you need to debug and determine the reasons for an application malfunction, it is sometimes necessary to view more detailed system setup data. The most common problem is caused by an outdated version of .NEY or running it on an incompatible operating system. Therefore, run the following command and send the output to us as a TXT file with a description of the application's behavior.
Run it in "Windows PowerShell" with administrator rights.
clear
'
---- .NET 4.7.2 -------'
(Get-ItemProperty "HKLM:/SOFTWARE/Microsoft/NET Framework Setup/NDP/v4/Full").Release -ge 461808
'
---- WINDOWS DETAIL -------'
Get-WmiObject Win32_OperatingSystem | fl *memory*
Get-ComputerInfo | select WindowsProductName, WindowsVersion, OsHardwareAbstractionLayer
systeminfo /fo csv | ConvertFrom-Csv | select Windows*, OS*, System*, Hotfix* | Format-List
'
---- .NET MAIN VERSIONS -------'
Get-ChildItem "$($Env:WinDir)/Microsoft.Net/Framework" -i mscorlib.dll -r |
ForEach-Object { $_.VersionInfo.ProductVersion }
'
---- .NET UPDATES -------'
$DotNetVersions = Get-ChildItem HKLM:/SOFTWARE/WOW6432Node/Microsoft/Updates | Where-Object {$_.name -like
"*.NET Framework*"}
ForEach($Version in $DotNetVersions){
$Updates = Get-ChildItem $Version.PSPath
$Version.PSChildName
ForEach ($Update in $Updates){
$Update.PSChildName
}
}
---- WINDOWS DETAIL -------
WindowsProductName WindowsVersion OsHardwareAbstractionLayer
------------------ -------------- --------------------------
Windows 10 Enterprise 2004 10.0.19041.488
Windows Directory : C:WINDOWS
OS Name : Microsoft Windows 10 Enterprise
OS Version : 10.0.19041 N/A Build 19041
OS Manufacturer : Microsoft Corporation
OS Configuration : Member Workstation
OS Build Type : Multiprocessor Free
System Boot Time : 14.09.2020, 15:09:53
System Manufacturer : GIGABYTE
System Model : GB-BSi3-6100
System Type : x64-based PC
System Directory : C:WINDOWSsystem32
![]() |
© Copyright 1992 - 2025 PALSTAT s.r.o. |
PALSTAT s.r.o. Bucharova 230 543 02 Vrchlabí CZECH REPUBLIC |
tel.: +420 499 422 044 tel.: +420 499 692 016 www.palstat.cz |
» Home Page » Training » References » News |
» Events » Partners » Support » Contact |
» Products » Customer portal » Remote support » Update |
» Terms and Conditions » Gallery » Map » Portal 3 |