active directory
Welcome to the 'active directory' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'active directory'.
Are you an expert about 'active directory'? Do you want to be the Technorati authority on 'active directory'? You can write a description that will appear right here:
Join Blogcritics!
Original Technorati articles tagged “active directory”
-
in GuruBrochure Buzzwords - Identity Management, Provisioning

Brochure Buzzwords of Identity Management can bring your project to halt before it begins.by binaryblogger / on May 27, 2011 -
in ITPearson's Video Mentor: Reaching Out to Social Media

Pearson education's Video Mentor is a 2 hour video plus book, a fairly simplified certification instruction manual.by ecothrust / on Mar 18, 2010
Latest blogosphere posts tagged “active directory”
-
Domain Controller setup for small business that is growing fast
Spiceworks Community —
Authority: 454
I am managing a small company, well it was small but we have 25 employees and about 30 computers plus all the extra PDAs everybody brings to the office. I dont have a domain server yet, we manage the system with out one currently. My services are cloud based, office 365, Egnyte file share, so no VPN access is ...6 hours ago -
Use PowerShell to Fix Those Annoying NDR Emails
Hey Scripting Guy! —
Authority: 412
Summary : Microsoft PFE, Norman Drews, shows how to use the Active Directory cmdlets and the Exchange cmdlets to clean up distribution groups. Microsoft Scripting Guy, Ed Wilson, is here. Welcome our guest blogger, Norman Drews. Norman is a Microsoft PFE, and I had the privilege to meet with him when I was speaking ...5 days ago -
Certified Pen Testing Engineer Training
IT EVENT —
Authority: 130
Philippines The course delivers advanced and cutting edge techniques for auditing a broad range of security controls (including Physical and User Security) with “hands-on” laboratories designed by real world security professionals. For a Certified Ethical Hacker (CEH), this course will improve your knowledge and ...6 days ago -
Computer Security Companies: What Can They Offer Your Business?
Paternal Prose —
Authority: 147
Computer security companies are not numerous, especially outside the major cities, but they have a great deal to offer any organisation that takes information security seriously. different companies have different emphases: one security consulting firm may concentrate on penetration testing and information security ...1 week ago -
Last logon time with a script
Richard Siddaway's Blog —
Authority: 115
Just for completeness I decided to look at the same problem using a script. This is more complex. function Get-SCADUserLastLogon { param ( [string] $userName ) $root = [ADSI] "" $search = [adsisearcher] $root $search . Filter = ...1 week ago -
Last logon time with a script
MSMVPS.COM —
Authority: 479
Just for completeness I decided to look at the same problem using a script. This is more complex. function Get-SCADUserLastLogon { param ( [string] $userName ) $root = [ADSI] "" $search = [adsisearcher] $root ...1 week ago -
Last Logon time with Quest cmdlets
MSMVPS.COM —
Authority: 479
Again we have to loop through the domain controllers but we don’t get a cmdlet for that. There’s a nice easy bit of .NET we can use function Get-QADUserLastLogon { param ( [string] $userName ) [System.DirectoryServices.ActiveDirectory.Domain] ...1 week ago -
Last Logon time with Quest cmdlets
Richard Siddaway's Blog —
Authority: 115
Again we have to loop through the domain controllers but we don’t get a cmdlet for that. There’s a nice easy bit of .NET we can use function Get-QADUserLastLogon { param ( [string] $userName ) [System.DirectoryServices.ActiveDirectory.Domain] :: GetCurrentDomain ( ) | select ...1 week ago -
Last logon time
Richard Siddaway's Blog —
Authority: 115
A question was left on the about section of my blog asking about a script that the reader had found. The script was supposed to return the last logon time for a user as found on each domain controller in the domain Unfortunately there were a number of errors in the script. This function will do the job if ( ...1 week ago -
Last logon time
MSMVPS.COM —
Authority: 479
A question was left on the about section of my blog asking about a script that the reader had found. The script was supposed to return the last logon time for a user as found on each domain controller in the domain Unfortunately there were a number of errors in the script. This function will do the job if ( ...1 week ago -
Private Cloud gets real! - System Center 2012 Announcements….
chris e. avis - blogstrocity —
Authority: 103
As you may have heard, there have been some big announcements regarding System Center 2012. All of these announcements are directly related to the Private Cloud conversations I have been having with IT Pro’s for the last year. Before I dig into the specific announcement information, let me summarize the ...1 week ago -
Microsoft Exam 70-640 – Configuring Active Directory Forests and Domains – Sample practice question
4sysops —
Authority: 111
In the last post I summarized the content underlying domain 2, section 1 (“ Configure a forest or a domain ”) in the Microsoft 70-640 Active Directory Configuration certification exam blueprint. Today I will provide a sample practice question and a detailed explanation and analysis You are the administrator of ...1 week ago -
Active Directory Power Shell code needed (List all Uses and their Groups)
Spiceworks Community —
Authority: 454
I need to generate a list of users and all the security groups they belong to...And export it to a text or csv file... Ideally Id like to run a power shell command against one of my domains and spit out a report like below. Example: John Doe Domain Admins US AD Pool Exchange Admins Sally Doe ...1 week ago -
Joining a computer to a domain over a client VPN connection
MSMVPS.COM —
Authority: 479
Joining a computer to a domain over a client VPN connection Ace Fekay, MCT, MVP, MCITP EA, Exchange 2010 Enterprise Administrator, MCTS Windows 2008, Exchange 2010 & Exchange 2007, MCSE 2003/2000, MCSA Messaging 2003 Microsoft Certified Trainer Microsoft MVP: Directory Services From time to time, this has ...1 week ago -
Windows 7 laptop will not joing the domain
Spiceworks Community —
Authority: 454
I have a brand new out of the box Dell Latitude E6420 with Win7 32 installed. When I go to join it to the domain, I get an error message saying " An Active Directory Domain Controller (AD DC) for the Domain "Methanex" could not be contacted." (see attached image for the complete error message). I definitely ...1 week ago -
Get It Now: System Center 2012 RC now available for download
Matt Hester's WebLog —
Authority: 94
Go get it @ http://go.microsoft.com/?linkid=9796988 . Here’s some bedtime reading while you watch the download, download. ======= A Microsoft private cloud dramatically changes the way your business produces and consumes IT services by creating a layer of abstraction over your pooled IT resources. This ...1 week ago -
Listar usuarios con ActiveSync habilitado en Active Directory.
Finally the help of IT is here —
Authority: 100
Buenas, Para hacer un listado de los usuarios que tienen ActiveSync habilitado en Active Directory usaremos la gran herramienta de la empresa Quest (Active Roles Management) más el ya indispensable Powershell (Leed el siguiente artículo para ver como instalar estas herramientas) : ...2 weeks ago -
active directory
Spiceworks Community —
Authority: 454
i get "invalid DN syntax" when i try to configure my helpdesk to communicate with active directory2 weeks ago -
Setting user properties
Richard Siddaway's Blog —
Authority: 115
One thing we have to do quite frequently is change the values in various AD attributes. This can be achieved as follows if ( -not ( Get-Module ActiveDirectory ) ) { Import-Module ActiveDirectory } $ou = "OU=England,DC=Manticore,DC=org" $desc = "Test User" ...2 weeks ago -
Setting user properties
MSMVPS.COM —
Authority: 479
One thing we have to do quite frequently is change the values in various AD attributes. This can be achieved as follows if ( -not ( Get-Module ActiveDirectory ) ) { Import-Module ActiveDirectory } $ou = "OU=England,DC=Manticore,DC=org" ...2 weeks ago



Follow Technorati