“Windows PowerShell Ise” Respostas de código

PowerShell verifique se o software está instalado

$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."
}
vlT

Windows PowerShell Ise

CMD> reg query HKLM\SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine /v PowerShellVersion

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    PowerShellVersion    REG_SZ    5.1.17134.1
Poor Tony Stark

Respostas semelhantes a “Windows PowerShell Ise”

Perguntas semelhantes a “Windows PowerShell Ise”

Mais respostas relacionadas para “Windows PowerShell Ise” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código