def rule(event):
    if all(
        [
            "\\Microsoft\\Office\\" in event.deep_get("CommandLine", default=""),
            "\\Excel\\Security" in event.deep_get("CommandLine", default=""),
            "PythonFunctionWarnings" in event.deep_get("CommandLine", default=""),
            " 0" in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
