| Pages: [1] :: one page |
| Author |
Thread Statistics | Show CCP posts - 0 post(s) |

Eewec Ourbyni
Caldari
|
Posted - 2007.05.28 17:28:00 -
[1]
Edited by: Eewec Ourbyni on 28/05/2007 17:29:06 Edited by: Eewec Ourbyni on 28/05/2007 17:28:04 Thankyou zofu for pointing this fix out to me.
I'm aware of the runtime switch, but tbh it doesn't move all the settings, this does. Not only that, but this allows you to stick them anywhere you like and have as many settings setups as you want without them interfering with each other.
Here we have a step by step guide on how to keep your settings seperate even after revelations 2.0 on WinXP... I'm told the directory names are slightly different on Vista.
1) Make a directory such as "E:\EVE" as the base (from now on refered to as <BASE>) 2) Make a directory for each server you use in that directory... for me I have a directory called "<BASE>\Sisi" and "<BASE>\TQ" 3) In each of these directories make a directory for each user/character that uses that server .. so... "<BASE>\Sisi\<Character>" so I have for example "E:\EVE\Sisi\Eewec" 4) Make directories "Local Settings" and "My Documents" in "<BASE>\Sisi\<Character>" 5) Make directory "Application Data" in "<BASE>\Sisi\<Character>\Local Settings"
Personally I did all the above for a generic character then copied the tree for each further character I wanted to add and simply renamed the relevant directory.
6) For each of these you then need to make a bat file. I made the names kinda obvious like "EVESisiEewec.bat". In this file (you can use notepad to edit/make these) you need two lines.
I have the directory "E:\EVE\Sisi\Eewec" for one of my chars and have my sisi installation at "C:\Program Files\CCP\EVE Sisi" so the bat file contains:
Quote: set USERPROFILE=E:\EVE\Sisi\Eewec start "evesisi" "C:\Program Files\CCP\EVE Sisi\eve.exe"
I'm not entirely sure what that first arguement in the second line is for... but don't use the same name as the bat file or it loops... or at least it does on my system.. and if I leave it out I just get a dos box.
Make the relevant changes for each of your chars for each server you want to use. This also now means you only need one copy of the installation for each server you use.
If you don't make the sub-directories EVE just simply fails to run.
I noticed when I did this that the current sisi build makes alot of redundant directories.
Hope this helps.
E.
This is a sig...
-- You think this guys post is nuts.... you should see his bio --
... good, ain't it! |

Ader
|
Posted - 2007.05.28 17:45:00 -
[2]
A fast way to create the folders.
put this in a file.. "create.bat" and run the file.
Quote: @ECHO OFF ECHO This will create the folders Local Settings My Documents and Application data.
MKDIR "C:\Games\Eve-sisi\Local Settings" MKDIR "C:\Games\Eve-sisi\My Documents" MKDIR "C:\Games\Eve-sisi\Local Settings\Application data"
ECHO It's done... PAUSE
And of course, cange the path if you want it to be something else. 
|

Eewec Ourbyni
Caldari
|
Posted - 2007.05.29 07:36:00 -
[3]
Edited by: Eewec Ourbyni on 29/05/2007 07:35:59 P.S. Don't stick these extra directories in the "program files" directory or a sub folder of it... stick it on you game drive somewhere, but not there or you'll be defeating the whole point.... EDIT: and it will still need admin rights if you do.
Anyone got this working on win2k and if so, did you need to do anything else?
This is a sig...
-- You think this guys post is nuts.... you should see his bio --
... good, ain't it! |

bundy bear
|
Posted - 2007.06.08 13:45:00 -
[4]
Can anyone dumb this down for me please?
|

Tonto Auri
Center for Advanced Studies
|
Posted - 2007.06.15 12:31:00 -
[5]
It easy to understand if You know how You may determine Your profile directory.
All You need - is to substitute %USERPROFILE% for each separate client. You not really need to create separate folder for each accout You use...
Ok, here we go:
Quote: @echo off if "!%1" == "!" goto help
SET HOME=%1 mkdir "%HOME%\Local Settings" > nul mkdir "%HOME%\Local Settings\Application Data" > nul
SET USERPROFILE=%HOME% SET HOMEDRIVE=%HOME:~0,2% SET HOMEPATH=%HOME:~2%
start "EVE" eve.exe exit
:help
echo. echo Use this .bat file to start different EVE clients. echo. echo Place it to EVE client folder. echo Give full path to server configuration root directory as first parameter. echo. echo Example: echo. echo %0 C:\Games\EVE\SiSi echo. pause exit
-- . |

woodman az
Gallente United Space Aillance USA
|
Posted - 2007.06.16 04:14:00 -
[6]

Huh... WHAT!?! Promises made > Promises Kept IT IS HAPPENING AGAIN...TRUST NO ONE
|

Valandril
Caldari Resurrection R i s e
|
Posted - 2007.06.20 00:42:00 -
[7]
CCP hire this guy lol :D ---
|

One Nutter
the little rats
|
Posted - 2007.06.20 01:42:00 -
[8]
Edited by: One Nutter on 20/06/2007 01:48:33
Originally by: Eewec Ourbyni Edited by: Eewec Ourbyni on 28/05/2007 18:45:59 Thankyou zofu for pointing this fix out to me.
I'm aware of the runtime switch, but tbh it doesn't move all the settings, this does. Not only that, but this allows you to stick them anywhere you like and have as many settings setups as you want without them interfering with each other.
Here we have a step by step guide on how to keep your settings seperate even after revelations 2.0 on WinXP... I'm told the directory names are slightly different on Vista.
1) Make a directory such as "E:\EVE" as the base (from now on refered to as <BASE>) 2) Make a directory for each server you use in that directory... for me I have a directory called "<BASE>\Sisi" and "<BASE>\TQ" 3) In each of these directories make a directory for each user/character that uses that server .. so... "<BASE>\<SERVER>\<Character>" so I have for example "E:\EVE\Sisi\Eewec" and "E:\EVE\TQ\Eewec" 4) Make directories "Local Settings" and "My Documents" in "<BASE>\<SERVER>\<Character>" 5) Make directory "Application Data" in "<BASE>\<SERVER>\<Character>\Local Settings"
Personally I did all the above for a generic character then copied the tree for each further character I wanted to add and simply renamed the relevant directories.
6) For each of these you then need to make a bat file. I made the names kinda obvious like "EVESisiEewec.bat". In this file (you can use notepad to edit/make these) you need two lines.
I have the directory "E:\EVE\Sisi\Eewec" for one of my chars and have my sisi installation at "C:\Program Files\CCP\EVE Sisi" so the bat file contains:
Quote: set USERPROFILE=E:\EVE\Sisi\Eewec start "evesisi" "C:\Program Files\CCP\EVE Sisi\eve.exe"
I'm not entirely sure what that first arguement in the second line is for... but don't use the same name as the bat file or it loops... or at least it does on my system.. and if I leave it out I just get a dos box.
Make the relevant changes for each of your chars for each server you want to use. This also now means you only need one copy of the installation for each server you use.
If you don't make the sub-directories EVE just simply fails to run.
I noticed when I did this that the current sisi build makes alot of redundant directories.
Hope this helps.
E.
or the easyer way is this on desk top right click ur eve icon click on properties and where its got target at end of the "C:\Program Files\CCP\eve\eve.exe" put this at the end--> /end /LUA:OFF" do that on all ur icons 4 ur diff eve progs and thy will work the old way :)
|

One Nutter
the little rats
|
Posted - 2007.06.20 02:47:00 -
[9]
.
|

Maglorre
|
Posted - 2007.06.20 07:09:00 -
[10]
Originally by: Eewec Ourbyni
Quote: set USERPROFILE=E:\EVE\Sisi\Eewec start "evesisi" "C:\Program Files\CCP\EVE Sisi\eve.exe"
I'm not entirely sure what that first arguement in the second line is for...
Quote:
START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED] [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL] [/WAIT] [/B] [command/program] [parameters]
"title" Title to display in window title bar.
Going by the amount of whining on other threads I might have to spend a bit of time creating batch files when I patch tonight...
|

Drago Jr
|
Posted - 2007.06.20 14:47:00 -
[11]
"or the easyer way is this on desk top right click ur eve icon click on properties and where its got target at end of the "C:\Program Files\CCP\eve\eve.exe" put this at the end--> /end /LUA:OFF" do that on all ur icons 4 ur diff eve progs and thy will work the old way :)"
Tried this and not working. Any help?
|

Drago Jr
|
Posted - 2007.06.20 15:00:00 -
[12]
forget it dont even care no more. just redo them all over AGAIN. CCP and their endless ways of makeing life diffacult.
|

Tintifish
Coreli Corporation Corelum Syndicate
|
Posted - 2007.06.20 15:04:00 -
[13]
Originally by: Drago Jr "or the easyer way is this on desk top right click ur eve icon click on properties and where its got target at end of the "C:\Program Files\CCP\eve\eve.exe" put this at the end--> /end /LUA:OFF" do that on all ur icons 4 ur diff eve progs and thy will work the old way :)"
Tried this and not working. Any help?
It doesnt stop certain parts getting moved, logs and settings i think but havent checked.
|

Thalera Saldana
Minmatar Oxymorons from Outer Space
|
Posted - 2007.06.20 15:58:00 -
[14]
I have followed the procedure in the OP, but can't get it to work for me. When I run the bat file I see the new Rev II splash screen for about 10 seconds, but then nothing. (If you watch in task manager Eve also drops out of here). I have created all the directories etc. and double checked paths but can't see what I am doing wrong.
Any help would be much appreciated.
Thal
|

Lost Hamster
Serenity and Unicum Hungarian Corp
|
Posted - 2007.06.21 10:19:00 -
[15]
Originally by: Thalera Saldana I have followed the procedure in the OP, but can't get it to work for me. When I run the bat file I see the new Rev II splash screen for about 10 seconds, but then nothing. (If you watch in task manager Eve also drops out of here). I have created all the directories etc. and double checked paths but can't see what I am doing wrong.
Any help would be much appreciated.
Thal
In the directory what you have set up as a SET parameter, create the following directory: My Documents or the equivalent of your none English operating system. Then try again. I had the same problem, But this is the fix.
|

Braaage
Laborius Chapter
|
Posted - 2007.06.21 10:54:00 -
[16]
I'll say this boldly...
BE AWARE THAT CHANGING THE LOCATION OF USERPROFILE WILL MEAN ANY APPLICATION OR GAME YOU RUN WHILST RUNNING EVE WILL DUMP FILES INTO THE EVE FOLDERS THAT ARE NOT SUPPOSED TO BE THERE.
This is not a good thing to do!!!
|

Lost Hamster
Serenity and Unicum Hungarian Corp
|
Posted - 2007.06.21 12:26:00 -
[17]
Originally by: Braaage Edited by: Braaage on 21/06/2007 11:17:37BE AWARE THAT CHANGING THE LOCATION OF USERPROFILE WILL MEAN ANY APPLICATION OR GAME YOU RUN WHILST RUNNING EVE MAY DUMP FILES INTO THE EVE FOLDERS THAT ARE NOT SUPPOSED TO BE THERE.
If you are running it from a batch file: starteve.cmd
set USERPROFILE=D:\Games\EVE\ Start "eve" D:\Games\EVE\eve.exe /end /LUA:OFF exit
Then the parameter changes are only valid for eve. Nothing else. It is not interfering with other application as this change is only valid for that script/child processes only. So don't worry. :)
Lost Hamster <- IT Expert. ;)
|

Razer Morphis
Minmatar Sebiestor tribe
|
Posted - 2007.06.21 12:33:00 -
[18]
Originally by: Braaage Edited by: Braaage on 21/06/2007 11:17:37 I'll say this boldly...
BE AWARE THAT CHANGING THE LOCATION OF USERPROFILE WILL MEAN ANY APPLICATION OR GAME YOU RUN WHILST RUNNING EVE MAY DUMP FILES INTO THE EVE FOLDERS THAT ARE NOT SUPPOSED TO BE THERE.
This is not a good thing to do!!!
Boldly.... and wrong. ----------------------
|

RaTTuS
BIG BIG is Beautiful
|
Posted - 2007.07.04 14:18:00 -
[19]
this is great and I use it to separate Sisi cache from TQ cache, and running it from the Batch file will not alter any other games or programs as that is just for that session.
-- BIG Lottery, BIG Deal, InEve & Skills Blog
|

Scouteye
Caldari
|
Posted - 2007.07.06 12:53:00 -
[20]
I use EVE Launcher to do all this
I have my 3 clients installed in seperate places, just like in XP, and then i use EVEL to run them
it does it all for you, dont know how, but it does and although it says it dont support vista it does work :)
all settings/cache are back in the orginal places and not being messed up in a silly folder somewhere in the C drive.
thanks EVEL 
|

Chi Quan
Jade Phoenix Deutschland Event-Horizon
|
Posted - 2007.07.07 11:20:00 -
[21]
unfortunately, evelauncher does not move the history.txt and the screenshots & logs -- Tempus fugit -- |

RaTTuS
BIG BIG is Beautiful
|
Posted - 2007.07.09 12:36:00 -
[22]
Small problem - now I dont seem to be able to make any screen shots - nothing gets written in any location... I'm checking a few theings then will make a BR -- BIG Lottery, BIG Deal, InEve & Skills Blog
|

Eewec Ourbyni
Caldari
|
Posted - 2007.07.13 21:56:00 -
[23]
Gald some folks found this helpful.... sorry I've not got back to folks with answers but it never rains but it poors.... literally actually. First I had a motorbike accident and wasn't around then on Monday my router got pan fried by a lightning strike, and the replacement only just arrived.
Hope everyone sorted out their issues and I'll try to be around a bit more, but I can't promise things aren't going to go to "that place down their with the horned beings" in a hand basket.
This is a sig...
-- You think this guys post is nuts.... you should see his bio --
... good, ain't it! |

DREDD xCZx
|
Posted - 2007.11.22 17:20:00 -
[24]
set USERPROFILE=C:\GAMES\CCP\EVE_SI\ start "eve" C:\GAMES\CCP\EVE_SI\eve.exe /end exit
but only fist window of eve and "ExeFile.exe" stay on 92 372 Kb ... what is it ? :(
|

Cap Karrigan
Knowledge Through Power
|
Posted - 2008.01.08 01:01:00 -
[25]
Bear with me OP, I'm trying to understand and work with this so that I can run multiple accounts at once again.
~~~
Say I have three separate EVE accounts; acct1, acct2, acct3.
I would then create a folder for each account in my
DRIVE:\EVE\(account goes here) ?
And you only need to create one folder per account, not individual character (3 per acct) correct?
~~~
Assuming I'm right so far, is this command capable of running multiple instances of eve.exe while shuffling the correct user info/prefs to the correct folders?
Example: I am running two accounts simultaneously from
DRIVE:\EVE\
with the sub folders
DRIVE:\EVE\account1 DRIVE:\EVE\account2
And my batch file for each account reads as follows:
-account1.bat-
set USERPROFILE=DRIVE:\EVE\account1 Start "eve1" "DRIVE:\EVE\eve.exe"
-account2.bat- set USERPROFILE=DRIVE:\EVE\account2 Start "eve2" "DRIVE:\EVE\eve.exe"
Will this setup allow me to run both accounts simultaneously while dropping the correct cache/prefs into each account's sub folder?
I have no interest in test server atm, hence no server specification directory. ~~~
Basically, does using the tag ' Start "eve1, eve2, etc" ' tell the batch file to drop prefs, etc... into acct1, acct2, acct3 directory?
If that was confusing, please tell me so and I'll try to think of a better way of putting it.
(also, when using this method I'm assuming you should remove the '/end /LUA:OFF' from the shortcut I make?)
|

Cap Karrigan
Knowledge Through Power
|
Posted - 2008.01.08 02:24:00 -
[26]
And answered my own question it seems.
I've had 2x accounts running off the same EVE install (with separate account folders) since my last post and my system hasn't crashed yet! I declare OP's method a success.
+1 thumbs up
|
| |
|
| Pages: [1] :: one page |
| First page | Previous page | Next page | Last page |