User Profile
gerald_doeserich
Copper Contributor
Joined Jul 18, 2021
User Widgets
Recent Discussions
Re: Powershell JSON
Ronald Lawrimore I don't think there is a direct way of parsing the inner fields to a PSCustomObject. The following should do the trick and give you a PSCustomObject to work with: # $JSON is the result from your Invoke-WebRequest ForEach($entry in $JSON) { $newFields = @() $rawFields = $entry.Fields ForEach($rawField in $rawFields) { $parameters = [PSCustomObject]@{} # Remove first 2 letters (as they are '@{') and the last '}' $rawField = $rawField.Substring(2, $rawField.Length - 4) # Parameters seem to be splitted by a ';' $rawParameters = $rawField -split ';' ForEach($pair in $rawParameters) { # Key = Value $split = $pair -split '=' # Trim the start as after the ';' a space occurs $name = $split[0].TrimStart() # Skip empty pairs If([String]::IsNullOrEmpty($name)) { Continue } $parameters | Add-Member -NotePropertyName $name -NotePropertyValue $split[1] } $newFields += $parameters } # Override original Fields entry $entry.Fields = $newFields }1.3KViews0likes0CommentsRe: Endpoint Defender block opening an application
It would still be very helpful to be able to actually know what the software is missing. Did you try to find a log file of the software? If windows defender is blocking an application you should be able to see it in the Security Center of Windows. If Windows Firewall is blocking something you should be able to find it in the Firewall log (assuming logging is enabled in wf.msc): %systemroot%\system32\LogFiles\Firewall\pfirewall.log For testing purposes you can create a firewall rule for the EXE of the Application to see if it then works. Also check Windows Event Logs for any events at the time of the error message.4.7KViews0likes0CommentsRe: Endpoint Defender block opening an application
The error doesn't indicate that Intunes nor Configuration Manager has to be the cause of the issue. Did you try and find any logfile for the software itself? Did you contact ABACUS support as the error states? Did the error start after the installation of the Configuration Manager Client / Intune Join?4.7KViews0likes2Comments
Recent Blog Articles
No content to show