
Brummbär, This rule is triggered if you have a log from Microsoft-Windows-PowerShell Operational event channel that has a field name ScriptBlockId and another field name scriptBlockText with value Invoke-Command and ComputerName or CN.
Check the related rules for reference.
<rule id="91801" level="0">
<if_sid>60000, 60010</if_sid>
<field name="win.system.channel">^Microsoft-Windows-PowerShell/Operational$</field>
<options>no_full_log</options>
<description>Group of Windows rules for the Powershell/Operational channel.</description>
</rule>
<rule id="91802" level="0">
<if_sid>91801</if_sid>
<field name="win.eventdata.ScriptBlockId" type="pcre2">.+</field>
<options>no_full_log</options>
<description>Group of Windows rules for the Powershell/Operational channel.</description>
</rule>
<rule id="91822" level="12">
<if_sid>91802</if_sid>
<field name="win.eventdata.scriptBlockText" type="pcre2">(?i)Invoke-Command</field>
<options>no_full_log</options>
<description>Powershell script used "Invoke-command" cmdlet to execute sub script</description>
<mitre>
<id>T1059.001</id>
</mitre>
</rule>
<rule id="91823" level="14">
<if_sid>91822</if_sid>
<field name="win.eventdata.scriptBlockText" type="pcre2">(?i)(ComputerName|Cn)</field>
<options>no_full_log</options>
<description>Powershell script used "Invoke-command" cmdlet to execute code on remote computer</description>
<mitre>
<id>T1059.001</id>
<id>T1021.006</id>
</mitre>
</rule>
So I will suggest that you review your logs from Event Viewer on your Windows endpoint to see more details about this alert.
Applications and services log > Microsoft > Windows > Powershell > Operational
Let me know if you need any further information.