CINXE.COM

Article - Get Help! Support Options f...

<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head><meta name="viewport" content="width=device-width, initial-scale=1.0" /><script src="/TDPortal/Content/Scripts/jquery/2.2.4/jquery.min.js?v=20241127210920"></script><script src="/TDPortal/Content/Scripts/jquery-migrate/1.4.1/jquery-migrate.min.js?v=20241127210920"></script><script src="/TDPortal/Content/Scripts/jquery-ui/1.13.2/jquery-ui-1.13.2.custom.timepicker.min.js?v=20241127211336"></script><link href="/TDPortal/Content/Styles/jquery-ui/1.13.2/jquery-ui.compiled.min.css?v=20241127211340" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/bootstrap/3.4.1/dist/css/bootstrap.min.css?v=20241127210920" rel="stylesheet" type="text/css" id="lnkBootstrapCSS" /><script src="/TDPortal/Content/bootstrap/3.4.1/dist/js/bootstrap.min.js?v=20241127210920"></script><link href="/TDPortal/Content/FontAwesome/css/fontawesome.min.css?v=20241127210906" rel="stylesheet" type="text/css" id="lnkFontAwesome" /><link href="/TDPortal/Content/FontAwesome/css/solid.css?v=20241127210906" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/regular.css?v=20241127210906" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/brands.css?v=20241127210906" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/v4-shims.css?v=20241127210906" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/bootstrap_custom.min.css?v=20241127211338" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/TDStyles.min.css?v=20241127211338" rel="stylesheet" type="text/css" /><link href="https://services.pitt.edu/TDPortal/BE/Style/2/TDClient/33?v=20231106163225" rel="stylesheet" type="text/css" /><script src="/TDPortal/Content/Scripts/tdx/TDJSFramework.compiled.min.js?v=20241127211336"></script><script src="/TDPortal/Content/Scripts/underscore/1.12.1/underscore-min.js?v=20241127210920"></script> <script src="/TDClient/Scripts/clientOS.min.js?v=20241127211328"></script> <script src="/TDClient/Scripts/collapseMe.min.js?v=20241127211328"></script> <script src="/TDClient/Scripts/tdsearchfilter.min.js?v=20241127211328"></script> <script src="/TDClient/Scripts/SiteSearch.min.js?v=20241127211328"></script> <script src="/TDPortal/Content/Scripts/tdx/elasticsearchAutocomplete/elasticsearchAutocomplete.min.js?v=20241127211334"></script> <link id="ctl00_ctl00_lnkFavicon" rel="icon" href="https://services.pitt.edu/TDPortal/BE/Icon/2/33?v=20211005215753" /> <script async src="//www.googletagmanager.com/gtag/js?id=G-VX7WN92WEH"></script> <script> $(function () { window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); // Be sure to set the proper cookie domain to the customer's full subdomain when sending the pageview hit. gtag('config', 'G-VX7WN92WEH', { 'cookie_domain': 'services.pitt.edu' }); }); </script> <script> $(function () { var masterUi = MasterUI({ isPostback: false, baseUrl: '/TDClient/', isTdGoogleAnalyticsEnabled: true, isAuthenticated: false }); $('#collapseMe').collapseMe({ toggleVisibilitySelector: '.navbar-toggle' }); }); // The sub-nav menu uses padding-top to position itself below the header bar and main navigation sections. When the // window is resized, there is a chance that the content of these header or nav sections wraps, causing the height // to change, potentially covering the sub-nav menu, which is obviously a big usability problem. This function // listens for when the window size or orientation is changing (and also when the window first loads), and adjusts // the padding so that the sub-nav menu appears in the correct location. $(window).bind('load ready resize orientationchange', function () { var headerHeight = $('#divMstrHeader').height(); $('#navShim').css({ "padding-top": headerHeight }); $('#content').css({ "padding-top": headerHeight, "margin-top": headerHeight * -1 }); }); </script> <script src="/TDPortal/Content/select2/v3/select2.min.js?v=20241127212542"></script><link href="/TDPortal/Content/select2/v3/select2.compiled.min.css?v=20241127212542" rel="stylesheet" type="text/css" id="lnkSelect2" /> <script src="/TDClient/Scripts/attachmentHandler.min.js?v=20241127211336"></script> <style type="text/css"> .honey-pot-div { display: none; } </style> <script> function shareArticle() { if ($('#ctl00_ctl00_cpContent_cpContent_shareRecipients').val().trim() === "") { alert('You must first enter a valid email.'); $('#btnShare').progressButton('reset'); } else { __doPostBack('ctl00$ctl00$cpContent$cpContent$btnSendShare', ''); } } function closeShareModal() { $('#divShareModal').modal('hide'); $('#btnShare').progressButton('reset'); } function toggleFeedback(isHelpful) { $('#divHelpfulComments').show(); $('#divHelpfulYesNo').hide(); $('#ctl00_ctl00_cpContent_cpContent_hdnIsHelpful').val(isHelpful); $('#ctl00_ctl00_cpContent_cpContent_txtComments').focus(); } function toggleFeedbackResult() { $('#divWasHelpful, #divFeedbackRecorded, #divHelpfulComments, #divHelpfulYesNo').toggle(); } // The following two functions were added as a result of ticket ID: 1392522. We are generating these buttons dynamically to // prevent bots from clicking them and posting feedback on an article. Additionally, we have an input that is hidden from // the user. If a bot enters text in that input, which it likely will (bots love filling out forms), then we don't accept the // form submission function generateFeedbackButtons() { var $btnHelpfulYes = $('<button id="btnHelpfulYes" type="button" class="btn btn-primary gutter-left" onclick="toggleFeedback(1);">Yes</button>'); var $btnHelpfulNo = $('<button id="btnHelpfulNo" type="button" class="btn btn-primary gutter-left-sm" onclick="toggleFeedback(0);">No</button>'); $('#divWasHelpful').append($btnHelpfulYes); $('#divWasHelpful').append($btnHelpfulNo); } function attemptAddFeedback(e) { if ($('#honeyPot').val() !== '') { e.preventDefault(); window.location.reload(); } } function cancelFeedback() { $('#ctl00_ctl00_cpContent_cpContent_txtComments').val(''); $('#divHelpfulComments, #divHelpfulYesNo').toggle(); } function confirmDeleteFeedback(id) { if (confirm('Are you sure you want to delete this feedback? This cannot be undone.')) { $('#ctl00_ctl00_cpContent_cpContent_hdnFeedbackID').val(id); __doPostBack('ctl00$ctl00$cpContent$cpContent$btnDeleteFeedback', ''); } } function toggleAddressed(id, isAddressed) { $('#ctl00_ctl00_cpContent_cpContent_hdnFeedbackID').val(id); $('#ctl00_ctl00_cpContent_cpContent_hdnIsAddressed').val(isAddressed); __doPostBack('ctl00$ctl00$cpContent$cpContent$btnToggleAddressed', ''); } $(function () { generateFeedbackButtons(); $('[data-toggle="popover"]').popover(); var attachmentHandler = new TeamDynamix.AttachmentHandler({ containerSelector: '.js-article-attachments', resultLabelSelector: '#ctl00_ctl00_cpContent_cpContent_lblResults_lblResults-label', baseControllerUrl: '/TDClient/33/Portal/Shared/Attachments', antiForgeryToken: 'KZQCrZGqxRp0_MXQER4nZp19-mV_oSJyBd7e0GWKXKy-nFyoLe1xetMw-Y6ghpEt6SZgRQHPxdcBK_uHh3xJPu8ysqk1:6NB1_NyMWzn-ndwM_AG9kfQ3uPTSdUmgPQSTj7uhr5N9SKvH6kKDDe4m-Eey-aO5Je25Z7SEl86ZxYQo5gNDVomEwJQ1', itemId: 283, componentId: 26, feedId: 'articleFeed' }); $('#btnShare').on('click', function () { shareArticle(); }); // Don't try and update the table styles if the user wanted to opt out. $('#ctl00_ctl00_cpContent_cpContent_divBody table:not(.SkipTableFixup)').each(function () { var padding = $(this).attr('cellpadding'); var spacing = $(this).attr('cellspacing'); $(this).css("border-collapse", "separate"); if (spacing) { $(this).css("border-spacing", spacing + "px"); } $(this).find('td').each(function () { $(this).css('padding', padding + 'px') }); }); }); </script> <meta property="og:title" content="Get Help! Support Options from Pitt IT" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=283" /> <meta property="og:image" content="https://services.pitt.edu/TDPortal/BE/Logo/2/33" /> <meta property="og:description" content="How to get technical support from Pitt IT" /> <meta property="og:site_name" content="University of Pittsburgh - Knowledge Base" /> <meta property="article:section" content="Technology Help Desk" /> <meta property="article:published_time" content="2023-08-08T12:22Z" /> <meta property="article:modified_time" content="2024-08-13T16:45Z" /> <meta property="article:tag" content="Support" /> <meta property="article:tag" content="Help" /> <meta property="article:tag" content="Technical" /><title> Article - Get Help! Support Options f... </title></head> <body> <form method="post" action="/TDClient/33/Portal/KB/ArticleDet?ID=283" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm"> <div class="aspNetHidden"> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/TDClient/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZMSMQxVWLi4fik2rw1_u_hZsCNzwv5c621ov6_ZX_wzTt5vh-g2&amp;t=638628063619783110" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=nv7asgRUU0tRmHNR2D6t1NXOAgTb3J37FC1L2PfbYYFmSPm-ANa7n6FP0x7BAsbHeL4jfY3ptd1q7zKKVI7DbuXZcwEoKOwj9WxCI1VrQlbWE1Trg1t1GmJDN43kQMJsB7X8tw2&amp;t=ffffffffc7a8e318" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=NJmAwtEo3Ipnlaxl6CMhvmVxW3-Ljsg_2Hna32smxrg-6ogyYAN3UTPsJQ8m1uwzn_kuf2Wpne6NSFmYui3h0wCQhJN3ZUiLTNkvhiIgZpq74-lKmofUPQGJ8own8RI2_mwAcmvlSj2WBnqwm5Wj4cyNvv81&amp;t=2a9d95e3" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=dwY9oWetJoJoVpgL6Zq8OLdGoo5BVWQ_Eo60QZTEhEcHeiVfwgY9tLCgzdZ5TRwvrwYEnOvujbNccOVLUfWtUg4HivSIsewg6JABxkBGEqVVV64eiRyCAsPDqh6tUioISUQKB74sWMO4Er2mHrWEIWs_sBM1&amp;t=2a9d95e3" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=xtfVMqdF1exC2MBVkOJwMveStDR5kg3dbZWgIXMXZmB1xXom6CcIrWFgHa7jsp4qJuFW2L5XShudyzlBsIO3JhCfiU5HmL2BDz__mCv9dznmBlEMS7LvcYg6wTdPTrAXIXI2CvtjwlnpZd-j4Zpsx2wG_uA1&amp;t=638683209600000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=sp7vCoAo-SSYfpsQ1sYBBeEDnwCGxDYEwZCM0ler88yoVZIPDXMk1C3XF2L2L0xrbB8Rvhli51TswRlmPIOCZgaY58lKhPr-Pv1jTFJ1oUAu7x6RDtNFZUxbtxs3KYQGLK6FpPD5bKuB0e0NmS9HkAqRVks1&amp;t=638683209600000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=icMURy63hv40LPPfq4rTvmm-RfB_YkC6rEEF_2QOO68q3TseXYNBetRKKgBXJ8mn2e8UIgCPiV23HaQUZbjySMHqSgmYZgLcYltBqwD2_EK8aQ08zBuqc3ZBVZITQrbtn6w46dRxFLibMIQg0Aho73rn8Rpxrzg5YMG_JR0UOrUR0wlZ0&amp;t=638683209600000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=1HpFfNpwNihNfEP1lyJHvdPVqbv8KRoFH4-_ZORUgPOP-bqmmtIJRvFQc7828Vf59O_-fdBXcnwdv-hYp5RptPuHmMR0kGQM0_3rS4Z7sKfC7jy9Cc_8fyfcUWa8psszacEQlAXHPXmNwyRymbGSywEmhrE1&amp;t=638683209600000000" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ function WebForm_OnSubmit() { CKEditor_TextBoxEncode('ctl00_ctl00_cpContent_cpContent_shareBody_txtBody', 0); if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false; return true; } //]]> </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="784CA02E" /> </div> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$ctl00$smMain', 'aspnetForm', ['tctl00$ctl00$cpContent$cpContent$UpdatePanel1','','tctl00$ctl00$cpContent$cpContent$upFeedbackGrid','','tctl00$ctl00$cpContent$cpContent$UpdatePanel3','','tctl00$ctl00$cpContent$cpContent$UpdatePanel2','','tctl00$ctl00$cpContent$cpContent$upShare','','tctl00$ctl00$cpContent$cpContent$lblResults$ctl00',''], ['ctl00$ctl00$cpContent$cpContent$btnSubmitComments','','ctl00$ctl00$cpContent$cpContent$btnToggleSubscribe','','ctl00$ctl00$cpContent$cpContent$btnToggleFavorite','','ctl00$ctl00$cpContent$cpContent$btnSendShare',''], [], 90, 'ctl00$ctl00'); //]]> </script> <div id="ctl00_ctl00_upMain" style="display:none;"> <div id="ctl00_ctl00_pbMain" class="progress-box-container"><div class="progress-box-body"><div class="well shadow"><h2 class="h4 gutter-top-none">Updating...</h2><div class="progress" style="margin-bottom: 0;"><div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div></div></div></div></div> </div> <header role="banner"> <div id="divMstrHeader" class="master-header NoPrint" style="background-color: #fff;"> <header> <div style="background-color: #131E4C"> <div class="container"> <div style="padding: 10px 0; font-weight: 700; float: right; margin: 0"> <div style="color: #FFFFFF">Share feedback with Pitt IT: <a href="https://services.pitt.edu/TDClient/33/Portal/Surveys/TakeSurvey/oY8f3WvrJZA_" style="color: #FFB81C">Submit Feedback</a></div> </div> </div> </div> </header> <div class="logo-header-full hidden-xs"> <div class="pull-left"> <a href="#mainContent" class="sr-only sr-only-focusable">Skip to main content</a> </div> <div id="ctl00_ctl00_divPageHeader" class="container logo-header clearfix" style="padding: 5px;"> <div id="divLogo" class="pull-left logo-container"> <a href="https://www.technology.pitt.edu/" target="_blank"> <img src="/TDPortal/BE/Logo/2/33" alt="University of Pittsburgh Home Page" class="js-logo img-responsive" /> </a> </div> <div class="master-header-right pull-right padding-top padding-bottom"> <div class="pull-left topLevelSearch input-group"> <div id="SiteSearch-1aafdcdfa4cd4b7db6173993e0f2115c" class="gutter-bottom input-group site-search" style="max-width: 400px;"> <div id="SiteSearch-dropdown-1aafdcdfa4cd4b7db6173993e0f2115c" class="input-group-btn"> <button type="button" id="SiteSearch-filter-1aafdcdfa4cd4b7db6173993e0f2115c" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" title="Filter your search by category" data-component="all"> <span class="fa-solid fa-solid fa-earth-americas"></span><span class="fa-solid fa-fw fa-nopad fa-caret-down" aria-hidden="true"></span> <span class="sr-only"> Filter your search by category. Current category: <span class="js-current-component">All</span> </span> </button> <ul tabindex="-1" aria-label="Filter your search by category" role="menu" class="dropdown-menu" > <li> <a role="menuitem" href="javascript:void(0);" data-component-text="All" data-component="all" data-component-icon="fa-solid fa-earth-americas" title="Search all areas"> <span class="fa-solid fa-fw fa-nopad fa-earth-americas" aria-hidden="true"></span> All </a> </li> <li aria-hidden="true" class="divider"></li> <li role="presentation"> <a role="menuitem" href="javascript:void(0);" data-component-text="Knowledge Base" data-component="kb" data-component-icon="fa-lightbulb" title="Search Knowledge Base"> <span class="fa-regular fa-fw fa-nopad fa-lightbulb" aria-hidden="true"></span> Knowledge Base </a> </li> <li role="presentation"> <a role="menuitem" href="javascript:void(0);" data-component-text="Service Catalog" data-component="sc" data-component-icon="fa-compass" title="Search Service Catalog"> <span class="fa-solid fa-fw fa-nopad fa-compass" aria-hidden="true"></span> Service Catalog </a> </li> </ul> </div> <label class="sr-only" for="SiteSearch-text-1aafdcdfa4cd4b7db6173993e0f2115c">Search the client portal</label> <input id="SiteSearch-text-1aafdcdfa4cd4b7db6173993e0f2115c" type="text" class="form-control" autocomplete="off" placeholder="Search the client portal" title="To search for items with a specific tag, enter the # symbol followed by the name of the tag. To search for items using exact match, place double quotes around your text." /> <span class="input-group-btn"> <button id="SiteSearch-button-1aafdcdfa4cd4b7db6173993e0f2115c" class="btn btn-default" type="button" title="Search"> <span class="fa-solid fa-fw fa-nopad fa-search blue" aria-hidden="true"></span> <span class="sr-only">Search</span> </button> </span> </div> <script> $(function() { var siteSearch = new TeamDynamix.SiteSearch({ searchUrl: "/TDClient/33/Portal/Shared/Search", enableAutocompleteSearch: true, autocompleteSearchUrl: '/TDClient/33/Portal/Shared/AutocompleteSearch', autocompleteResultsPosition: 'fixed', autocompleteResultsZIndex: 1000, searchTextBoxSelector: '#SiteSearch-text-1aafdcdfa4cd4b7db6173993e0f2115c', searchComponentFilterButtonSelector: '#SiteSearch-filter-1aafdcdfa4cd4b7db6173993e0f2115c', searchButtonSelector: '#SiteSearch-button-1aafdcdfa4cd4b7db6173993e0f2115c', searchFilterDropdownSelector: '#SiteSearch-dropdown-1aafdcdfa4cd4b7db6173993e0f2115c', showKnowledgeBaseOption: true, showServicesOption: true, showForumsOption: false, autoFocusSearch: false }); }); </script> </div> <div title="Sign In" class="pull-right gutter-top-sm"> <a href="/TDClient/33/Portal/Login.aspx?ReturnUrl=%2fTDClient%2f33%2fPortal%2fKB%2fArticleDet%3fID%3d283"> Sign In </a> </div> </div> </div> </div> <nav id="ctl00_ctl00_mainNav" class="navbar navbar-default themed tdbar" aria-label="Primary"> <div id="navContainer" class="container"> <div class="navbar-header"> <button type="button" class="pull-left navbar-toggle collapsed themed tdbar-button-anchored tdbar-toggle gutter-left" data-toggle="collapse" data-target=".navbar-collapse"> <span class="tdbar-button-anchored icon-bar"></span> <span class="tdbar-button-anchored icon-bar"></span> <span class="tdbar-button-anchored icon-bar"></span> <span class="sr-only">Show Applications Menu</span> </button> <a class="navbar-brand hidden-sm hidden-md hidden-lg themed tdbar-button-anchored truncate-be" href="#"> Services Portal </a> </div> <div id="td-navbar-collapse" class="collapse navbar-collapse"> <ul class="nav navbar-nav nav-collapsing" id="collapseMe"> <li class="themed tdbar-button-anchored hidden-sm hidden-md hidden-lg"> <a href="/TDClient/33/Portal/Login.aspx?ReturnUrl=%2fTDClient%2f33%2fPortal%2fKB%2fArticleDet%3fID%3d283">Sign In</a> </li> <li id="divSearch" class="themed tdbar-button-anchored hidden-sm hidden-md hidden-lg"> <a href="/TDClient/33/Portal/Shared/Search" title="search">Search</a> </li> <li id="divDesktopf22f128c-10d0-4a1e-b07c-f3dbc5c2360e" class="themed tdbar-button-anchored"> <a href="/TDClient/33/Portal/Home/">Home</a> </li> <li id="divTDRequests" class="themed tdbar-button-anchored sr-focusable"> <a href="/TDClient/33/Portal/Requests/ServiceCatalog">Services</a> </li> <li id="divTDKnowledgeBase" class="themed tdbar-button-anchored sr-focusable"> <a href="/TDClient/33/Portal/KB/">Knowledge Base</a> </li> <li class="themed tdbar-button-anchored hidden-xs more-items-button" id="moreMenu"> <a data-toggle="dropdown" title="More Applications" href="javascript:;"> <span class="sr-only">More Applications</span> <span class="fa-solid fa-ellipsis-h" aria-hidden="true"></span> </a> <ul class="dropdown-menu dropdown-menu-right themed tdbar" id="collapsed"></ul> </li> </ul> </div> </div> </nav> </div> </header> <div id="navShim" class="hidden-xs hidden-sm"></div> <main role="main"> <div id="content"> <div id="mainContent" tabindex="-1"></div> <nav id="divTabHeader" class="tdbar-sub NoPrint hidden-xs navbar-subnav" aria-label="Knowledge Base"> <a href="#kbContent" class="sr-only sr-only-focusable">Skip to Knowledge Base content</a> <div class="container clearfix"> <ul class="nav navbar-nav js-submenu" id="kbSubMenu" style="margin-left: -15px;"> <li> <a href="/TDClient/33/Portal/KB/Search">Search <span class="sr-only">Articles</span></a> </li> </ul> </div> </nav> <div id="kbContent" class="container gutter-top gutter-bottom" tabindex="-1" style="outline:none;"> <input type="hidden" name="ctl00$ctl00$cpContent$cpContent$hdnFeedbackID" id="ctl00_ctl00_cpContent_cpContent_hdnFeedbackID" /> <input type="hidden" name="ctl00$ctl00$cpContent$cpContent$hdnIsAddressed" id="ctl00_ctl00_cpContent_cpContent_hdnIsAddressed" /> <span id="ctl00_ctl00_cpContent_cpContent_lblResults_ctl00" aria-live="polite" aria-atomic="true"><span id="ctl00_ctl00_cpContent_cpContent_lblResults_lblResults-label" class="red"></span></span> <a id="ctl00_ctl00_cpContent_cpContent_btnSendShare" tabindex="-1" class="hidden" aria-hidden="true" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ctl00$cpContent$cpContent$btnSendShare&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))">Blank</a> <div class="clearfix"> <nav aria-label="Breadcrumb"> <ol class="breadcrumb pull-left"> <li><a href="/TDClient/33/Portal/KB/">Knowledge Base</a></li><li><a href="/TDClient/33/Portal/KB/?CategoryID=11">IT Consulting Services</a></li><li class="active"><a href="/TDClient/33/Portal/KB/?CategoryID=89">Technology Help Desk</a></li><li class="active">Get Help! Support Options from Pitt IT</li> </ol> </nav> <span class="js-open-monitor" style="display: none;"></span> </div> <div class="row gutter-top"> <div id="divMainContent" class="col-md-8"> <h1 class="gutter-top" style="-ms-word-wrap: break-word; word-wrap: break-word;"> Get Help! Support Options from Pitt IT </h1> <div id="ctl00_ctl00_cpContent_cpContent_divTags"> <span class="sr-only">Tags</span> <span class="fa-solid fa-tags gray gutter-right-sm" aria-hidden="true" title="Tags"></span> <a href="/TDClient/33/Portal/KB/Search?SearchText=%2523Support" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl00_TagControl1_lnkDisplay" title="Support">Support</a> <span class="fa-solid fa-circle gray gutter-right-sm font-xs vert-middle" aria-hidden="true"></span> <a href="/TDClient/33/Portal/KB/Search?SearchText=%2523Help" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl02_TagControl1_lnkDisplay" title="Help">Help</a> <span class="fa-solid fa-circle gray gutter-right-sm font-xs vert-middle" aria-hidden="true"></span> <a href="/TDClient/33/Portal/KB/Search?SearchText=%2523Technical" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl04_TagControl1_lnkDisplay" title="Technical">Technical</a> </div> <div id="ctl00_ctl00_cpContent_cpContent_divBody" class="gutter-top break-word ckeShim clearfix"><h2><strong><span style="color: #003594"><a name="Overview"></a>Overview</span></strong></h2> <p><span style="color: #000000">Pitt Information Technology (Pitt IT) provides support for your computing experience at the University.</span></p> <p>Students, Staff, and Faculty can receive general support from our <a href="https://services.pitt.edu/TDClient/33/Portal/Requests/ServiceDet?ID=96" target="_blank">Technology Help Desk</a> and <a href="https://services.pitt.edu/TDClient/33/Portal/Requests/ServiceDet?ID=60" target="_blank">Drop-in Support Desk</a>!</p> <p>Faculty and Staff can receive hands-on support from our <a href="https://services.pitt.edu/TDClient/33/Portal/Requests/ServiceDet?ID=97" target="_blank">Technical Consulting for Department</a> group if their department is contracted.</p> <div class="alert alert-info" role="alert"><strong>Note on Departments</strong>: Departments are separated by their Responsibility Center (RC). To see if your department has a contract with Pitt IT, look for the Pitt IT logo (<img alt="" src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=9249a2bf-343f-4b49-a512-fabe559c419b.png&amp;beidInt=2" style="display: inline; width: 40px; height: 11px">) on the <a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=218" target="_blank">Responsibility Center Administration page</a>!</div> <p>&nbsp;</p> <h2><strong><span style="color: #003594"><a name="Detail"></a>Detail</span></strong><span style="color: #000000"></span></h2> <h3><span style="color: #000000"></span></h3> <p><span style="color: #000000"></span></p> <h3><span style="color: #000000"><strong>Windows or Mac</strong></span></h3> <ul> <li>Pitt IT will help you to install and configure software on your computer. This support is provided mainly for software currently available through the <a href="https://services.pitt.edu/TDClient/33/Portal/KB/?CategoryID=78" target="_blank">Software Download Service</a>. To install the software you will need to have a valid license, if applicable. If you obtained software from sources other than the Software Download Service or have software which is no longer supported by the vendor, Pitt IT will make a best effort to support the installation and configuration of this software if you have a valid license, if applicable.</li> <li>Pitt IT does not provide hardware support for personal-owned computers, printers, scanners, or other peripheral devices. However, we will assist you with the installation and configuration of these devices, including downloading manufacturer device drivers. Pitt IT does not provide functionality support for hardware products. <ul> <li>Pitt IT can provide hardware support for University&nbsp;owned devices if the owning department has a contract with Pitt IT. See the note in blue above for more information.</li> <li>Some hardware support that can be found at the <a href="https://www.pittuniversitystore.com/SiteText?id=83020" target="_blank">University Store Repair Center <span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-external-link "></span></span></a> on Fifth Ave, which is not affiliated with Pitt IT.&nbsp;</li> </ul> </li> <li>Pitt IT will help you to configure connections to the&nbsp;<a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=400" target="_blank">PittNet Wi-Fi and Wired Networks</a>.</li> </ul> <h3>&nbsp;</h3> <h3><span style="color: #000000"><strong>Mobile Devices</strong></span></h3> <ul> <li>Pitt IT can assist with setting up and using the <a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=257" target="_blank">Duo</a> Mobile app for multifactor authorization.</li> <li>Pitt IT can assist with setting up Email either with the native email application, or with the Microsoft Outlook app (recommended).</li> <li>Pitt IT will help you to configure connections to the&nbsp;<a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=400" target="_blank">PittNet Wi-Fi and Wired Networks</a>.</li> </ul> <p>&nbsp;</p> <h3><span style="color: #000000"><strong>Linux</strong></span></h3> <ul> <li>Pitt IT will help you to configure connections to the&nbsp;<a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=400" target="_blank">PittNet Wi-Fi and Wired Networks</a>.</li> </ul> <h3>&nbsp;</h3> <h3><span style="color: #000000"><strong>Application Support</strong></span></h3> <p>Pitt IT will make a best effort to answer your questions concerning the functionality of software programs offered by the software distribution service. We can answer many questions on commonly used software applications, however we do not have the depth to provide expertise on <em>all </em>software applications. For specialized software, such as engineering and statistical analysis programs, enrolled students should seek assistance from the faculty member teaching the course.</p> <p>If you need assistance with software, please contact the <a href="https://services.pitt.edu/TDClient/33/Portal/Requests/ServiceDet?ID=96" target="_blank">Technology Help Desk</a>.</p> <h3>&nbsp;</h3> <h3><span style="color: #000000"><strong>Support for Computers on UPMC's Network</strong></span></h3> <p>Pitt IT provides computer consulting support for University of Pittsburgh faculty. Some University faculty members, particularly those in the Schools of the Health Sciences, may be provided with network service by the University of Pittsburgh Medical Center (UPMC). Although Pitt IT will provide consulting support to these faculty members, it is important to note that Pitt IT is unable to troubleshoot problems on the UPMC network. These issues must be referred to UPMC for resolution.</p> <p>UPMC network security standards substantially differ from those of the University, in part due to the mandates of legislation including the Health Information Portability and Accountability Act (HIPAA) that controls electronic access to patient information. In order to ensure that all such data is protected, these controls are extended to the entire UPMC network, including service that UPMC provides to University faculty. Only UPMC central IT&nbsp;has sufficient information about the necessary security configurations to effectively diagnose and resolve problems experienced by its network users.&nbsp;This&nbsp;includes&nbsp;those of University faculty who may or may not be utilizing UPMC-supported application programs.</p> <p>Pitt IT will provide consulting service in order to resolve computing problems reported by University faculty, regardless of whether the University or UPMC provides network service. Pitt IT will refer the problem to UPMC for resolution if it determines that the problem is a network issue for which UPMC bears responsibility.</p> <p><span style="color: #000000"></span></p> <p>&nbsp;</p></div> <div id="divFeedback2" class="well gutter-top-lg"> <div class="row" id="divHelpfulYesNo"> <div class="col-sm-7"> <div> <a href="/TDClient/33/Portal/Login.aspx?ReturnUrl=%2fTDClient%2f33%2fPortal%2fKB%2fArticleDet%3fID%3d283">Sign in to leave feedback</a> </div> </div> <div class="col-sm-5 text-right"> <div id="ctl00_ctl00_cpContent_cpContent_UpdatePanel1" aria-live="polite" aria-atomic="true"> 0 reviews </div> </div> </div> </div> <div class="tab-content gutter-top gutter-bottom"> <div id="ctl00_ctl00_cpContent_cpContent_upFeedbackGrid"> <a id="ctl00_ctl00_cpContent_cpContent_btnToggleAddressed" tabindex="-1" class="hidden" aria-hidden="true" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ctl00$cpContent$cpContent$btnToggleAddressed&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))">Blank</a> <a id="ctl00_ctl00_cpContent_cpContent_btnDeleteFeedback" tabindex="-1" class="hidden" aria-hidden="true" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ctl00$cpContent$cpContent$btnDeleteFeedback&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))">Blank</a> </div> </div> </div> <div class="col-md-4"> <span> <a class="DetailAction " href="/TDClient/33/Portal/Requests/TicketRequests/NewForm?ID=xgt2kizj%7em4_&amp;RequestorType=Service&amp;ArticleId=283"> <span class="fa-solid fa-circle-right fa-fw" aria-hidden="true"></span> Request Help</a> </span> <a id="ctl00_ctl00_cpContent_cpContent_btnToggleSubscribe" tabindex="-1" class="hidden" aria-hidden="true" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ctl00$cpContent$cpContent$btnToggleSubscribe&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))">Blank</a> <a id="ctl00_ctl00_cpContent_cpContent_btnToggleFavorite" tabindex="-1" class="hidden" aria-hidden="true" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ctl00$cpContent$cpContent$btnToggleFavorite&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true))">Blank</a> <a class="DetailAction " href="/TDClient/33/Portal/KB/PrintArticle?ID=283" target="_blank"> <span class="fa-solid fa-print fa-fw" aria-hidden="true"></span> Print Article</a> <div id="ctl00_ctl00_cpContent_cpContent_divKB" class="panel panel-default"> <div class="panel-heading"> <h2 class="h3 panel-title">Related Articles (3)</h2> </div> <div class="panel-body"> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl00_ctlArticle_divContainer" class="gutter-top-sm gutter-bottom-lg"> <div class="clearfix"> <div class="pull-left font-md"> <a target="_blank" href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=218">Find Your Current Responsibility Center (RC) Account Administrators</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl00_ctlArticle_divSummary"> A list of the University&#39;s&#160;Responsibility Center Account Administrators </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl01_ctlArticle_divContainer" class="gutter-top-sm gutter-bottom-lg"> <div class="clearfix"> <div class="pull-left font-md"> <a target="_blank" href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=142">Getting Help at a Pitt IT Drop-In Support Location</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl01_ctlArticle_divSummary"> Drop-In Support provides hands-on help for the personal devices of students, faculty, and staff. </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl02_ctlArticle_divContainer" class="gutter-top-sm gutter-bottom-lg"> <div class="clearfix"> <div class="pull-left font-md"> <a target="_blank" href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=333">Getting Started with Pitt IT Consulting for Departments</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl02_ctlArticle_divSummary"> Pitt IT offers a broad array of high-quality IT support options that are tailored to fit your school or department&#39;s specific needs on the Pittsburgh campus. We can save time and reduce your overall IT support costs by delivering the precise level of service that you require. </div> </div> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_divRelatedServicesAndOfferings" class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Related Services / Offerings (3)</h3> </div> <div class="panel-body"> <div class="gutter-top-sm gutter-bottom-lg"> <div class="clearfix"> <div class="pull-left font-md"> <a href="/TDClient/33/Portal/Requests/ServiceDet?ID=60">Drop-In Support</a> </div> </div> <div> IT SERVICE DELIVERY AND SUPPORT Pitt IT provides Drop-In Support to provide hands-on聽help聽for the personal devices of students, faculty, and staff. </div> </div> <div class="gutter-top-sm gutter-bottom-lg"> <div class="clearfix"> <div class="pull-left font-md"> <a href="/TDClient/33/Portal/Requests/ServiceDet?ID=97">Technical Consulting for Departments</a> </div> </div> <div> CONTINUOUS IMPROVEMENT AND INNOVATION Pitt IT offers a broad array of high-quality IT support options that are tailored to fit your school or department's specific needs on the Pittsburgh campus. </div> </div> <div class="gutter-top-sm gutter-bottom-lg"> <div class="clearfix"> <div class="pull-left font-md"> <a href="/TDClient/33/Portal/Requests/ServiceDet?ID=96">Technology Help Desk</a> </div> </div> <div> IT SERVICE DELIVERY AND SUPPORT Get fast and friendly technical support how and when you want it via phone, live chat, online form, email, or drop-in. </div> </div> </div> </div> <div id="divAttachments" class="js-article-attachments"></div> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_divProgress" style="display: none; z-index: 60;"> <div id="ctl00_ctl00_cpContent_cpContent_pbMain" class="progress-box-container"><div class="progress-box-body"><div class="well shadow"><h2 class="h4 gutter-top-none">Deleting...</h2><div class="progress" style="margin-bottom: 0;"><div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div></div></div></div></div> </div> <div class="modal fade" id="divShareModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> <h3 class="modal-title h4" id="myModalLabel"> <span class="fa-solid fa-share-nodes fa-fw" aria-hidden="true"></span>Share </h3> </div> <div class="modal-body"> <div id="ctl00_ctl00_cpContent_cpContent_upShare" aria-live="polite" aria-atomic="true"> <div class="form-group required"> <label class="control-label" for="ctl00_ctl00_cpContent_cpContent_shareRecipients">Recipient(s) <small>- separate email addresses with a comma</small></label> <input name="ctl00$ctl00$cpContent$cpContent$shareRecipients" type="text" id="ctl00_ctl00_cpContent_cpContent_shareRecipients" class="form-control" /> </div> </div> <div class="form-group"> <label for="ctl00_ctl00_cpContent_cpContent_shareBody_txtBody" class="control-label">Message</label> <script src="/TDPortal/Content/nanospell/autoload.js?v=20241127210924"></script> <script type="text/javascript"> (function () { // The "CKEDITOR-config-loaded" event is thrown after the CKEDITOR global variable has been created, but before the instance of CKEditor is ready. // At this point attach a listener to the global variable for the instanceReady event so we can perform our initialization logic. window.addEventListener('CKEDITOR-config-loaded', function () { if (window.CKEDITOR) { setConfigs() initialize(); } }); })(); function setConfigs() { window.CKEDITOR.config['clientScripts'] = [{"scriptPath":["/TDPortal/Content/bootstrap/3.4.1/dist/js/bootstrap.min.js","https://services.pitt.edu/TDPortal/Content/Scripts/tdx/TDJSFramework.compiled.min.js"],"scriptDependencyPath":"/TDPortal/Content/Scripts/jquery/2.2.4/jquery.min.js"}]; window.CKEDITOR.config['clientStyles'] = ["/TDPortal/Content/bootstrap/3.4.1/dist/css/bootstrap.min.css","/TDClient/Styles/bootstrap_custom.min.css","/TDClient/Styles/TDStyles.min.css","https://services.pitt.edu/TDPortal/BE/Style/2/TDClient/33"]; window.CKEDITOR.config['itemTemplates'] = ''; window.CKEDITOR.config['reviseTextUrl'] = ''; } function initialize() { window.CKEDITOR.on('instanceReady', function (evt) { if (evt.editor.element.$.id == 'ctl00_ctl00_cpContent_cpContent_shareBody_txtBody') { nanospell.ckeditor('ctl00_ctl00_cpContent_cpContent_shareBody_txtBody', { dictionary: 'en', server: 'asp.net' }); setTimeout(function () { evt.editor.startNanospell(); }, 200); // Check if we should mark the editor as required if ($(evt.editor.element.$).parents('div.required').length > 0) { evt.editor.editable().setAttribute('aria-required', 'true'); } } }); } </script> <span class="sr-only">Press Alt + 0 within the editor to access accessibility instructions, or press Alt + F10 to access the menu.</span> <textarea name="ctl00$ctl00$cpContent$cpContent$shareBody$txtBody" rows="2" cols="20" id="ctl00_ctl00_cpContent_cpContent_shareBody_txtBody" style="height:175px;"> Check out this article I found in the Services Portal knowledge base.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=283&quot;&gt;https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=283&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Get Help! Support Options from Pitt IT&lt;br /&gt;&lt;br /&gt;How to get technical support from Pitt IT</textarea> <span id="ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor" style="display:none;"></span> <span id="ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength" style="display:none;"></span> </div> </div> <div class="modal-footer text-left"> <button id="btnShare" type="button" class="btn btn-primary js-progress-button"> <span class="fa-regular fa-paper-plane" aria-hidden="true"></span><span class="padding-left-xs">Send</span> </button> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> </div> </div> </div> </div> </div> </div> </main> <script type="text/javascript"> //<![CDATA[ var Page_Validators = new Array(document.getElementById("ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor"), document.getElementById("ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength")); //]]> </script> <script type="text/javascript"> //<![CDATA[ var ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor = document.all ? document.all["ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor"] : document.getElementById("ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor"); ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor.controltovalidate = "ctl00_ctl00_cpContent_cpContent_shareBody_txtBody"; ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor.focusOnError = "t"; ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor.display = "None"; ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor.enabled = "False"; ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid"; ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor.initialvalue = ""; var ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength = document.all ? document.all["ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength"] : document.getElementById("ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength"); ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength.controltovalidate = "ctl00_ctl00_cpContent_cpContent_shareBody_txtBody"; ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength.focusOnError = "t"; ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength.errormessage = "Message cannot be longer than 0 characters (including formatting characters)."; ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength.display = "None"; ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength.enabled = "False"; ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength.evaluationfunction = "CustomValidatorEvaluateIsValid"; ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength.clientvalidationfunction = "validateCommentLength"; //]]> </script> <script type="text/javascript"> //<![CDATA[ setNavPosition('TDKnowledgeBase');window.CKEDITOR_BASEPATH = 'https://services.pitt.edu/TDPortal/Content/ckeditor/'; //]]> </script> <script src="https://services.pitt.edu/TDPortal/Content/ckeditor/ckeditor.js?t=C6HH5UF" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ var CKEditor_Controls=[],CKEditor_Init=[];function CKEditor_TextBoxEncode(d,e){var f;if(typeof CKEDITOR=='undefined'||typeof CKEDITOR.instances[d]=='undefined'){f=document.getElementById(d);if(f)f.value=f.value.replace(/</g,'&lt;').replace(/>/g,'&gt;');}else{var g=CKEDITOR.instances[d];if(e&&(typeof Page_BlockSubmit=='undefined'||!Page_BlockSubmit)){g.destroy();f=document.getElementById(d);if(f)f.style.visibility='hidden';}else g.updateElement();}};(function(){if(typeof CKEDITOR!='undefined'){var d=document.getElementById('ctl00_ctl00_cpContent_cpContent_shareBody_txtBody');if(d)d.style.visibility='hidden';}var e=function(){var f=CKEditor_Controls,g=CKEditor_Init,h=window.pageLoad,i=function(){for(var j=f.length;j--;){var k=document.getElementById(f[j]);if(k&&k.value&&(k.value.indexOf('<')==-1||k.value.indexOf('>')==-1))k.value=k.value.replace(/&lt;/g,'<').replace(/&gt;/g,'>').replace(/&amp;/g,'&');}if(typeof CKEDITOR!='undefined')for(var j=0;j<g.length;j++)g[j].call(this);};window.pageLoad=function(j,k){if(k.get_isPartialLoad())setTimeout(i,0);if(h&&typeof h=='function')h.call(this,j,k);};if(typeof Page_ClientValidate=='function'&&typeof CKEDITOR!='undefined')Page_ClientValidate=CKEDITOR.tools.override(Page_ClientValidate,function(j){return function(){for(var k in CKEDITOR.instances){if(document.getElementById(k))CKEDITOR.instances[k].updateElement();}return j.apply(this,arguments);};});setTimeout(i,0);};if(typeof Sys!='undefined'&&typeof Sys.Application!='undefined')Sys.Application.add_load(e);if(window.addEventListener)window.addEventListener('load',e,false);else if(window.attachEvent)window.attachEvent('onload',e);})();CKEditor_Controls.push('ctl00_ctl00_cpContent_cpContent_shareBody_txtBody'); CKEditor_Init.push(function(){if(typeof CKEDITOR.instances['ctl00_ctl00_cpContent_cpContent_shareBody_txtBody']!='undefined' || !document.getElementById('ctl00_ctl00_cpContent_cpContent_shareBody_txtBody')) return;CKEDITOR.replace('ctl00_ctl00_cpContent_cpContent_shareBody_txtBody',{"autoGrow_maxHeight" : 175, "autoGrow_minHeight" : 175, "contentsCss" : ['https://services.pitt.edu/TDPortal/Content/ckeditor/contents.css', '/TDPortal/Content/FontAwesome/css/fontawesome.min.css', '/TDPortal/Content/FontAwesome/css/brands.min.css', '/TDPortal/Content/FontAwesome/css/regular.min.css', '/TDPortal/Content/FontAwesome/css/solid.min.css', '/TDPortal/Content/FontAwesome/css/v4-shims.min.css'], "height" : "175", "htmlEncodeOutput" : true, "image_previewText" : " ", "removePlugins" : "magicline,devtools,templates,elementspath,fontawesome,youtube,uploadimage,simpleimage,remoteimageblocker", "title" : "Message", "toolbar" : "TDSimple"}); }); var Page_ValidationActive = false; if (typeof(ValidatorOnLoad) == "function") { ValidatorOnLoad(); } function ValidatorOnSubmit() { if (Page_ValidationActive) { return ValidatorCommonOnSubmit(); } else { return true; } } Sys.Application.add_init(function() { $create(Sys.UI._UpdateProgress, {"associatedUpdatePanelId":null,"displayAfter":500,"dynamicLayout":true}, null, null, $get("ctl00_ctl00_upMain")); }); document.getElementById('ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ctl00_cpContent_cpContent_shareBody_rfvCkEditor')); } document.getElementById('ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength').dispose = function() { Array.remove(Page_Validators, document.getElementById('ctl00_ctl00_cpContent_cpContent_shareBody_cvMaxLength')); } //]]> </script> </form> <footer role="contentinfo"> <div class="master-footer"> <footer role="contentinfo"> <div class="master-footer" style="background-color: #2B2B2B"> <div class="container"> <div class="row"> <div class="site_title col-md-3"> <br><br> <div class="footer-logo footer__logo"> <img src="/SBTDPortal/BE/Logo/2/30" width="150" alt="University of Pittsburgh logo"> </div> <h3 class="footer-site_name footer__title"></h3> <div class="nodesinblock first odd"> <div class="block-column"> <span style="color: #FFFFFF"> <p><strong>Pitt IT Administrative Offices</strong></p> <p> Cathedral of Learning, 7th Floor<br> 4200 Fifth Ave.<br> Pittsburgh, PA 15260 </p> <p><strong>Follow @UPittIT</strong></p> <div class="social-links"> <p> <a style="color: #FFFFFF" href="https://www.facebook.com/upittit" target="_blank" title="Follow us on Facebook"><i class="fa fa-facebook"></i></a> <a style="color: #FFFFFF" href="https://www.instagram.com/upittit" target="_blank" title="Follow us on Instagram"><i class="fa fa-instagram"></i></a> <a style="color: #FFFFFF" href="https://twitter.com/upittit" target="_blank" title="Follow us on Twitter"><i class="fa fa-twitter"></i></a> <a style="color: #FFFFFF" href="https://www.youtube.com/channel/UCAS_IcP2kFs55LO0ZjYb_zw" target="_blank" title="Watch a Video on YouTube"><i class="fa fa-youtube"></i></a> </p> </div> <p>&nbsp;</p> </span> </div> </div> </div> <div class="col-md-3"> <br><br> <h4><a style="color: #FFFFFF" href="https://services.pitt.edu/TDClient/33/Portal/Requests/ServiceDet?ID=96">Technology Help Desk</a></h4> <p><a style="color: #FFB81C" href="https://services.pitt.edu/TDClient/33/Portal/Requests/TicketRequests/NewForm?ID=itE6fP3hNtM_&amp;RequestorType=Service" target="_blank"><img src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=cf74cfa9-f366-4342-9858-332315e3688a.png&amp;beidInt=2" style="width: 25px" alt="Ticket Mouse Icon"> Submit a Help Ticket</a></p> <p><a style="color: #FFB81C" href="https://salesforcechat.pitt.edu/" target="_blank"><img src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=64c10005-8241-46c9-b4c3-4ee2d80ac010.png&amp;beidInt=2" style="width: 25px" alt="Chat Icon"> Chat with an Expert</a></p> <p style="color: #FFB81C"><img src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=297d5743-5812-44c7-ae45-fcfc0b8c01b4.png&amp;beidInt=2" style="width: 25px" alt="Call Phone Icon"> Call 412-624-HELP (4357)</p> </div> <div class="col-md-3"> <br><br> <br> <p><a style="color: #FFB81C" href="https://services.pitt.edu/TDClient/33/Portal/KB/"><img src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=47634d5b-9a6c-4b48-aa29-532f51c2846a.png&amp;beidInt=2" style="width: 25px" alt="KB Information Icon"> Search Help Articles</a></p> <p><a style="color: #FFB81C" href="https://www.technology.pitt.edu/help-desk/technical-support-walk-locations" target="_blank"><img src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=dba22f53-a35e-4c6c-ba27-9fca9a1786a7.png&amp;beidInt=2" style="width: 25px" alt="Drop-In Door Icon"> Visit a Drop-In Location</a></p> <p style="color: #FFB81C"><img src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=32f7e640-dbcd-4541-b429-670f874e18d3.png&amp;beidInt=2" style="width: 25px" alt="Email Envelope Icon"> Email helpdesk@pitt.edu</p> </div> <div class="col-md-3"> <br><br> <div> <h4 style="color: #FFFFFF">Join Our Team</h4> <p> <a style="color: #FFB81C" href="https://www.technology.pitt.edu/about-us/employment/professional-careers">IT Professional Opportunities</a><br> <a style="color: #FFB81C" href="https://www.technology.pitt.edu/about-us/employment/student-employment">IT Student Employment</a> </p> <h4 style="color: #FFFFFF">Technology Training</h4> <p> <a style="color: #FFB81C" href="https://www.technology.pitt.edu/technology-training#Instructor-Led%20Workshops%20Anchor">Instructor-Led Workshops</a><br> <a style="color: #FFB81C" href="https://www.technology.pitt.edu/services/ondemand-training-linkedin-learning">On-Demand Training (LinkedIn Learning)</a> </p> </div> </div> </div> </div> </div> <div class="container-fluid"> <div class="container"> <div class="region region-copyright"> <section class="block block-block clearfix"> <span>Copyright 漏 2023</span> </section> </div> </div> </div> </footer> </div> </footer> <script> // Inject the Google Analytics isogram. This must happen here because it // cannot be injected through an external javascript library. (function (i, s, o, g, r, a, m) { i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () { (i[r].q = i[r].q || []).push(arguments) }, i[r].l = 1 * new Date(); a = s.createElement(o), m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m) })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga'); // Per Incident #6707155. Need to focus on img. pseudo-class :focus-within is not supported in IE (function ($) { var $anchor = $('#divLogo a'); var $beLogo = $('#divLogo a img'); $anchor.focus(function () { $beLogo.addClass('accessibility-focus-on-logo'); }).blur(function () { $beLogo.removeClass('accessibility-focus-on-logo'); }); $.ajax({ url: "/TDClient/33/Portal/Chatbots/GetScript", type: "GET", dataType: 'text', success: function (data) { var jQueryAjaxSettingsCache = jQuery.ajaxSettings.cache; jQuery.ajaxSettings.cache = true; $(document.body).append(data); jQuery.ajaxSettings.cache = jQueryAjaxSettingsCache; } }); window.addEventListener("message", (event) => { // Only accept events that come from the same origin if (event.origin != window.location.origin) { return; } switch (event.data.type) { case "authenticate-using-popup": handleAuthenticateUsingPopup(event.data.payload); break; case "authenticated-successfully": handleAuthenticatedSuccessfully(event.data.payload); break; default: break; } }); function handleAuthenticateUsingPopup(payload) { let loginUrl = '/TDClient/33/Portal/Login.aspx'; if (payload.successCallbackUrl) { loginUrl += '?SuccessCallbackUrl=' + payload.successCallbackUrl; } window.open(loginUrl, "_blank", "popup=1"); } function handleAuthenticatedSuccessfully() { event.source.close(); window.location.href = window.location.href; } })(jQuery); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10