Difference between revisions of "Active Directory/Software Packages"
Line 48: | Line 48: | ||
if ($lastVendor != $a[2]) | if ($lastVendor != $a[2]) | ||
− | echo '<tr style="background-color: # | + | echo '<tr style="background-color: #ADD8E6;"><td colspan="4"><strong>', $a[2], '</strong></td></tr>'; |
echo '<tr style="background-color: ', ($i ^= 1) ? '#E7E7E7' : '#F8F8F8' ,'"><td>', $a[3], '</td><td>', $a[4], '</td><td>', $a[5], '</td><td>', $a[1], '/', $a[6], '</td></tr>'; | echo '<tr style="background-color: ', ($i ^= 1) ? '#E7E7E7' : '#F8F8F8' ,'"><td>', $a[3], '</td><td>', $a[4], '</td><td>', $a[5], '</td><td>', $a[1], '/', $a[6], '</td></tr>'; |
Revision as of 13:43, 7 July 2010
The WOLTECH domain was designed to ease, automate, and monitor the distribution of software to computers. We have an extensive list of software that has been packaged and configured for distribution via the domain, and new packages are being added every day.
Available Packages
The following software products are packaged and available for automatic distribution over the network. To request that software be installed on your computer, please email ecehelp@ncsu.edu.
Once we have configured the software to install on your computer, you can simply reboot and the software will be installed during Windows bootup.
Notes:
- Many software packages have additional license restrictions not listed in the table.
- Software packages that are only available for manual installation are not listed here.
<php> // define ('INCLUDES',"../_include/"); require_once(INCLUDES . "myit/functions.inc.php"); require_once(INCLUDES . "myit/phpAD-nodie.inc.php");
$server = $DB["server"]; $username = $DB["read-un"]; $password = $DB["read-pw"]; $database = $DB["database"];
$adServer = $WOLFTECH['server']; $adDomain = $WOLFTECH['domain']; $adUser = $WOLFTECH['myit.rd-un']; $adPass = $WOLFTECH['myit.rd-pw'];
$AD = new phpAD($WOLFTECH['server'], 3269); $AD->bind($WOLFTECH['myit.rd-un'], $WOLFTECH['myit.rd-pw']);
// Connect
$link = mysql_connect($server, $username, $password)
or die("Unable to connect to database server");
$i = 0;
echo '
<thead></thead><tbody>';$getSW = mysql_query("SELECT owner, sw_type, vendor, name, version, other, replication FROM wolftech_myit.log_sw_groups WHERE owner=replication ORDER BY vendor, name, version, other"); while ($a = mysql_fetch_row($getSW)){
if (empty($a[5])){ $sw = $a[0] . '-' . $a[1] . '-' . $a[2] . '-' . $a[3] . '-' . $a[4]; $findC = ldap_search($AD->_conn, 'DC=wolftech,DC=ad,DC=ncsu,DC=edu', '(CN=' . $AD->checkInput($sw) . ')', array('whencreated')); $tempOther = ldap_get_entries($AD->_conn, $findC); $a[5] = '(' . substr($tempOther[0]['whencreated'][0], 0, 4) . '-' . substr($tempOther[0]['whencreated'][0], 4, 2) . '-' . substr($tempOther[0]['whencreated'][0], 6, 2) . ')'; }
if ($lastVendor != $a[2])
echo ''; echo '';$lastVendor = $a[2]; }
echo '</tbody>Name | Version | Date | Type/Scope |
---|---|---|---|
', $a[2], ' | |||
', $a[3], ' | ', $a[4], ' | ', $a[5], ' | ', $a[1], '/', $a[6], ' |
';
mysql_free_result($getSW); </php>