FREQUENTLY ASK QUESTIONS

YOU CAN SEARCH PART OF THE TEXT OR NUMBER.

Verify system configuration and .NET Framework


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.

 

Version detection script .NET

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
       }
}


Výstup uvedeného scriptu k 09/2020
 


 

---- 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

 

 

https://www.palstat.cz/