Skip to main content
  1. Video Referee/
  2. Installatie Software/

Installatie Genius Vision Server

De Atletiekunie Video Referee servers draaien op Windows 10 Pro. De volgende stappen zijn ondernomen voor een installatie:

  1. Instellen BIOS
    • Disable Wifi
    • Auto Power On after powerloss
  2. Instellen Windows
    • Aanpassen Computernaam
    Rename-Computer -NewName server2
    
    • Fixed IP + DNS Suffix
    $adapter = (Get-NetAdapter -Name Ethernet).ifindex
    New-NetIPAddress -InterfaceIndex $adapter -IPAddress 172.22.100.12 -PrefixLength 22 -DefaultGateway 172.22.100.1
    Set-DnsClientServerAddress -InterfaceIndex $adapter -ServerAddresses "172.22.100.1"
    Set-DnsClient -InterfaceIndex $adapter -ConnectionSpecificSuffix "video.referee" -RegisterThisConnectionsAddress $false
    
    • Network Category op Private
    Get-NetConnectionProfile | Set-NetConnectionProfile -NetworkCategory Private
    
    • Enable RDP
    Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections" -value 0
    Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
    
    • Enable Ping
    netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow
    
    • Performance Settings
    Set-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects' -name "VisualFXSetting" -value 2
    
    • Crash Control
    Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\CrashControl'-name "CrashDumpEnabled" -value 3
    
    • Set Power Settings
    powercfg.exe -x -standby-timeout-ac 0
    powercfg.exe -x -hibernate-timeout-ac 0
    
    • Uninstall Default Apps
    winget uninstall Disney.37853FC22B2CE_6rarf9sa4v8jt
    winget uninstall Microsoft.549981C3F5F10_8wekyb3d8bbwe
    winget uninstall Microsoft.BingWeather_8wekyb3d8bbwe
    winget uninstall Microsoft.GetHelp_8wekyb3d8bbwe
    winget uninstall Microsoft.Getstarted_8wekyb3d8bbwe
    winget uninstall Microsoft.Microsoft3DViewer_8wekyb3d8bbwe
    winget uninstall Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe
    winget uninstall Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe
    winget uninstall Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe
    winget uninstall Microsoft.MixedReality.Portal_8wekyb3d8bbwe
    winget uninstall Microsoft.MSPaint_8wekyb3d8bbwe
    winget uninstall Microsoft.Office.OneNote_8wekyb3d8bbwe
    winget uninstall Microsoft.People_8wekyb3d8bbwe
    winget uninstall Microsoft.SkypeApp_kzf8qxf38zg5c
    winget uninstall Microsoft.Wallet_8wekyb3d8bbwe
    winget uninstall Microsoft.WindowsAlarms_8wekyb3d8bbwe
    winget uninstall Microsoft.WindowsCamera_8wekyb3d8bbwe
    winget uninstall Microsoft.WindowsFeedbackHub_8wekyb3d8bbwe
    winget uninstall Microsoft.WindowsMaps_8wekyb3d8bbwe
    winget uninstall Microsoft.WindowsSoundRecorder_8wekyb3d8bbwe
    winget uninstall Microsoft.Xbox.TCUI_8wekyb3d8bbwe
    winget uninstall Microsoft.XboxApp_8wekyb3d8bbwe
    winget uninstall Microsoft.XboxGameOverlay_8wekyb3d8bbwe
    winget uninstall Microsoft.XboxGamingOverlay_8wekyb3d8bbwe
    winget uninstall Microsoft.XboxIdentityProvider_8wekyb3d8bbwe
    winget uninstall Microsoft.XboxSpeechToTextOverlay_8wekyb3d8bbwe
    winget uninstall Microsoft.YourPhone_8wekyb3d8bbwe
    winget uninstall Microsoft.ZuneMusic_8wekyb3d8bbwe
    winget uninstall SpotifyAB.SpotifyMusic_zpdnekdrzrea0
    
    • Install Apps
      • Winget
      winget install 7zip.7zip
      winget install VideoLAN.VLC
      
      • Chocolatey
      Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
      choco install winbox -y
      
    • Taskbar
    Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Search -Name SearchBoxTaskbarMode -Value 0
    Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Feeds -Name ShellFeedsTaskbarViewMode -Value 2
    
    • Install Onedrive Manually add vr@atletiekunie.tv Manually add Video Referee Team Site
    • Create Local User
    $Password = ConvertTo-SecureString "1xzczcx4" –AsPlainText –Force
    New-LocalUser -Name viewer -Password $Password -AccountNeverExpires -FullName viewer -PasswordNeverExpires -UserMayNotChangePassword
    Add-LocalGroupMember -Group "Users" -Member "viewer"
    
    • Create SMB Shares
    New-SmbShare -Name "Exports" -Path "C:\Users\ladmin\Atletiekunie\Video Referee - Documents\Exports" -FullAccess 'ladmin' -ChangeAccess 'viewer'
    New-SmbShare -Name "Software" -Path "C:\Users\ladmin\Atletiekunie\Video Referee - Documents\Software" -FullAccess 'ladmin' -ChangeAccess 'viewer'
    
    • Enable Autologon
    $RegPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
    $DefaultUsername = ""
    $DefaultPassword = ""
    Set-ItemProperty $RegPath "AutoAdminLogon" -Value "1" -type String 
    Set-ItemProperty $RegPath "DefaultUsername" -Value "$DefaultUsername" -type String 
    Set-ItemProperty $RegPath "DefaultPassword" -Value "$DefaultPassword" -type String
    
    • Enable Windows Updates for other Products
    • Set Windows Updates maintenance windows
    Set-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings -Name ActiveHoursStart -Value 8
    Set-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings -Name ActiveHoursEnd -Value 23
    

There's no articles to list here yet.