def rule(event):
    if all(
        [
            "--install" in event.deep_get("CommandLine", default=""),
            "--start-with-win" in event.deep_get("CommandLine", default=""),
            "--silent" in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
