Skip to content

Instantly share code, notes, and snippets.

@0x59R11
Last active October 26, 2023 10:41
Show Gist options
  • Save 0x59R11/b335037d623fbf7138c21fdf7b4eed8b to your computer and use it in GitHub Desktop.
Save 0x59R11/b335037d623fbf7138c21fdf7b4eed8b to your computer and use it in GitHub Desktop.
UPDATE Unturned local server with one command

UPDATE Unturned local server with one command

On Linux

  1. Run
steamcmd +login anonymous +app_update 1110390 validate +quit
  1. Wait for completion, Done!

On Windows

  1. Open the directory where Steamcmd is installed
  2. Hold [Left-Shift] key and do a right click on the empty space in the folder.
  3. Click on 'Open PowerShell window here' option
  4. Past the command: (then click [Enter] key)
./steamcmd.exe +login anonymous +app_update 1110390 validate +quit
  1. Wait for completion, Done!

But that's a long time, isn't it? Let's create a shortcut for a quick update, in two mouse clicks.

Creating shortcut

  1. In the Steamcmd directory, find the steamcmd.exe
  2. Do right click on it, and click on Create shortcut option
  3. Open the properties of the created shortcut, right click, select the Properties option.
  4. In the Target field, we have to append run arguments. You should end up like this:
"C:\Program Files (x86)\Steamcmd\steamcmd.exe" +login anonymous +app_update 1110390 +quit
  1. Then press Apply and Ok
  2. After running this shortcut, it will automatically update the server and close itself.
    (You can do whatever you want with this shortcut: move it, clone it, etc.)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment