In the beginning it’s hard to find all of the links in Central Administration. There are lots of links all over the place. So I made a page called AllTheLinks.aspx It’s really simple, but really useful. Add jQuery to the site first.
<asp:Content id="Content2" runat="server" contentplaceholderid="PlaceHolderMain">
<style type="text/css">
h2 {
color:#288400;
font-weight:normal;
}
</style>
<script type="text/javascript" src="/js/jquery-1.7.js"></script>
<script type="text/javascript">
$(document).ready( function() {
$(‘#ApplicationManagement’).load("/applications.aspx #ctl00_MSO_ContentDiv");
$(‘#SystemSettings’).load("/systemsettings.aspx #ctl00_MSO_ContentDiv");
$(‘#Monitoring’).load("/monitoring.aspx #ctl00_MSO_ContentDiv");
$(‘#BackupRestore’).load("/backups.aspx #ctl00_MSO_ContentDiv");
$(‘#Security’).load("/security.aspx #ctl00_MSO_ContentDiv");
$(‘#UpgradeMigration’).load("/upgradeandmigration.aspx #ctl00_MSO_ContentDiv");
$(‘#GeneralApplicationSettings’).load("/generalapplicationsettings.aspx #ctl00_MSO_ContentDiv");
$(‘#NintexWorkflowManagement’).load("/_admin/NintexWorkflow/Management.aspx #ctl00_MSO_ContentDiv");
});
</script>
<h2>Application Management</h2>
<div id="ApplicationManagement"></div>
<h2>System Settings</h2>
<div id="SystemSettings"></div>
<h2>Monitoring</h2>
<div id="Monitoring"></div>
<h2>Backup and Restore</h2>
<div id="BackupRestore"></div>
<h2>Security</h2>
<div id="Security"></div>
<h2>Upgrade and Migration</h2>
<div id="UpgradeMigration"></div>
<h2>General Application Settings</h2>
<div id="GeneralApplicationSettings"></div>
<h2>Nintex Workflow Management</h2>
<div id="NintexWorkflowManagement"></div>
</asp:Content>