Difference between revisions of "Creating a portable EVE Client"

From EVE University Wiki
Jump to: navigation, search
(Created page with "Having a portable version of your EVE Client with all accounts logged in, ready to play, can give you a time-efficient and bandwith-saving advandage. Whether you are travellin...")
 
(Updating guide for 3/9/24 and running EVE from portable USB 3.0 HDD. Also an entry into the BEAUTIFY contest)
 
(6 intermediate revisions by 5 users not shown)
Line 1: Line 1:
Having a portable version of your EVE Client with all accounts logged in, ready to play, can give you a time-efficient and bandwith-saving advandage. Whether you are travelling or do not want to leave traces of your computer activity, or just like to have an "EVE To Go" on a portable medium of your choice, this tutorial might be for you.
+
Having a portable version of your EVE Client with all accounts logged in and ready to play, can give you a time-efficient and bandwidth-saving advantage. Whether you are traveling or do not want to leave traces of your computer activity, or just like to have an "EVE To Go" on a portable medium of your choice, this tutorial might be for you.
  
 
== Hardware ==
 
== Hardware ==
  
* EVE Online requires 20GB or more so it is strongly reccommended to have at least 32GB free space on your storage device.
+
* EVE Online requires 20GB, often more, so it is strongly recommended to have at least 32GB free space on your storage device.
* It is strongly discouraged to use USB 2.0 interface for playing EVE via pen-drive because load times and overall performance drops to almost unplayable.
+
* It is strongly discouraged to use a USB 2.0 interface for playing EVE via pen drive because load times and overall performance drops to almost unplayable.
* Use 3.0 or better interface for outstanding performance that allows you to play stable 60fps on full details (of course other hardware requirements must be met).
+
* Use a USB 3.0 or better interface for outstanding performance that allows you to play stable 60fps on full details (of course other hardware requirements must be met).
* Proper drivers (graphics card drivers, DirectX) must be installed on the machine. Without them the game will not start.
+
* Proper drivers (graphics card drivers, DirectX 11) must be installed on the machine. Without them, the game will not start.
 +
* System Requirements are published at https://support.eveonline.com/hc/en-us/articles/5885219196828-System-Requirements
  
 
== First installation ==
 
== First installation ==
  
 
Legend (recommended names for easiness of explanation. You can name all things however you like):
 
Legend (recommended names for easiness of explanation. You can name all things however you like):
* C: - your system's drive letter
+
* C: - your computer system's drive letter
 
* X: - your pen-drive's drive letter
 
* X: - your pen-drive's drive letter
 
* .user. - your username
 
* .user. - your username
  
  
# Navigate to your plugged-in disk and create a directory of your choosing to store all your EVE data, for example "EVE Online".
+
# Navigate to your plugged-in disk and create a directory to store all your EVE data, for example, "EVE Online".
# Inside newly-created directory, create folders called "Documents", "Local" and "EVE".
+
# Inside the newly-created directory, create folders called "Documents", "Local" and "EVE".
 
# Open EVELauncher installer from [https://www.eveonline.com/download eveonline.com/download].
 
# Open EVELauncher installer from [https://www.eveonline.com/download eveonline.com/download].
# Select location of installation as your newly created "EVE" folder and install EVE.
+
# Select the installation location as your newly created "EVE" folder and install EVE.
# Do not forget to delete desktop icon and start menu entry in "C:\Users\.user.\AppData\Roaming\Microsoft\Windows\Start Menu\Programs"
+
# Do not forget to delete the desktop shortcut and start the menu entry in "C:\Users\.user.\AppData\Roaming\Microsoft\Windows\Start Menu\Programs"
# When your launcher is downloading data, make sure to set SharedCache folder inside "X:\EVE Online\EVE\EVESharedCache" folder.
+
# When your launcher is downloading data, make sure to set the SharedCache folder inside "X:\EVE Online\EVE\EVESharedCache" folder.
 +
# Navigate to "C:\Users\.user.\AppData\Local\eve-online". This folder is hidden, and can be found by Win-R and entering the command "%appdata%". The "Local" folders can be found by navigating to "AppData" and opening "Local". The "eve-online" folder contains the actual EVE Launcher application. Move the entire folder from "C:\Users\steph\AppData\Local\eve-online" to "X:\EVE Online"
 +
# This step is optional but can make a difference in terms of game client performance. In the EVE Launcher, selecting "Download full game client" will have the computer download the entire game library into the drive. This will result in better game performance, as the client will not be downloading game files while you are playing.  
 
# Log into all accounts you want to save for your portable client.
 
# Log into all accounts you want to save for your portable client.
# After all data is downloaded, exit EVE Launcher (make sure it was not just minimized into tray).
+
# After all data is downloaded, exit EVE Launcher (make sure it was not just minimized into the system tray).
  
Now, there are two different approaches you can choose. One is manual, second more automated but requires a minimum knowledge of Windows
+
Now, there are two different approaches you can choose. One is manual, and the second is more automated but requires a minimum knowledge of Windows
  
 
=== Manual ===
 
=== Manual ===
Navigate to "C:\Users\.user.\Documents" and cut folder named "EVE" and paste it into "X:\EVE Online\Documents"
+
Navigate to "C:\Users\.user.\Documents" and cut the folder named "EVE" and paste it into "X:\EVE Online\Documents"
Navigate to "C:\Users\.user.\AppData\Local" (this is a hidden folder) and cut folder named "CCP" adn paste it to "X:\EVE Online\Local"
+
Navigate to "C:\Users\.user.\AppData\Local" (this is a hidden folder) and cut the folder named "CCP" and paste it to "X:\EVE Online\Local"
  
  
=== Automatic (WARNING, ONLY FOR PEOPLE WHO UNDERSTAND XCOPY AND RD COMMANDS) ===
+
=== Automatic ===
# In "X:\EVE Online" create a text file named "startup.txt" and paste the code below:<br>xcopy /E %userprofile%\Documents\EVE Documents\EVE  /Y<br>xcopy /E %userprofile%\AppData\Local\CCP Local\CCP  /Y<br><br>rd /S /Q %userprofile%\Documents\EVE<br>rd /S /Q %userprofile%\AppData\Local\CCP
+
WARNING, ONLY FOR PEOPLE WHO UNDERSTAND XCOPY AND RD COMMANDS
# After saving the file, change extention from ".txt" to ".bat".
+
# In "X:\EVE Online" create a text file named "clean.txt" and paste the code below:<br>xcopy /E "%userprofile%\Documents\EVE" "Documents\EVE" /Y<br>xcopy /E "%userprofile%\AppData\Local\CCP" "Local\CCP" /Y<br><br>rd /S /Q "%userprofile%\Documents\EVE"<br>rd /S /Q "%userprofile%\AppData\Local\CCP"
 +
# After saving the file, change the extension from ".txt" to ".bat". This is done by saving the .txt file as "clean.bat" in the Windows dialogue with the file type set to "All Files."
 
# Run the script.
 
# Run the script.
  
Line 40: Line 44:
 
Voila! you have portable EVE Online!
 
Voila! you have portable EVE Online!
  
== How to launch the game on a new computer ==
+
== Launching the game on a new computer ==
 +
 
 +
# Plug in your portable EVE to a new device
 +
# Make sure the drive letter is "X:". If not, change it in Win+X -> "Disk Management"
 +
 
 +
Now, there are two different approaches you can choose. One is manual, and the second is more automated but requires a minimum knowledge of Windows
 +
 
 +
=== Manual ===
 +
Navigate to "X:\EVE Online\Documents" and copy the folder named "EVE" and paste it into "C:\Users\.user.\Documents"
 +
Navigate to "X:\EVE Online\Local" and copy the folder named "CCP" and paste it to "C:\Users\.user.\AppData\Local" (this is a hidden folder)
 +
 
 +
 
 +
=== Automatic ===
 +
WARNING, ONLY FOR PEOPLE WHO UNDERSTAND XCOPY AND RD COMMANDS
 +
# In "X:\EVE Online" create a text file named "startup.txt" and paste the code below:
 +
xcopy /E "Documents" "%userprofile%\Documents\" /Y<br>xcopy /E "Local" "%userprofile%\AppData\Local\" /Y
 +
# After saving the file, change the extension from ".txt" to ".bat".
 +
# Run the script.
 +
 
 +
Now you can launch the game and play instantly with all your accounts logged in and all user settings saved.
 +
 
 +
== Cleaning the computer after playing ==
 +
 
 +
# Exit the game and close the launcher(make sure it does not still run in the system tray)
 +
# Run "clean.bat"
 +
# If you want to clear more traces of EVE running, navigate to "C:\Users\.user.\AppData\Roaming\Microsoft\Windows\Recent" and remove all EVE-related shortcuts.
 +
# Disconnect your device.
 +
 
 +
[[Category:Guides]]
 +
[[Category:Applications]]

Latest revision as of 18:07, 9 March 2024

Having a portable version of your EVE Client with all accounts logged in and ready to play, can give you a time-efficient and bandwidth-saving advantage. Whether you are traveling or do not want to leave traces of your computer activity, or just like to have an "EVE To Go" on a portable medium of your choice, this tutorial might be for you.

Hardware

  • EVE Online requires 20GB, often more, so it is strongly recommended to have at least 32GB free space on your storage device.
  • It is strongly discouraged to use a USB 2.0 interface for playing EVE via pen drive because load times and overall performance drops to almost unplayable.
  • Use a USB 3.0 or better interface for outstanding performance that allows you to play stable 60fps on full details (of course other hardware requirements must be met).
  • Proper drivers (graphics card drivers, DirectX 11) must be installed on the machine. Without them, the game will not start.
  • System Requirements are published at https://support.eveonline.com/hc/en-us/articles/5885219196828-System-Requirements

First installation

Legend (recommended names for easiness of explanation. You can name all things however you like):

  • C: - your computer system's drive letter
  • X: - your pen-drive's drive letter
  • .user. - your username


  1. Navigate to your plugged-in disk and create a directory to store all your EVE data, for example, "EVE Online".
  2. Inside the newly-created directory, create folders called "Documents", "Local" and "EVE".
  3. Open EVELauncher installer from eveonline.com/download.
  4. Select the installation location as your newly created "EVE" folder and install EVE.
  5. Do not forget to delete the desktop shortcut and start the menu entry in "C:\Users\.user.\AppData\Roaming\Microsoft\Windows\Start Menu\Programs"
  6. When your launcher is downloading data, make sure to set the SharedCache folder inside "X:\EVE Online\EVE\EVESharedCache" folder.
  7. Navigate to "C:\Users\.user.\AppData\Local\eve-online". This folder is hidden, and can be found by Win-R and entering the command "%appdata%". The "Local" folders can be found by navigating to "AppData" and opening "Local". The "eve-online" folder contains the actual EVE Launcher application. Move the entire folder from "C:\Users\steph\AppData\Local\eve-online" to "X:\EVE Online"
  8. This step is optional but can make a difference in terms of game client performance. In the EVE Launcher, selecting "Download full game client" will have the computer download the entire game library into the drive. This will result in better game performance, as the client will not be downloading game files while you are playing.
  9. Log into all accounts you want to save for your portable client.
  10. After all data is downloaded, exit EVE Launcher (make sure it was not just minimized into the system tray).

Now, there are two different approaches you can choose. One is manual, and the second is more automated but requires a minimum knowledge of Windows

Manual

Navigate to "C:\Users\.user.\Documents" and cut the folder named "EVE" and paste it into "X:\EVE Online\Documents" Navigate to "C:\Users\.user.\AppData\Local" (this is a hidden folder) and cut the folder named "CCP" and paste it to "X:\EVE Online\Local"


Automatic

WARNING, ONLY FOR PEOPLE WHO UNDERSTAND XCOPY AND RD COMMANDS

  1. In "X:\EVE Online" create a text file named "clean.txt" and paste the code below:
    xcopy /E "%userprofile%\Documents\EVE" "Documents\EVE" /Y
    xcopy /E "%userprofile%\AppData\Local\CCP" "Local\CCP" /Y

    rd /S /Q "%userprofile%\Documents\EVE"
    rd /S /Q "%userprofile%\AppData\Local\CCP"
  2. After saving the file, change the extension from ".txt" to ".bat". This is done by saving the .txt file as "clean.bat" in the Windows dialogue with the file type set to "All Files."
  3. Run the script.


Voila! you have portable EVE Online!

Launching the game on a new computer

  1. Plug in your portable EVE to a new device
  2. Make sure the drive letter is "X:". If not, change it in Win+X -> "Disk Management"

Now, there are two different approaches you can choose. One is manual, and the second is more automated but requires a minimum knowledge of Windows

Manual

Navigate to "X:\EVE Online\Documents" and copy the folder named "EVE" and paste it into "C:\Users\.user.\Documents" Navigate to "X:\EVE Online\Local" and copy the folder named "CCP" and paste it to "C:\Users\.user.\AppData\Local" (this is a hidden folder)


Automatic

WARNING, ONLY FOR PEOPLE WHO UNDERSTAND XCOPY AND RD COMMANDS

  1. In "X:\EVE Online" create a text file named "startup.txt" and paste the code below:

xcopy /E "Documents" "%userprofile%\Documents\" /Y
xcopy /E "Local" "%userprofile%\AppData\Local\" /Y

  1. After saving the file, change the extension from ".txt" to ".bat".
  2. Run the script.

Now you can launch the game and play instantly with all your accounts logged in and all user settings saved.

Cleaning the computer after playing

  1. Exit the game and close the launcher(make sure it does not still run in the system tray)
  2. Run "clean.bat"
  3. If you want to clear more traces of EVE running, navigate to "C:\Users\.user.\AppData\Roaming\Microsoft\Windows\Recent" and remove all EVE-related shortcuts.
  4. Disconnect your device.