![]() |
|
#1
|
|||
|
![]() Maybe someone can provide some insight:
I'm trying to get this to work, but I'm on a mac running eq through wineskin. Since my actual path is macintoshHD>users>me>desktop>eq>contents>resources >drive_c>Program Files>Sony<EverQuest I've dropped the .bat file into drive_c Now I open up my terminal, navigate to the drive_c and try ./eqlite.bat and I'm stuck It won't copy everything as it's not recognizing the path specified in the .bat file which looks like this: cd\ set eqlite_dir=c:\EQLite mkdir "%eqlite_dir%" cd drive_c:\Program Files\Sony\EverQuest I've also tried cd\ set eqlite_dir=c:\EQLite mkdir "%eqlite_dir%" cd drive_c\Program Files\Sony\EverQuest cd\ set eqlite_dir=c:\EQLite mkdir "%eqlite_dir%" cd c:\Program Files\Sony\EverQuest with no luck, any ideas? | ||
#2
|
||||
|
![]() Quote:
If you're at a CLI in Wineskin, and you're at the root folder of the Windows installation, what do you get back when you type 'cd' and press enter? Whatever it's returning is what your path format should look like in the batch script. Running scripts is all about system and/or user context. So if you get back this for the root of C: in Windows: Code:
Some_Drive:\ Code:
cd\ set eqlite_dir=Some_Drive:\EQLite mkdir "%eqlite_dir%" cd Some_Drive:\Program Files\Sony\EverQuest | |||
![]() |
|
|