Network Installation - UNC Path Handling
Network kurulum - UNC path ve network share işlemleri.
Network installation, MSI dosyasının merkezi bir sunucuda saklanıp tüm istemcilerin buradan kurulum yapması yöntemidir.
UNC Path Format
- \\server\share\folder\rhino.msi
- DNS name: \\fileserver.firma.com\apps\rhino.msi
- IP address: \\192.168.1.100\apps\rhino.msi (DNS önerilir)
PowerShell UNC Handling
- $uncPath = '\\server\apps\rhino.msi'
- Test-Path $uncPath -ErrorAction Stop
- if (-not (Test-Path $uncPath)) { Write-Error 'MSI bulunamadı' }
- Start-Process msiexec -ArgumentList "/i `"$uncPath`" /quiet"
Network Troubleshooting
- Path not found: DNS çözümleniyor mu?
- Access denied: Permissions kontrol et
- Slow deployment: Network bandwidth
- Credential issues: Run as service account