İçeriğe geç
Rhino Türkiye

Wiki

Post-install Verification - Registry Check

Kurulum sonrası doğrulama - Registry ve file varlık kontrolü.

Post-install verification, kurulumun başarılı olduğunu doğrular. Registry key'leri ve dosya varlığını kontrol eder.

Registry Verification

  • $regPath = 'HKLM:\Software\McNeel\Rhinoceros\8.0\Install'
  • if (Test-Path $regPath) { Write-Host 'Rhino başarıyla kuruldu' }
  • else { Write-Error 'Kurulum başarısız'; exit 1 }

File Verification

  • $rhinoExe = 'C:\Program Files\Rhino 8\System\Rhino.exe'
  • if (Test-Path $rhinoExe) { Write-Host 'Rhino.exe bulundu' }
  • Get-ItemProperty $rhinoExe | Select-Object VersionInfo

License Verification

  • Check Zoo connection
  • Validate license checkout
  • Test Rhino startup (automation)
  • Report success/failure