Windows updates keep the VPS secure, but they can also require a restart. For game servers, plan update restarts during quiet periods so players are not disconnected unexpectedly.

Take a VPS backup before large update batches on important servers: How to back up and restore your VPS.

 

Check for updates

  1. Connect to the VPS with Remote Desktop.
  2. Open Settings.
  3. Go to Windows Update.
  4. Click Check for updates.
  5. Install available updates.

 

Check update history with PowerShell

Open PowerShell as Administrator and run:

Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 10

Windows VPS PowerShell showing recent installed Windows updates

 

Before restarting a game VPS

If the VPS runs a game server, save or stop the game cleanly before rebooting. For scheduled communities, announce the maintenance window first so players are not disconnected without warning.

If Windows Update is stuck for a long time, check Task Manager and the Windows Update screen before forcing a reboot.

 

Restart after updates

  1. Stop game servers or important applications cleanly.
  2. Restart the VPS if Windows says a restart is required.
  3. Log back in after the reboot.
  4. Start the services again and check they work.

 

Check last boot time

Get-CimInstance Win32_OperatingSystem | Select-Object LastBootUpTime

Avoid starting large game updates and Windows updates at the same time unless you have already taken a backup.

  • 0 Utilizadores acharam útil
Esta resposta foi útil?

Artigos Relacionados

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...