Estratégia de bloqueio de mídia removível para redes Windows XP

3

O Windows Vista para cima tem uma configuração de política de grupo para bloquear mídias removíveis, como unidades flash USB e telefones celulares USB.

No entanto, o Windows XP não possui essa configuração (ou não consigo encontrá-lo), portanto, preciso de uma estratégia alternativa para implementar o bloqueio de mídia removível em toda a rede para todas as sessões de conta de usuário não administrador.

Existe um software independente que eu possa usar ou uma configuração de registro que ative automaticamente novos usuários? (Nossas contas de usuário estão em um domínio através do Windows Server 2008, qualquer usuário pode fazer login em qualquer PC)

    
por Robinicks 14.10.2010 / 03:17

2 respostas

2

Não encontrei uma estratégia de tamanho único para configuração em computadores de domínio. Você vai definitivamente ter que olhar para diferentes métodos (talvez até mesmo tentar alguns deles) , e ver o que vai funcionar melhor para seus usuários (e você). A Microsoft sugere modificações no registro , mas não menciona maneiras de implementar isso usando métodos mais eficientes, como GPOs e / ou scripts de inicialização / logon .

Esta postagem de blog de Hannes Schmidt aborda mais um método automatizado para restringir o uso de dispositivos de armazenamento USB usando um GPO com um modelo ADM (fornecido por ele). Destina-se a restringir o processo Plug-and-Play (PNP) de correr para USBSTOR (Acesso a USBSTOR.INF e USBSTORE.PNF). O que eu gosto nessa abordagem é que ela ainda dá acesso aos acesso de usuários 'permitidos' a serem usados Dispositivos de armazenamento USB (como administradores e grupos de causa especial), eles precisam seguir apenas algumas etapas adicionais.

The Howto!
  1. In Active Directory Users and Computers, open an existing GPO or create a new one and open it. Use the security settings of that GPO to specify which computers it affects.
  2. In that GPO, go to Computer Configuration – Windows Settings – Security Settings – File System and create a new entry (right-click File System and select Add File). Specify the location of USBSTOR.INF (usually SystemRoot%\Inf\USBSTOR.INF)
  3. Change the security settings of the new entry. The security settings that you specify here will be enforced on the USBSTOR.INF of every computer to which the GPO is applied. This process is not additive, which means that the previous security settings of USBSTOR.INF will be overwritten by the ones given in the GPO. It is therefore recommended to grant full control to SYSTEM and local administrators. But unlike in the default security settings of USBSTOR.INF, you should not grant any priviledges to Everybody. You do not need to explicitly deny access – just omit an entry for Everybody. Optionally, you can grant read access to a certain group. Members of this group will be able to use USB storage.
  4. Repeat the above two steps for USBSTOR.PNF.
  5. Download USBSTOR.ADM.
  6. Back in the GPO, right-click Administrative Templates under Computer Configuration and select Add/Remove Templates. Click Add and browse to the location of USBSTOR.ADM. Close the dialog.
  7. You should now have an additional entry called Services and Drivers in Administrative Templates. Click on it. If it is empty, select View from the menu and uncheck Show Policies Only. Click back on Services and Drivers in Administrative Templates. It should now show the USB Storage policy. Double click it, select Enabled and pick Disabled from the Startup Type drop down. Again, the policy must be enabled wheras Startup Type must be Disabled.
  8. Close the dialog as well as the GPO and boot/reboot one of your workstations. Make sure no USB strorage device is connected to that computer. Log on with administrative privileges and check the permissions of USBSTOR.INF and USBSTOR.PNF. Check the value of the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UsbStor\Start. It should be 4. It is also ok if the UsbStor key doesn't exist at all.
  9. On the same workstation, log off and back on as a user that should not have access to USB storage. Connect a USB memory stick or a similar device. Nothing should happen. Remove the memory stick.
  10. Log on as a user that should have access to USB storage and execute net start usbstor in a command shell or at Start – Run before connecting the memory stick. The memory stick should initialized and mapped to a drive letter. If USBSTOR fails to start, it's probably because this is the first time a memory stick is plugged into the workstation in which case USBSTOR is not yet installed. Nevertheless, the memory stick should be initialized and mapped correctly but you need to reboot in order to reapply the administrative template such that USBSTOR is disabled again. Alternatively, you can disable it manually by downloading and double clicking USBSTOR.REG as well as executing net stop usbstor.
  11. Instruct the users with access to USB storage that they need to execute net start usbstor before they can connect a USB storage device.

Você encontrará várias dicas de solução de problemas lendo os comentários abaixo artigo de Hanne .

    
por 25.10.2010 / 19:17
5

link

se você não conseguir fazer isso funcionar, tente desabilitar o controlador usb na bios!

Certifique-se de usar um conector do tipo ps2 para mouse e teclado.

também link de prevenção física

    
por 14.10.2010 / 03:22