Horje
powershell check if software is installed Code Example
powershell check if software is installed
$software = "Microsoft .NET Core Runtime - 3.1.0 (x64)";
$installed = (Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Where { $_.DisplayName -eq $software }) -ne $null

If(-Not $installed) {
	Write-Host "'$software' is NOT installed.";
} else {
	Write-Host "'$software' is installed."
}




Shell

Related
join docker swarm Code Example join docker swarm Code Example
github add directory to repository Code Example github add directory to repository Code Example
get public ip linux Code Example get public ip linux Code Example
npm morgan install Code Example npm morgan install Code Example
Installing ipython-sql in Jupyter Code Example Installing ipython-sql in Jupyter Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13