Skip to content

Instantly share code, notes, and snippets.

@jangeador
Created August 6, 2015 15:23
Show Gist options
  • Save jangeador/860d7187080dbe0bbc93 to your computer and use it in GitHub Desktop.
Save jangeador/860d7187080dbe0bbc93 to your computer and use it in GitHub Desktop.
Move all stale active directory accounts to a new OU
REM Move all stale computer accounts (not active in 26 weeks) to the designated OU
for /f "Tokens=*" %s in ('DSQUERY computer "ou=GESD32,dc=GESD32,dc=AZ,dc=US" -inactive 26 -limit 0') do DSMOVE %s -newparent "ou=Computers,ou=Stale_Accounts,DC=GESD32,DC=AZ,DC=US"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment