PoshCode Archive  Artifact [01c310f73a]

Artifact 01c310f73a2fb1eac9ee40d5ab51fcbf90e88ef64a931ffa904d1671f72fe927:

  • File check-installed-not-refreshed-after-.ps1 — part of check-in [bec366f299] at 2018-06-10 13:48:11 on branch trunk — $check.installed not refreshed after feature instlled (user: unknown size: 471)

# encoding: ascii
# api: powershell
# title: 
# description: $check.installed not refreshed after feature instlled
# version: 0.1
# license: CC0
# x-poshcode-id: 4960
# x-archived: 2014-03-07T19:46:00
#
#
$check = Get-WindowsFeature | Where-Object {$_.Name -eq "SNMP-Service"}

If ($check.Installed -ne "True") {
	#Install/Enable SNMP Services
	Add-WindowsFeature SNMP-Service 
}

$check = Get-WindowsFeature | Where-Object {$_.Name -eq "SNMP-Service"}