Nightfall Documentation
  • Data Detection and Response
  • Posture Management
  • Data Exfiltration Prevention
  • Data Encryption
  • Developer APIs
  • Data Classification and Discovery
  • Nightfall Exfiltration
  • What is Data Exfiltration
  • Nightfall Detection Platform
    • Nightfall Detection Platform
  • Exfiltration Prevention for Google Drive
    • Installing Nightfall for Google Drive
    • Configuring Integration Alerts
    • Configuring Google Drive Policies
      • Google Drive App Selection
      • Scope
      • Trigger
      • Automated Actions
      • Creating Policy
    • Remediation for Google Drive Exfiltration
  • Exfiltration Prevention for Endpoint
    • Endpoint Exfiltration Prevention
    • Install Nightfall AI Agent for MAC OS
      • Manual Installation
      • Nightfall Agent Deployment with Kandji MDM
      • Nightfall Agent Deployment with Rippling MDM
      • Nightfall Agent Deployment with JAMF MDM
    • Install Nightfall AI Agent for Windows OS
      • Manual Installation
      • Nightfall Windows Agent Deployment: Rippling MDM
      • Nightfall Windows Agent Deployment: Generic MSI Deployment
    • Configuring Integration Alerts
    • Configuring Policies
      • MAC/Windows App Selection
      • Scope
      • Trigger
      • Advanced Settings
        • Admin Alerting
        • Automated Actions
        • End-User Notifications
      • Creating Policy
      • Remediation for MAC OS Policies
      • FAQs
      • Remediation for Windows OS Policies
  • Exfiltration Prevention for Salesforce
    • Nightfall Exfiltration for Salesforce
    • Installing Nightfall Exfiltration for Salesforce
    • Upgrading Nightfall DLP
    • Configuring Integration Alerts
    • Configuring Salesforce Exfiltration Policies
      • Salesforce App Selection
      • Scope
      • Trigger
      • Advanced Settings
      • Creating Policy
      • Remediation for Salesforce Exfiltration
Powered by GitBook
On this page
  • Prerequisites
  • Installation

Was this helpful?

Export as PDF
  1. Exfiltration Prevention for Endpoint
  2. Install Nightfall AI Agent for Windows OS

Nightfall Windows Agent Deployment: Generic MSI Deployment

Learn how to install the Nightfall agent on Microsoft Windows OS using the Rippling MSI payload.

Prerequisites

  1. You have a method to execute arbitrary commands remotely as Administrator on all installation targets.

  2. On your Nightfall console, navigate to https://app.nightfall.ai/endpoint and click the Download Package button on the top right corner of the page. Click Download Package for Windows. A .msiextension file is downloaded.

  3. You have noted the API key and Company ID values from the command present just before the Download Package for Windows button.

  4. You have hosted the downloaded .msiextension file on an HTTPS server which is reachable by all installation targets.

Installation

  1. Execute the following Powershell script on all target machines replacing $ApiKey and $CompanyId with the values obtained in the third prerequisite step:

# Define installation parameters
$ApiKey = ""
$CompanyId = ""

$InstallerUrl = "https://cdn.nightfall.ai/downloads/agent/windows/NightfallAgent-0.0.1.msi"
$InstallerPath = "$env:TEMP\NightfallAgent.msi"

# Download the MSI installer
Invoke-WebRequest -Uri $InstallerUrl -OutFile $InstallerPath

# Execute the installer with msiexec
msiexec /i "$InstallerPath" API_KEY="$ApiKey" COMPANY_ID="$CompanyId" /qn

PreviousNightfall Windows Agent Deployment: Rippling MDMNextConfiguring Integration Alerts

Last updated 15 days ago

Was this helpful?