Some Windows game servers need supporting runtime packages before they start correctly. Common examples are Microsoft Visual C++ Redistributables and DirectX runtime files.

Chocolatey can make common Windows runtime installs faster, but you should still follow the game documentation when a game lists specific dependencies.

  1. Connect to the Windows VPS with Remote Desktop.
  2. Open PowerShell as Administrator.
  3. Install Chocolatey using the current command from the official Chocolatey setup page: Chocolatey setup documentation.
  4. Close and reopen PowerShell, then check Chocolatey works:
    choco -v
  5. Install the common Visual C++ Redistributables and DirectX runtime packages:
    choco install vcredist-all -y
    choco install directx -y

    Windows VPS PowerShell showing Chocolatey installing Visual C++ Redistributables and DirectX

  6. Restart the VPS after installing runtime packages.
  7. Start the game server again and check its console or log output.

If a game provides its own dependency installer, use the game's installer or documentation first. Do not install random runtime bundles from unofficial download sites.

  • 0 أعضاء وجدوا هذه المقالة مفيدة
هل كانت المقالة مفيدة ؟

مقالات مشابهة

Installing SteamCMD on your Windows VPS

SteamCMD is Valve's command-line tool for downloading and updating dedicated server files...

How to change your Windows VPS Administrator password

You can change the main Windows VPS login password from the VPS control panel. This is useful if...

How to open Windows Firewall ports on your VPS

Windows Firewall controls which inbound connections are allowed into your Windows VPS. If you...

How to open and use PowerShell on a Windows VPS

PowerShell is the main command-line tool for managing a Windows VPS. You can use it to install...

How to connect to a Windows VPS with Remote Desktop

Remote Desktop is the normal way to manage a Windows VPS. It opens a desktop session so you can...