Como desabilitar o usuário Convidado de desligar o computador enquanto o Admin está logado?

3

Estou executando o Windows 7 Ultimate. Descobri como desativar o usuário Convidado de desligar, mas eles não podem ser desligados, mesmo se a conta do Administrador estiver desconectada.

Editar: para esclarecer um pouco, digamos que quero dar meu PC a alguém, normalmente clico em Trocar de usuário e efetuo login usando a conta Convidado. Dessa forma, eles não podem acessar minha conta, pois pede uma senha. Eu quero que, nesse caso, eles não consigam desligar o PC, pois minha conta de administrador ainda está conectada.

No entanto, se outra pessoa inicializar o computador e usar a conta Convidado, ele também poderá desativá-lo, pois minha conta de administrador não está conectada.

    
por Cerberus 13.04.2016 / 15:26

1 resposta

0

Minha pergunta foi respondida aqui -

This is the correct method. It is also robust in that it is unconditional. If you wish to have your cake and eat it then the Guest account must use a powerful "agent" to perform the shutdown task. A scheduled task would be such an agent. It could work like so:

  1. Create a scheduled task that runs Script1 to perform these tasks:
  2. Check if the file C:\Shutdown\Shutdown.txt exists.
  3. If it does not, exit from the script.
  4. If it does, delete Shutdown.txt.
  5. Check if there is a live Administrator session. If yes, exit from the script.
  6. If there is no live Administrator session, shut down the machine, using shutdown.exe.
  7. The task must run once every 3 minutes under an admin account.
  8. Create a desktop shortcut for the Guest user that invokes Script2 to perform these tasks:
  9. Check if there is a live Administrator session.
  10. If it does, create a pop-up to inform the user that the machine cannot be shut down.
  11. If it does not, create the file C:\Shutdown\Shutdown.txt. The scheduled task will "see" this file and will shut down the machine.
    
por 14.04.2016 / 20:01