Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Creating a portable EVE Client: Difference between revisions

From EVE University Wiki
Small visual and script changes
Line 32: Line 32:




=== Automatic (WARNING, ONLY FOR PEOPLE WHO UNDERSTAND XCOPY AND RD COMMANDS) ===
=== Automatic ===
# 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
WARNING, ONLY FOR PEOPLE WHO UNDERSTAND XCOPY AND RD COMMANDS
# 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 extention from ".txt" to ".bat".
# After saving the file, change extention from ".txt" to ".bat".
# Run the script.
# Run the script.
Line 52: Line 53:




=== 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:xcopy /E Documents %userprofile%\Documents\ /Y<br>xcopy /E Local %userprofile%\AppData\Local\ /Y
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 extention from ".txt" to ".bat".
# After saving the file, change extention from ".txt" to ".bat".
# Run the script.
# Run the script.