View Single Post
Old 03-24-10, 03:35 PM   #31
remowilliams
Loader
 
Join Date: Mar 2010
Posts: 90
Downloads: 16
Uploads: 0
Default

Quote:
Originally Posted by gutted View Post
I second this. I have it turned off and it still says it's syncing as soon as it hits the main menu.

I have to wait for it to finish before i can play.
I have it turned off as well and it still syncs.

I wrote a little script to semiautomagically archive all my saves to avoid getting screwed by the sync.

Code:
'==========================================================================
'
' NAME: saveback.vbs
'
' PURPOSE: automatically create recursive archive of files in sourcedir
' to an archive in backupdestdir, named with time / date stamp
'
' USAGE: cscript saveback.vbs "c:\sourcedir" "c:\backupdestdir"
' 
'==========================================================================

On Error Resume Next

Set WshShell = WScript.CreateObject("WScript.Shell")
homed = WshShell.CurrentDirectory

Set WshShell = Nothing

Dim objFSO
Set objFSO = WScript.CreateObject("Scripting.FileSystemObject")
set objShell = CreateObject("Wscript.Shell")

Set oArgs = Wscript.Arguments
sourceDir = oArgs.Item(0)
destDir = oArgs.Item(1)

rarpath = "C:\Program Files\WinRAR\rar.exe"
raroptions = " a -r -ep1 -inul "

backupname = Replace(Date, "/", ".") & " " & Replace(Time, ":", ".") & ".rar"

set objExec = objShell.Exec(Chr(34) & rarpath & Chr(34) & raroptions & Chr(34) & destDir & "\" & backupname & Chr(34) & " " & sourceDir & Chr(34))

wscript.echo("Please wait while " & backupname & " is created")

Do While objExec.Status = 0	
	wscript.sleep 1000
	wscript.stdout.write(".")
Loop
remowilliams is offline   Reply With Quote