CINXE.COM

Article - Getting Help at a Pitt IT D...

<!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=20241122000758"></script><script src="/TDPortal/Content/Scripts/jquery-migrate/1.4.1/jquery-migrate.min.js?v=20241122000758"></script><script src="/TDPortal/Content/Scripts/jquery-ui/1.13.2/jquery-ui-1.13.2.custom.timepicker.min.js?v=20241122001144"></script><link href="/TDPortal/Content/Styles/jquery-ui/1.13.2/jquery-ui.compiled.min.css?v=20241122001146" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/bootstrap/3.4.1/dist/css/bootstrap.min.css?v=20241122000758" rel="stylesheet" type="text/css" id="lnkBootstrapCSS" /><script src="/TDPortal/Content/bootstrap/3.4.1/dist/js/bootstrap.min.js?v=20241122000758"></script><link href="/TDPortal/Content/FontAwesome/css/fontawesome.min.css?v=20241122000754" rel="stylesheet" type="text/css" id="lnkFontAwesome" /><link href="/TDPortal/Content/FontAwesome/css/solid.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/regular.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/brands.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/v4-shims.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/bootstrap_custom.min.css?v=20241122001144" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/TDStyles.min.css?v=20241122001146" 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=20241122001144"></script><script src="/TDPortal/Content/Scripts/underscore/1.12.1/underscore-min.js?v=20241122000758"></script> <script src="/TDClient/Scripts/clientOS.min.js?v=20241122001134"></script> <script src="/TDClient/Scripts/collapseMe.min.js?v=20241122001134"></script> <script src="/TDClient/Scripts/tdsearchfilter.min.js?v=20241122001134"></script> <script src="/TDClient/Scripts/SiteSearch.min.js?v=20241122001134"></script> <script src="/TDPortal/Content/Scripts/tdx/elasticsearchAutocomplete/elasticsearchAutocomplete.min.js?v=20241122001142"></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=20241122002306"></script><link href="/TDPortal/Content/select2/v3/select2.compiled.min.css?v=20241122002306" rel="stylesheet" type="text/css" id="lnkSelect2" /> <script src="/TDClient/Scripts/attachmentHandler.min.js?v=20241122001144"></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: 'I75IwMLbJgbydhS9ZuAprEbsY4J3oR-zxRiv4sEoG8vt5JD5aMVriadmdvj7ZnA1yG0ACMhW_DaJCnE9evMdOOxegwA1:JuzK28-6n6nDIK5l_d94ZkCpxdimDe0ulOc1cpEOS70n4qzPWo17K_d4gEDJdoSlJhVlSU6upMAeYJ2v2sQ4gZzUgS41', itemId: 142, 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="Getting Help at a Pitt IT Drop-In Support Location" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=142" /> <meta property="og:image" content="https://services.pitt.edu/TDPortal/BE/Logo/2/33" /> <meta property="og:description" content="Drop-In Support provides hands-on help for the personal devices of students, faculty, and staff." /> <meta property="og:site_name" content="University of Pittsburgh - Knowledge Base" /> <meta property="article:section" content="Drop-In Support" /> <meta property="article:published_time" content="2023-07-25T15:16Z" /> <meta property="article:modified_time" content="2024-11-22T23:17Z" /> <meta property="article:tag" content="disd" /> <meta property="article:tag" content="wisd" /> <meta property="article:tag" content="in-person" /> <meta property="article:tag" content="tsd" /> <meta property="article:tag" content="dis" /> <meta property="article:tag" content="Support" /> <meta property="article:tag" content="Help" /> <meta property="article:tag" content="Drop-In" /> <meta property="article:tag" content="Walk-In" /> <meta property="article:tag" content="Hands-on" /> <meta property="article:tag" content="Assistance" /><title> Article - Getting Help at a Pitt IT D... </title></head> <body> <form method="post" action="/TDClient/33/Portal/KB/ArticleDet?ID=142" 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=638610727965203766" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=nv7asgRUU0tRmHNR2D6t1NXOAgTb3J37FC1L2PfbYYFmSPm-ANa7n6FP0x7BAsbHeL4jfY3ptd1q7zKKVI7DbuXZcwEoKOwj9WxCI1VrQlbWE1Trg1t1GmJDN43kQMJsB7X8tw2&amp;t=64bd211b" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=NJmAwtEo3Ipnlaxl6CMhvmVxW3-Ljsg_2Hna32smxrg-6ogyYAN3UTPsJQ8m1uwzn_kuf2Wpne6NSFmYui3h0wCQhJN3ZUiLTNkvhiIgZpq74-lKmofUPQGJ8own8RI2_mwAcmvlSj2WBnqwm5Wj4cyNvv81&amp;t=ffffffffb201fd3f" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=dwY9oWetJoJoVpgL6Zq8OLdGoo5BVWQ_Eo60QZTEhEcHeiVfwgY9tLCgzdZ5TRwvrwYEnOvujbNccOVLUfWtUg4HivSIsewg6JABxkBGEqVVV64eiRyCAsPDqh6tUioISUQKB74sWMO4Er2mHrWEIWs_sBM1&amp;t=ffffffffb201fd3f" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=xtfVMqdF1exC2MBVkOJwMveStDR5kg3dbZWgIXMXZmB1xXom6CcIrWFgHa7jsp4qJuFW2L5XShudyzlBsIO3JhCfiU5HmL2BDz__mCv9dznmBlEMS7LvcYg6wTdPTrAXIXI2CvtjwlnpZd-j4Zpsx2wG_uA1&amp;t=638678132040000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=sp7vCoAo-SSYfpsQ1sYBBeEDnwCGxDYEwZCM0ler88yoVZIPDXMk1C3XF2L2L0xrbB8Rvhli51TswRlmPIOCZgaY58lKhPr-Pv1jTFJ1oUAu7x6RDtNFZUxbtxs3KYQGLK6FpPD5bKuB0e0NmS9HkAqRVks1&amp;t=638678132040000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=icMURy63hv40LPPfq4rTvmm-RfB_YkC6rEEF_2QOO68q3TseXYNBetRKKgBXJ8mn2e8UIgCPiV23HaQUZbjySMHqSgmYZgLcYltBqwD2_EK8aQ08zBuqc3ZBVZITQrbtn6w46dRxFLibMIQg0Aho73rn8Rpxrzg5YMG_JR0UOrUR0wlZ0&amp;t=638678132040000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=1HpFfNpwNihNfEP1lyJHvdPVqbv8KRoFH4-_ZORUgPOP-bqmmtIJRvFQc7828Vf59O_-fdBXcnwdv-hYp5RptPuHmMR0kGQM0_3rS4Z7sKfC7jy9Cc_8fyfcUWa8psszacEQlAXHPXmNwyRymbGSywEmhrE1&amp;t=638678132040000000" 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-295d73c43ba94844989c0575e2394eec" class="gutter-bottom input-group site-search" style="max-width: 400px;"> <div id="SiteSearch-dropdown-295d73c43ba94844989c0575e2394eec" class="input-group-btn"> <button type="button" id="SiteSearch-filter-295d73c43ba94844989c0575e2394eec" 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-295d73c43ba94844989c0575e2394eec">Search the client portal</label> <input id="SiteSearch-text-295d73c43ba94844989c0575e2394eec" 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-295d73c43ba94844989c0575e2394eec" 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-295d73c43ba94844989c0575e2394eec', searchComponentFilterButtonSelector: '#SiteSearch-filter-295d73c43ba94844989c0575e2394eec', searchButtonSelector: '#SiteSearch-button-295d73c43ba94844989c0575e2394eec', searchFilterDropdownSelector: '#SiteSearch-dropdown-295d73c43ba94844989c0575e2394eec', 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%3d142"> 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%3d142">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=8">Printing, Desktop and Mobile Computing, and Software</a></li><li class="active"><a href="/TDClient/33/Portal/KB/?CategoryID=75">Drop-In Support</a></li><li class="active">Getting Help at a Pitt IT Drop-In Support Location</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;"> Getting Help at a Pitt IT Drop-In Support Location </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=%2523disd" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl00_TagControl1_lnkDisplay" title="disd">disd</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=%2523wisd" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl02_TagControl1_lnkDisplay" title="wisd">wisd</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=%2523in-person" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl04_TagControl1_lnkDisplay" title="in-person">in-person</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=%2523tsd" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl06_TagControl1_lnkDisplay" title="tsd">tsd</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=%2523dis" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl08_TagControl1_lnkDisplay" title="dis">dis</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=%2523Support" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl10_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_ctl12_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=%2523Drop-In" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl14_TagControl1_lnkDisplay" title="Drop-In">Drop-In</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=%2523Walk-In" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl16_TagControl1_lnkDisplay" title="Walk-In">Walk-In</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=%2523Hands-on" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl18_TagControl1_lnkDisplay" title="Hands-on">Hands-on</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=%2523Assistance" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl20_TagControl1_lnkDisplay" title="Assistance">Assistance</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>Phone, email, and chat are very useful, but sometimes it’s more convenient to get help in person. Pitt IT operates Drop-In Support to provide hands-on&nbsp;help&nbsp;for the <strong>personal devices</strong> of students, faculty, and staff. (For assistance with University-owned equipment, <a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=283&amp;SIDs=40">contact your unit's IT staff directly</a>.)</p> <p>From setting up a new computer or tablet with Pitt resources&nbsp;to trouble-shooting a thorny issue, a Technical Consultant can&nbsp;provide the personal support you need.<span style="color: #000000"></span></p> <p><strong>Hardware repair is not available</strong>.&nbsp;For supported personal devices,&nbsp;<a href="http://www.pittuniversitystore.com/SiteText?id=83020" target="_blank">The 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>&nbsp;offers free diagnostics for students, faculty, and staff—separate from Pitt IT Drop-In Support. For more information, <a href="http://www.pittuniversitystore.com/SiteText?id=83020">contact the Repair Center directly <span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-external-link "></span></span></a>.</p> <h2><strong><span style="color: #003594"><a name="Detail"></a>Detail</span></strong></h2> <section> <section> <div class="alert alert-info" role="alert"> <h3><strong>Before Stopping By</strong></h3> <ul> <li>Back up your data.</li> <li>Have your Panther Card (Pitt ID), computer, charger, power cord, and&nbsp;and any unique peripherals on hand. The consultant area supplies standard PC and Mac monitors, mice, and keyboards for troubleshooting purposes.</li> <li>Bring the original software or license verification for any software installation.</li> </ul> </div> <p>There are two Drop-In Support locations:&nbsp;in <a href="https://map.concept3d.com/?id=1315#!m/380196" target="_blank"><span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-map-marker-alt " style=""></span></span> the University Store on Fifth</a> and <a href="https://map.concept3d.com/?id=1315#!m/376049" target="_blank"><span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-map-marker-alt " style=""></span></span> Cathedral of Learning room G-62</a>.</p> <h3><strong>Available Services</strong></h3> <ul> <li><strong>Device Setup:</strong><br> Get help with connecting to&nbsp;Wi-Fi*, configuring a smartphone or tablet to receive Pitt Email, installing Microsoft 365 applications, connecting to Pitt Print Stations, or changing passwords.<br> &nbsp;</li> <li><strong>System Troubleshooting:</strong><br> Get help with virus&nbsp;removal, installing software, or repairing software.<br> &nbsp;</li> <li><strong>Drop-Off Service:</strong><br> If an operating system repair is necessary or repairs require more time, the Drop-In Support team may ask that you check in your device.</li> </ul> <p>*Networking support is available for wireless access to PittNet only. For issues that involve Wi-Fi service in residence halls on the Pittsburgh campus, contact the&nbsp;<a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=222#Related" target="_blank">MyResNet</a>&nbsp;support desk. For problems that involve outside Internet Service Providers (ISP)—such as Comcast, Verizon, or Armstrong—contact your ISP for assistance.</p> <ul> </ul> <hr> <h4><em>​The University’s Drop-In Support was recognized by&nbsp;University Business's&nbsp;national “Models of Efficiency” program, which&nbsp;honors institutions that meet the business and technology challenges of today’s campus.</em></h4> </section> </section> <aside role="complementary"> <section> <article> <section> <p><img alt="" src="https://www.technology.pitt.edu/sites/default/files/images/TSD%20for%20web.jpg"></p> <p>&nbsp;</p> <h2><strong><a name="Hours"></a><span style="color: #0000CD">Hours By Location</span></strong></h2> <h3><em>Thanksgiving Recess Hours</em></h3> <p><em>November 23 - December 1, 2024</em></p> <div class="table-responsive"> <table border="1" cellpadding="3" cellspacing="0" class="table table-striped table-hover table-bordered table-condensed" style="width: 60%"> <thead> <tr> <th scope="row" style="white-space: nowrap; width: 20%">&nbsp;</th> <th scope="col" style="text-align: center; white-space: nowrap; width: 20%"><a href="http://map.concept3d.com/?id=1315#!m/376049" target="_blank"><span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-map-marker-alt " style=""></span></span> CL G-62</a></th> <th scope="col" style="text-align: center; white-space: nowrap; width: 20%"><a href="http://map.concept3d.com/?id=1315#!m/380196" target="_blank"><span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-map-marker-alt " style=""></span></span> University Store</a></th> </tr> </thead> <tbody> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Sat Nov 23</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Sun Nov 24</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Mon Nov 25</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">9 a.m. - 5 p.m.</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Tue Nov 26</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">9 a.m. - 5 p.m.</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Wed Nov 27</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">9 a.m. - 5 p.m.</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Thu Nov 28</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Fri Nov 29</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Sat Nov 30</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Sun Dec 1</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> </tbody> </table> <p><em>*The Drop-In Support Desks will be closed on any University-observed holidays. See&nbsp;<a href="https://25livepub.collegenet.com/calendars/pitt-academic-calendar" target="_blank">University Academic Calendar <span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-external-link "></span></span></a>&nbsp;for details.&nbsp;The operating hours for Drop-In Support location at the University Store are dependent upon the hours of the University Store on Fifth, which are subject to change. See&nbsp;<a href="https://www.pittuniversitystore.com/SiteText?id=83063">University Store Hours <span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-external-link "></span></span>&nbsp;</a>for details.</em></p> </div> <h3><em>Fall Hours</em></h3> <div class="table-responsive"> <p><em>December 2 - December 17, 2024</em></p> <div class="table-responsive"> <table border="1" cellpadding="3" cellspacing="0" class="table table-striped table-hover table-bordered table-condensed" style="width: 60%"> <thead> <tr> <th scope="row" style="white-space: nowrap; width: 20%">&nbsp;</th> <th scope="col" style="text-align: center; white-space: nowrap; width: 20%"><a href="http://map.concept3d.com/?id=1315#!m/376049" target="_blank"><span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-map-marker-alt " style=""></span></span> CL G-62</a></th> <th scope="col" style="text-align: center; white-space: nowrap; width: 20%"><a href="http://map.concept3d.com/?id=1315#!m/380196" target="_blank"><span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-map-marker-alt " style=""></span></span> University Store</a></th> </tr> </thead> <tbody> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Monday - Thursday</th> <td style="text-align: center; white-space: nowrap; width: 20%">10 a.m. - 8 p.m.</td> <td style="text-align: center; white-space: nowrap; width: 20%">10 a.m. - 6 p.m.</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Friday</th> <td style="text-align: center; white-space: nowrap; width: 20%">10 a.m. - 6 p.m.</td> <td style="text-align: center; white-space: nowrap; width: 20%">10 a.m. - 5 p.m.</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Saturday</th> <td style="text-align: center; white-space: nowrap; width: 20%">10 a.m. - 6 p.m.</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> <tr> <th scope="row" style="white-space: nowrap; width: 20%">Sunday</th> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> <td style="text-align: center; white-space: nowrap; width: 20%">Closed</td> </tr> </tbody> </table> </div> </div> <p><em>*The Drop-In Support Desks will be closed on any University-observed holidays. See&nbsp;<a href="https://25livepub.collegenet.com/calendars/pitt-academic-calendar" target="_blank">University Academic Calendar <span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-external-link "></span></span></a>&nbsp;for details.&nbsp;The operating hours for Drop-In Support location at the University Store are dependent upon the hours of the University Store on Fifth, which are subject to change. See&nbsp;<a href="https://www.pittuniversitystore.com/SiteText?id=83063">University Store Hours <span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-external-link "></span></span>&nbsp;</a>for details.</em></p> <p>&nbsp;</p> <h3><strong>Customer Escalation Procedures</strong></h3> <p>The Drop-In Support Team is committed to providing you with the best possible service. In the event your questions or problems are still unresolved after consultation, please report your concerns to the Technology Help Desk at <a href="tel:4126244357"><span aria-hidden="true" aria-label="icon" role="region" tabindex="-1"><span class="fa-solid fa-phone " style=""></span></span> 412-624-HELP&nbsp;(4357)</a>.</p> </section> </article> </section> </aside> <p><span style="color: #000000"></span></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%3d142">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"> <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=142" 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=283">Get Help! Support Options from Pitt IT</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl00_ctlArticle_divSummary"> How to get technical support from Pitt IT </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=229">Learn About Pitt IT Computing Labs</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl01_ctlArticle_divSummary"> Information about Student Computing Labs </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=600">Understanding Alternative Authentication Devices for Duo</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl02_ctlArticle_divSummary"> Explore alternatives to the Duo Mobile smartphone app for multifactor authentication. </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 (1)</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> </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=20241122000758"></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=142&quot;&gt;https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=142&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Getting Help at a Pitt IT Drop-In Support Location&lt;br /&gt;&lt;br /&gt;Drop-In Support provides hands-on help for the personal devices of students, faculty, and staff.</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