How do I enable or disable anonymous LDAP binds to Windows Server 2008 R2 Active Directory (AD)?

By default the setting is set to <not set> meaning it is disabled. I strongly recommend against this. Many applications communicate with directory services through LDAP, but the LDAP Request for Comments (RFC) specification stipulates that an LDAP bind should support the passing of a credential. Connecting anonymously really shouldn’t be needed. You may have […]

Continue Reading

Updating the system time on Server 2008R2 & 2012R2 using NTP Servers

To update, use the command below (2008 and 2012 server compatible) w32tm /config /manualpeerlist:”ntp_server” /syncfromflags:manual /reliable:yes /update change the ntp_server with your source. Check http://tf.nist.gov/tf-cgi/servers.cgi for servers Restart the time service net stop w32time net start w32time Resync the time w32tm /resync Verify your sync status w32tm /query /status Commands above should be fine if your […]

Continue Reading

Quest AD PowerShell cmdlets

I had trouble finding the Quest AD Powershell Cmdlets today. I knew Quest got acquired by Dell but I thought that my favorites would have still worked. Anyways, after a little of digging on the internet i was able to find them. It is now called ActiveRoles Management Shell for Active Directory  Here is the link: ActiveRoles […]

Continue Reading

Exchange 2007: Give a user full access to all mailboxes

The following command will give full access to the Mailbox database including future mailboxes when they are created. Just change the name of the Mailbox Database to yours and the name to the one you wish to use Get-MailboxDatabase -identity “Mailbox Database” | Add-ADPermission -User “Trusted User”-AccessRights GenericAll Now access to all mailboxes: Get-Mailbox -ResultSize […]

Continue Reading