Skip to content

Instantly share code, notes, and snippets.

@jonathanabila
Last active July 3, 2021 15:00
Show Gist options
  • Save jonathanabila/a5ccc092fbca639798331985b0cadf6c to your computer and use it in GitHub Desktop.
Save jonathanabila/a5ccc092fbca639798331985b0cadf6c to your computer and use it in GitHub Desktop.

Backup automático do TheHunter Call of the Wild

Se você utiliza o windows em português vai precisar atualizar o caminho dos diretórios, por exemplo, C:\Users\%USERNAME%\Documents irá virar C:\Usuários\%USERNAME%\Documents\ em todos os scripts.

backup.bat

Responsável por realizar o backup dos arquivos.

Você pode mudar os arquivos para qualquer lugar do seu computador, porém deve alterar o destino no arquivo.

backup.vbs

Abre um novo terminal sem mostrar para o usuário - só para não aparecer a tela preta na hora que o computador liga.

Windows Task

Você precisa adicionar uma nova tarefa no windows, procure por Gerenciador de Tarefas, após adiciona a tarefa o script irá executar sozinho toda vez que lugar o computador

As caixas estão em inglês, mas você pode comparar pela foto.

Windows Task

General

Name: 1. BackupTheHunter

General

Gatilhos

Begin the task: Ao logar

Speficic user: your user

Enabled: True

Triggers

Actions

Program/Script: C:\Windows\System32\wscript.exe

Add arguments (optional): backup.vbs Start in (optinal): C:\Users\%USERNAME%\Documents\AvalancheStudiosScripts\

Actions

Settings

Settings

How create the scripts

Select the new file option, rename the txt file to the same name on the files here (backup.bat and backup.vbs).

Script

Automatic backup for theHunter Call of the Wild

backup.bat

Responsible for actually backing up the files.

You can change the folders you want to backup to no matter where, but you must change the mkdir command and the xcopy command.

backup.vbs

It opens a new terminal without showing it to the user - just a way of not opening a window when turning on the computer.

Windows Task

You need to set up a new task on windows, that way the script will run automacally everytime you turn on the computer.

Windows Task

General

Name: 1. BackupTheHunter

General

Triggers

Begin the task: At log on

Speficic user: your user

Enabled: True

Triggers

Actions

Program/Script: C:\Windows\System32\wscript.exe

Add arguments (optional): backup.vbs Start in (optinal): C:\Users\%USERNAME%\Documents\AvalancheStudiosScripts\

Actions

Settings

Settings

How create the scripts

Selecione a opção de criar um novo arquivo, e renomeie esse arquivo para os novos arquivos como abaixo (backup.bat and backup.vbs).

Script

set folderName=%date:~-10,2%"-"%date:~7,2%"-"%date:~-4,4%
mkdir C:\Users\%USERNAME%\Documents\Backup Avalanche Studios\%folderName%
xcopy "C:\Users\%USERNAME%\Documents\Avalanche Studios" "C:\Users\%USERNAME%\Documents\Backup Avalanche Studios" /E /Y
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "C:\Users\%USERNAME%\Documents\AvalancheStudiosScripts\backup.bat" & Chr(34), 0
Set WshShell = Nothing
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment