Anonymous edits have been disabled on the wiki. If you want to contribute please login or create an account.

Glossary:Command line arguments

From PCGamingWiki, the wiki about fixing PC games
Revision as of 16:28, 18 July 2018 by Aemony (talk | contribs) (Removed duplicate info)

Key points

Commonly used to force windowed modes, custom specific resolutions or certain hidden settings.

General information

Command-line argument at Wikipedia

A command line argument/parameter/option is additional data provided to an application at launch that might affect how the application behaves. They usually follow at the end of a launch command, after the name of the executable of the application that is being run. For example, while many Windows users might be familiar with ipconfig /all or ping google.com for network diagnostics, those "commands" are actually made up of the application to run as well as the appropriate command-line argument that affects how the application runs. The full launch command that are used behind-the-scene in those examples are actually:

"C:\Windows\System32\ipconfig.exe" /all
"C:\Windows\System32\PING.EXE" google.com

Many games and software exposes certain parameters and options for command-line use to allow developers or users to configure the application in a certain way directly at launch, without requiring what might otherwise be rather cumbersome ways to do the same thing. This is often used to enable or configure settings not exposed through the built-in configuration menu of the application. While many command line arguments might be the same across multiple games, these are often the result of using the same engine or similar internal naming schemes among the developers. An application only supports the command line arguments it have been developed to support, and ignores those it does not recognize how to handle. Supported command line arguments must either be revealed by the developer or found by users by data mining the application. One such way of finding supported command lines involves using Process Explorer to extract all found strings of the executable and then going through those to find and test what might be the a specified argument, parameter, or option.

Command line arguments that are often supported by games includes:

  • -fullscreen, -windowed, or a variation thereof to specify display mode to use.
  • -resolution, -width or -height to specify resolution to use.
  • -console to enable the built-in console if the application have one.


Windows

Follow the instructions for the desired environment.

Desktop shortcuts

Desktop Shortcut Example.png
For generic Windows desktop shortcuts.
Instructions[1]
  1. Create a new shortcut, then Right Click on the shortcut and choose Properties.
  2. Under the Shortcut tab, find the Target field.
  3. Write any arguments after the quotes, then click OK.
"<path-to-game>\game.exe" -command

Notes

Use the Arrow Keys or End to get the cursor at the end of the path.
Push Space if more spaces are required, right after the quotes.

Steam

Instructions[2]
  1. Open the Library, then Right Click on the desired game and select Properties.
  2. Click on the Set Launch Options button located at the bottom.
  3. Write any arguments in the text field, then click OK.

GOG Galaxy

Instructions[3]
  1. Right Click on the game's title and select Settings.
  2. Fill the checkbox next to Add command line arguments.
  3. Write any arguments in the text box.

Origin

Instructions[4]
  1. Open the Library, then Right Click on the game's box art and select Game Properties.
  2. Select Advanced Launch Options.
  3. Write any arguments in the field box, then click Save.

Uplay

Instructions[5]
  1. Open Games tab on the top-left menu, then select a game by clicking on it.
  2. Select Properties on the menu below Play button.
  3. Click on Add launch arguments button at the bottom of the page.
  4. Write any arguments in the text field, then click Save button.

Battle.net

Instructions[5]
  1. Open Games tab on the top-left menu, then select a game by clicking on it.
  2. Select Options on the menu below the game's title.
  3. Select Game Settings on the drop down menu.
  4. Tick the Additional command line arguments radio button.
  5. Write any arguments in the text field, then click Done button at the bottom of the page.


References

  1. How to Add a Command Line Parameter to a Windows Shortcut
  2. Verified by User:Hawaii_Beach on 2017-01-09
  3. Verified by User:Orzelek303 on 2018-02-01
  4. Verified by User:Blackbird on 2016-11-02
  5. 5.0 5.1 Verified by User:Dr4Wm4N on 2016-12-15