I'm getting an issue when trying to use the IP Address Plugin ,the plugin fails to load with this error.

Any ideas ?
Using the latest version of log view plus also tried to load the plugin from program data




# Function to get distinct .NET Framework versions from the registry
function Get-DistinctDotNetFrameworkVersions {
$FrameworkKey = "HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP"
Get-ChildItem -Path $FrameworkKey -Recurse |
Get-ItemProperty -Name Version, Install -ErrorAction SilentlyContinue |
Where-Object { $_.Version -match "^\d" -and $_.Install -eq 1 } |
Select-Object @{Name="Full Version";Expression={$_.Version}} -Unique
}
# Function to get distinct .NET Core / .NET 5+ runtime versions
function Get-DistinctDotNetCoreRuntimes {
if (Test-Path "$env:ProgramFiles\dotnet\shared\Microsoft.NETCore.App") {
Get-ChildItem "$env:ProgramFiles\dotnet\shared\Microsoft.NETCore.App" |
Select-Object @{Name="Full Version";Expression={$_.Name}} -Unique
} else {
Write-Output "No .NET Core / .NET 5+ runtimes found."
}
}
# Display distinct .NET Framework versions
Write-Output "`nDistinct .NET Framework Versions Installed:"
Get-DistinctDotNetFrameworkVersions | ForEach-Object { "Version $($_.'Full Version')" }
# Display distinct .NET Core / .NET 5+ runtime versions
Write-Output "`nDistinct .NET Core / .NET 5+ Runtime Versions Installed:"
Get-DistinctDotNetCoreRuntimes | ForEach-Object { "Version $($_.'Full Version')" }This topic is closed and cannot receive new replies.