View Single Post
  #5  
Old 06-03-2015, 05:23 PM
mr. P mr. P is offline
Scrawny Gnoll


Join Date: Aug 2011
Posts: 25
Default

Nice, thanks for the script. [You must be logged in to view images. Log in or Register.]

However, I had to change:
Code:
cd E:\Program Files\Sony\EverQuest
to
Code:
cd /d E:\Program Files\Sony\EverQuest
for this script to work. Otherwise it would not find any files to copy. I believe that change would solve the issue some people has been experiencing. The "/d" flag would only be necessary in cases where the folder resides in another drive than the current working directory is. But it can be used in cases where the folder is one the same drive as well. I.e. it's a win-win. [You must be logged in to view images. Log in or Register.]

Also, if I would have had my wits about me before I ran this script and deleted my old EQ folder I would have also added this line to the script after the line above:
Code:
for /f %%i in ('dir /b ^| findstr /i ".*.ini$"') do (
	xcopy %%i "%eqlite_dir%"
)
Then I would not have lost my settings (*.ini files). Shame on me.
Last edited by mr. P; 06-03-2015 at 05:32 PM..
Reply With Quote