Browse Forum Posts by Tags

Showing related tags and posts for the Forums application. See all tags in the site
  • Powershell to Get the count of user objects in Active Directory using LDAP Query

    Below powershell helps to get the list of user count from the Active Directory $Domain = 'LDAP://DC=domain;DC=com' $Root = New-Object DirectoryServices.DirectoryEntry $Domain $select = New-Object DirectoryServices.DirectorySearcher $select.SearchRoot = $root $adobj= $select.findall() |? {$_.properties...
    Posted to Active Directory (Forum) by Krishna on 09-12-2009
    Filed under: Active Directory, PowerShell
  • Powershell to list of users who last log in older then 30 days

    Some times we may wanted to get list of users last logon time. This command helps you the get list of all the users who lastlogontimestamp is older then 30 days or 60 days Get-QADUser -sizeLimit 0 | where {$_.lastlogontimestamp -lt (get-date).AddDays(-30)} | Select NAme,lastlogontimestamp Get-QADUser...
    Posted to Active Directory (Forum) by Krishna on 09-12-2009
    Filed under: Active Directory, PowerShell, lastlogontimestamp
  • Windows 2008 R2 Powershell

    Widows 2008 R2 comes with powershell v2 by default. and added with 76 new Ad cmdlets and Ad provders New-ADOrganizationalUnit -Name "OUname" -ProtectedFromAccidentalDeletion $true This command creates new OU under the root. If we wanted created OU in specific path then we have to provide the...
    Posted to Windows Server 2008 R2 (Forum) by Krishna on 10-29-2009
    Filed under: Active Directory, powershell v2, OU, new-adorginizationunit, windows 2008, r2, powershell
  • My first attempt at a useful PS Script

    Am trying to write my first script to solve a real need and my lack of experience with PS is showing. Any help would be appreciated..... Need to write a routine to do a bulk add of Computers to a Global Group. The computer names only are contained in an Excel file and need to be added to a group that...
    Posted to Active Directory (Forum) by seberle on 10-07-2010
    Filed under: Active Directory, PowerShell, Active Directory Management, Add Group Membership, Group Membership
  • Powershell 1.0 script to update Active Directory FTP User Isolation Attributes

    Steve Schofield recently posted an article how to setup FTP User Isolation and Active Directory together. In the post, he mentioned the need to engage your AD administrator to update the two attributes. Read more
    Posted to Active Directory (Forum) by ps2 on 01-05-2009
    Filed under: Active Directory, PowerShell
  • Using PowerShell to Access the Physical Structure of Active Directory

    Richard Siddaway has written a post demonstrating how to PowerShell to access the physical topology of Active Directory Sites using the ActiveDirectorySite object. Read more
    Posted to Active Directory (Forum) by ps2 on 01-01-2009
    Filed under: Active Directory, PowerShell
  • PowerShelling Audit Reports

    Here is a blog post that has some script examples on how to audit your Active Directory using PowerShell using Quest QAD Cmdlets coupled with some recursion techniques. Read More
    Posted to Active Directory (Forum) by ps2 on 01-08-2009
    Filed under: Active Directory, PowerShell
Page 1 of 1 (7 items)
Concentrated Tech NSoftware Dell Compellent Sponsored by Idera and Concentrated Tech and NSoftware and Dell Compellent
Copyright 2011 PowerShell.com. All rights reserved.