Managing large ActiveDirectory estates can often be a challenge, especially when you have a large group of AD administrators controlling group access.. This nifty little VBScript can be used to enumerate all the members of an AD Group. Handy for regular maintenance tasks.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Server Error · Gist</title>
<style type="text/css" media="screen">
body {
background: #f1f1f1;
font-family: "HelveticaNeue-Light", Helvetica, Arial, sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased; }
.container { margin: 100px auto; width: 600px; text-align: center; }
a { color: #4183c4; text-decoration: none; }
a:visited { color: #4183c4 }
a:hover { text-decoration: none; }
h1 { letter-spacing: -1px; line-height: 60px; font-size: 60px; font-weight: 100; margin: 0px; text-shadow: 0 1px 0 #fff; }
p { color: rgba(0, 0, 0, 0.5); margin: 20px 0 40px; }
ul { border-top: 1px solid #ccc; list-style: none; margin: 20px 0; padding: 20px 0; }
li { display: table-cell; font-weight: bold; width: 1%; }
</style>
</head>
<body>
<div class="container">
<h1>OH NOES, 404.</h1>
<p>We seem to have missed the <em>gist</em> of that <em>gist</em> you were looking for.</p>
<ul id="error-suggestions">
<li><a href="https://github.com/contact">Contact Support</a></li>
<li><a href="https://status.github.com">Status Site</a></li>
<li><a href="https://twitter.com/github">@github</a></li>
</ul>
<p><img src="https://github.s3.amazonaws.com/media/maint-logo.png" alt="GitHub"></p>
</div>
</body>
</html>
This VBScript could easily be adapted to out put the list to a file, or even embedded inside a larger application which performs automated maintenance tasks.
Read More