Mirror a folder automatically?
Let's cay I store some really important stuff in
C:\User\Rahul\Desktop\IMP
.Is it possible to make windows automatically mirror the contents of that folder to
C:\Users\Rahul\OneDrive\IMP
constantly or at the end of every hour/week/minute?
(Veja as opções para garantir que tudo esteja definido para as suas necessidades)
SET SRC="C:\User\Rahul\Desktop\IMP"
SET DEST="C:\Users\Rahul\OneDrive\IMP"
SET FName=*.*
SET LOG=C:\Path\Log.txt
:: If you do not want a log file, remove the "/LOG+:%LOG%" below
SET OPT=/PURGE /S /NP /R:5 /LOG+:%Log% /TS /FP
SET CMD=robocopy %SRC% %FName% %DEST% %OPT%
%CMD%
Agendamento para automação autônoma
Consulte a minha resposta Tarefas agendadas para as opções, pegadinhas, etc. que você deseja selecionar ao agendar um script em lote com o Agendador de Tarefas para executar conforme o esperado; capturas de tela e todos são fornecidos.