def rule(event):
    if all(
        [
            event.deep_get("Image", default="").endswith("\\GfxDownloadWrapper.exe"),
            any(
                [
                    "http://" in event.deep_get("CommandLine", default=""),
                    "https://" in event.deep_get("CommandLine", default=""),
                ]
            ),
            not "https://gameplayapi.intel.com/" in event.deep_get("CommandLine", default=""),
        ]
    ):
        return True
    return False
