Answers for "powershell ise"

0

powershell check if software is installed

$software = "Microsoft .NET Core Runtime - 3.1.0 (x64)";
$installed = (Get-ItemProperty HKLM:SoftwareMicrosoftWindowsCurrentVersionUninstall* | Where { $_.DisplayName -eq $software }) -ne $null

If(-Not $installed) {
	Write-Host "'$software' is NOT installed.";
} else {
	Write-Host "'$software' is installed."
}
Posted by: Guest on March-28-2020
0

windows powershell ise

CMD> reg query HKLMSOFTWAREMicrosoftPowerShell3PowerShellEngine /v PowerShellVersion

HKEY_LOCAL_MACHINESOFTWAREMicrosoftPowerShell3PowerShellEngine
    PowerShellVersion    REG_SZ    5.1.17134.1
Posted by: Guest on October-24-2021
0

powershell which equivalent

Get-Command <command-name>
Posted by: Guest on January-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language