<# .SYNOPSIS This script runs the PowerShell equivalent to 'tail -f $instdir/log/osgi.log', where $instdir is the installation directory read from the registry entry hklm:\SOFTWARE\osgi-runner\Instdir .NOTES SVN-Release: $Id$ #> $instdir = Get-ItemPropertyValue -Path hklm:\SOFTWARE\osgi-runner -Name Instdir Get-Content $instdir\log\osgi.log -Wait -Tail 100