backup das configurações de perfil no Outlook 2007

1

Como fazer o backup das configurações de perfil no Outlook 2007. O post diz, não há como fazer backup das configurações de perfil no Outlook.

    
por Rauf 25.03.2012 / 11:10

3 respostas

1

A Transferência Fácil do Windows (migwiz.exe) permite fazer backup das configurações do Outlook. Basta digitar "migwiz" na barra de pesquisa e seguir as instruções. Você pode selecionar quais arquivos são armazenados em backup.

    
por 28.03.2012 / 13:50
1

esta página diz que você pode faça isso fazendo o backup de um valor de registro

Start > Run > type ‘regedit’ & Locate the following path in your ‘Registry Editor’ HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\Outlook

Now right click on the key outlook and select option: Export and save .reg files to your desired location. You can run the same file while restoring your outlook. This will restore your old outlook profile with all your email accounts settings and rules. You will need to enter your password as Password is not stored into .reg file.

    
por 25.03.2012 / 12:27
0

Eu gosto de usar o script em lotes ao fazer backup de usuários do Outlook em um local de rede ... use isso como a origem do lote e salve o script em um local em uma unidade de rede ou dispositivo portátil onde você possa armazenar seus backups. Há mais para fazer o backup do Outlook do que apenas os valores do seu registro ...

% ~ dp0users \% username% - Usa o local do script para determinar para onde os backups vão.

Eu uso o robocopy dessa maneira para que os usuários não possam ver os backups uns dos outros no compartilhamento (por causa das permissões ...)

Isso faz parte de um script MUCH LARGER que encurtei apenas para o Outlook ... e ainda é um trabalho em andamento, mas por enquanto ele impede que os usuários tenham que configurar o Outlook quando se deslocam de uma máquina para a outra. Próximo.

Se alguém tiver alguma opinião, ficarei feliz em ouvir.

:: Script Start
@echo off

set /p begin="Press Enter to begin the backup process"
set trigs= /E /XJ /XO /TEE /V /MIR /SEC
set backLocation="%~dp0users\%username%"

echo Closing Outlook...
TASKKILL /F /IM OUTLOOK.exe

echo Backing up Outlook data...
:: This copies all Outlook .pst's (personal\archived folders) to the backup location
robocopy "%userprofile%\AppData\Local\Microsoft\Outlook" "%backLocation%\Outlook\pst" %trigs% /XF *.obi *.tmp *.oab *.dat *.ost /V /log:%userprofile%\Desktop\Outlook_log.txt

:: This copies outlook .NK2 files (Auto-Complete data) to the backup location
robocopy "%userprofile%\AppData\Roaming\Microsoft\Outlook" "%backLocation%\Outlook\nk2" %trigs% /XF *.srs *.xml *.dat /V

echo Backing up Outlook Config...
:: This makes a copy of the Outlook configuration from registry to be used later.     
:: Our users have profiles on the D: partition, as C: is blocked from access by end user.
:: Creating the .reg locally to the system on D:, then copying it to the backup location
:: has been the only way to get it where it needs to be, for me. YMMV
regedit /e %userprofile%\AppData\Local\Microsoft\Outlook\Outlook_Config.reg "HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles"
copy "%userprofile%\AppData\Local\Microsoft\Outlook\Outlook_Config.reg" "%backLocation%\Outlook\"

echo/
echo Outlook Backup Complete!

@pause
:Script End
    
por 28.08.2013 / 21:25