def rule(event):
    if "Install-TransportAgent" in event.deep_get("CommandLine", default=""):
        return True
    return False
