var fDesc=new Array();
fDesc[0] = "Active Directory Janitor helps you cleanup Active Directory (delete, move or disable) accounts and increase your Active Directory security and general network performance.
Active Directory Janitor is very fast to get started with. Just select the computers, or users, from Active Directory that you would like to administer/scan and press a button.
All your domain controllers are scanned, multithreaded, in real time and shows you information to make it easy for you to cleanup Active Directory accounts you consider old.
Main Features:
- Easy to use standard Windows graphical interface.
- Increase Active Directory security: Choose among 35 properties when scanning your network environment.
- Pick user or computer accounts to scan in three different ways: Manually, from Active Directory and import.
- Perform cleanup operations: Delete, disable, move and enable Active Directory accounts in seconds.
- Export all or part of your scan results
- Increase Active Directory security: Identify user accounts with high security risk
- For the non-replicated account properties all domain controllers will be contacted and the most recent value will be used.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}