Computle Docs
  • Welcome to Computle Docs
  • Onboarding
    • Computle - End User Guide
      • iPad/Tablet
      • Network Requirements
      • Unattended Install
      • Hardware
      • End User Guide (Canary Release)
    • Administrator Guide
      • Computle Gateway for SMEs
      • Computle Device
      • Machine Portal
      • Machine Assignment
      • Billing Portal
      • Service Status
      • Virtual Machine Licensing and User Identification Requirements (Windows 11 Professional)
    • Migrating to Computle
      • GPU Analyser
  • Troubleshooting
    • Streaming Agent
      • No Username or Password Requested
      • Resolution and Quality
      • Unable To Connect
      • Unable To Login
      • DCV Server Certificate Warning
      • DCV Server License Warning
      • USB Passthrough
      • WebAuthn Redirection/FIDO Keys
    • Component Reinstallation
      • Reinstall DCV Server
      • Reinstall NVIDIA
  • Service Delivery
    • Service Delivery Architecture
      • Machine Plane
      • Telemetry and Monitoring at Computle
      • Computle Gateway
      • Network Plane
      • IDAM Providers
      • Storage Providers
      • Computle Tunnel
      • Computle Broker
    • Service Operations
      • Shared Responsibility Model
      • Security at Computle
      • Maintenance of Computle Infrastructure
  • Corporate Governance
    • Standards
      • ISO 27001 Security Controls
      • Vulnerability Disclosure Programme
    • Computle Ethos
      • Our Approach to Engineering
    • Carbon Neutrality
Powered by GitBook
On this page
  1. Troubleshooting
  2. Component Reinstallation

Reinstall NVIDIA

Prerequisite

Ensure that Remote Desktop is enabled and that you can connect to the machine.

Enable Remote Desktop by navigating to Settings > Remote Desktop Settings


Refresh NVIDIA

This script installs NVIDIA RTX Driver Release 550 R550 U8 (552.86). This is the latest version as of August 1st 2024.

  1. VIa Remote Desktop, connect to your Computle machine.

  2. As an Administrator, launch PowerShell ISE.

  3. Paste the following code into the PowerShell script pane.

$nvidiaFileUrl = "https://uk.download.nvidia.com/Windows/Quadro_Certified/552.86/552.86-quadro-rtx-desktop-notebook-win10-win11-64bit-international-dch-whql.exe"
$nvidiaSavePath = "C:\Windows\Computle"
$nvidiaInstallerPath = "$nvidiaSavePath\nvidia_installer.exe"
$nvidiaExtractPath = "C:\NVIDIA\DisplayDriver\552.86\Win11_Win10-DCH_64\International"
$nvidiaLogFilePath = "$nvidiaSavePath\nvidia_install_log.txt"

if (-not (Test-Path -Path $nvidiaSavePath)) {
    New-Item -ItemType Directory -Path $nvidiaSavePath -Force
}

$webClient = New-Object System.Net.WebClient

try {
    $webClient.DownloadFile($nvidiaFileUrl, $nvidiaInstallerPath)
} catch {
    Write-Error "An error occurred during file download: $_"
} finally {
    $webClient.Dispose()
}

Write-Output "NVIDIA installer downloaded to $nvidiaInstallerPath" | Out-File -FilePath $nvidiaLogFilePath -Append

Start-Process -FilePath $nvidiaInstallerPath -ArgumentList "-s", "-noreboot", "-noeula" -Wait -NoNewWindow | Out-Null

if (Test-Path -Path $nvidiaExtractPath) {
    Write-Output "NVIDIA installer extracted to $nvidiaExtractPath" | Out-File -FilePath $nvidiaLogFilePath -Append
} else {
    Write-Error "NVIDIA installer extraction failed."
}

$extractedFiles = Get-ChildItem -Path $nvidiaExtractPath -Recurse
$extractedFiles | ForEach-Object { Write-Output $_.FullName } | Out-File -FilePath $nvidiaLogFilePath -Append

$nvidiaSetupExePath = Get-ChildItem -Path $nvidiaExtractPath -Filter "setup.exe" -Recurse | Select-Object -First 1 -ExpandProperty FullName

if ($nvidiaSetupExePath) {
    Write-Output "Setup.exe found at $nvidiaSetupExePath" | Out-File -FilePath $nvidiaLogFilePath -Append
} else {
    Write-Error "Setup.exe not found in the extracted folder."
}

if ($nvidiaSetupExePath) {
    Start-Process -FilePath $nvidiaSetupExePath -ArgumentList "/s" -Wait -NoNewWindow | Out-Null
    Write-Output "NVIDIA driver installed successfully." | Out-File -FilePath $nvidiaLogFilePath -Append
} else {
    Write-Error "Setup.exe not found in the extracted folder."
}
  1. Click Run or F5 to start the process.

PreviousReinstall DCV ServerNextService Delivery Architecture

Last updated 9 months ago