Existe alguma maneira de carregar uma sessão PuTTY salva de um diretório específico?

0

No trabalho, o gerenciamento deseja usar um programa chamado "Deep Freeze" nos computadores de todos, o que restaurará o computador para um "estado original" após a reinicialização, o que significa que se eu criar um documento na minha área de trabalho , será apagado após o reinício.

Podemos informar ao departamento de TI quais programas precisamos instalar e, para o PuTTY, gostaríamos que minha sessão fosse salva a cada reinicialização.

É possível que o PuTTY carregue uma sessão salva de um diretório específico?

Nota: isto é para uma máquina que executa o Windows 7.

    
por homersimpson 02.11.2015 / 22:47

1 resposta

1

Não, o PuTTY padrão não pode carregar as configurações de um arquivo.

Alguns clones do PuTTY, como o KiTTY, podem.
Consulte o link

Veja também a seção Armazenando a configuração em um arquivo no PuTTY documentação:

PuTTY does not currently support storing its configuration in a file instead of the Registry. However, you can work around this with a couple of batch files.

You will need a file called (say) PUTTY.BAT which imports the contents of a file into the Registry, then runs PuTTY, exports the contents of the Registry back into the file, and deletes the Registry entries. This can all be done using the Regedit command line options, so it's all automatic. Here is what you need in PUTTY.BAT:

@ECHO OFF
regedit /s putty.reg
regedit /s puttyrnd.reg
start /w putty.exe
regedit /ea new.reg HKEY_CURRENT_USER\Software\SimonTatham\PuTTY
copy new.reg putty.reg
del new.reg
regedit /s puttydel.reg

This batch file needs two auxiliary files: PUTTYRND.REG which sets up an initial safe location for the PUTTY.RND random seed file, and PUTTYDEL.REG which destroys everything in the Registry once it's been successfully saved back to the file.

Here is PUTTYDEL.REG:

REGEDIT4

[-HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]

Here is an example PUTTYRND.REG file:

REGEDIT4

[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY]
"RandSeedFile"="a:\putty.rnd"

You should replace a:\putty.rnd with the location where you want to store your random number data. If the aim is to carry around PuTTY and its settings on one USB stick, you probably want to store it on the USB stick.

    
por 03.11.2015 / 08:30

Tags