def rule(event):
    if all(
        [
            "esentutl" in event.deep_get("CommandLine", default=""),
            " /p" in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
