Entradas

How to define an OU as default location for new Computer objects

Imagen
http://www.itprocentral.com/ By default all computer objects are created under the  Computers  container and in this Tutorial we are going change (redirect) this default location to a new organization unit (OU). In the image below we can see that a few servers were added to the domain and as usual they were created in the  Computers  container. Group Policies are applied at Site, Domain or Organization Unit level however the  Computers  is a container and cannot have an OU assigned to it, as shown in the image below using Group Policy Management console. In some companies the newly joined computers may require to receive a GPO right away. Validating the prerequisites… Before planning to use an OU to be the default location for new computer objects we must make sure that the domain level is at least  Windows Server 2003 . We can find that information by right-clicking on the domain name, and then  Properties  in  Acti...

How to delegate access in Hyper-V

Imagen
Thank to: http://itprocentral.com In some medium/large organizations, it is common practice to have different access levels for systems, such as administrator, help desk, support and auditor. When implementing virtual machine using Hyper-V Servers, it is also important to reflect these access levels as well. Since Hyper-V 2012 makes this task easier when you need to specify particular users or groups to be Hyper-V Administrators, but you also might face scenarios where different levels are required. During the task, to add advanced permissions to a user, you will need to use groups (and recommended). You can create and use local groups or Active Directory groups. NOTE:  Make sure you have created them before you start. How to do it The following steps show how to delegate control for a user by using the local Hyper-V Administrators group and by using Authorization Manager (AzMan) for advanced delegations: 1. To add users or groups as members of the local Hyper-V Admin...

Policy Based Source Routing over two WAN Links with NAT

Thanks to: http://jordansciscos.blogspot.com/ The scenario is that I have two Internet links. One over Ethernet and the other over ADSL. I want to push particular hosts on my internal LAN out through the ADSL and the others out through the Ethernet link. 192.168.0.0/24 = LAN Subnet FastEthernet0/0 = LAN Interface FastEthernet0/1 = Internet Connection 1 (Fibre/Cable) Dialer1 = Internet Connection 2 (ADSL) interface FastEthernet0/0  ip policy route-map PBR The above defines the internal LAN interface to be assigned to the "PBR" route-map which we will define below.   ip nat inside ! ip nat inside source route-map ADSL-Only interface Dialer1 overload Specifies that all NAT must adhere to the ADSL-Only and LAN route-maps defined later ip nat inside source route-map LAN interface FastEthernet0/1 overload ! ip access-list extended ADSL-Only My two hosts that I want to go out over ADSL   permit ip host 192.168.0.15 any  permit ip host 192.168.0.10 ...

USB device class drivers included in Windows

Source: https://msdn.microsoft.com/en-us/library/windows/hardware/ff538820(v=vs.85).aspx This topic lists the Microsoft-provided drivers for the supported USB device classes. If you are installing USB drivers:    You do not need to download USB device class drivers. They are installed automatically. These drivers and their installation files are included in Windows. They are available in the \Windows\System32\DriverStore\FileRepository folder. The drivers are updated through Windows Update. If you are writing a custom driver:   Before writing a driver for your USB device, determine whether a Microsoft-provided driver meets the device requirements. If a Microsoft-provided driver is not available for the USB device class to which your device belongs, then consider using generic drivers, Winusb.sys or Usbccgp.sys. Write a driver only when necessary. More guidelines are included in  Choosing a driver model for developing a USB client driver . US...