def rule(event):
    if "Enable-PSRemoting " in event.deep_get("ScriptBlockText", default=""):
        return True
    return False
