CINXE.COM

Article - Virtual Student Computing Lab

<!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=20250224222540"></script><script src="/TDPortal/Content/Scripts/jquery-migrate/1.4.1/jquery-migrate.min.js?v=20250224222540"></script><script src="/TDPortal/Content/Scripts/jquery-ui/1.13.2/jquery-ui-1.13.2.custom.timepicker.min.js?v=20250224222910"></script><link href="/TDPortal/Content/Styles/jquery-ui/1.13.2/jquery-ui.compiled.min.css?v=20250224222912" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/bootstrap/3.4.1/dist/css/bootstrap.min.css?v=20250224222540" rel="stylesheet" type="text/css" id="lnkBootstrapCSS" /><script src="/TDPortal/Content/bootstrap/3.4.1/dist/js/bootstrap.min.js?v=20250224222540"></script><link href="/TDPortal/Content/FontAwesome/css/fontawesome.min.css?v=20250224222536" rel="stylesheet" type="text/css" id="lnkFontAwesome" /><link href="/TDPortal/Content/FontAwesome/css/solid.css?v=20250224222536" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/regular.css?v=20250224222536" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/brands.css?v=20250224222536" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/v4-shims.css?v=20250224222536" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/bootstrap_custom.min.css?v=20250224222912" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/TDStyles.min.css?v=20250224222912" 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=20250224222910"></script><script src="/TDPortal/Content/Scripts/underscore/1.12.1/underscore-min.js?v=20250224222540"></script> <script src="/TDClient/Scripts/clientOS.min.js?v=20250224222900"></script> <script src="/TDClient/Scripts/collapseMe.min.js?v=20250224222900"></script> <script src="/TDClient/Scripts/tdsearchfilter.min.js?v=20250224222900"></script> <script src="/TDClient/Scripts/SiteSearch.min.js?v=20250224222900"></script> <script src="/TDPortal/Content/Scripts/tdx/elasticsearchAutocomplete/elasticsearchAutocomplete.min.js?v=20250224222908"></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=20250224224038"></script><link href="/TDPortal/Content/select2/v3/select2.compiled.min.css?v=20250224224038" rel="stylesheet" type="text/css" id="lnkSelect2" /> <script src="/TDClient/Scripts/attachmentHandler.min.js?v=20250224222910"></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: 'O0dbn2TGf-70hfGLgmu9tNQCzaOhXKMPb0EaoeXphAEJ9Wtw_ASNS6fYWF8KmYJIvJrBBIEg774Ltx5ll35OHvwHoHM1:4TEkvfSofrO5vAxZOx9QU9r4s0ZfaXp5VrRJj-PriGZmjh8AkZ5_XeY9SZ-R1bHj_gdy7PckpCYaZdRiNYDucAL0RpE1', itemId: 230, 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="Virtual Student Computing Lab" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=230" /> <meta property="og:image" content="https://services.pitt.edu/TDPortal/BE/Logo/2/33" /> <meta property="og:description" content="The Pitt IT Student Virtual Computing Lab enables you to remotely access lab software and resources from any location, using almost any computer or mobile device, at any time of day. It&#39;s your personal 24/7, on-the-go lab." /> <meta property="og:site_name" content="University of Pittsburgh - Knowledge Base" /> <meta property="article:section" content="Computing Labs" /> <meta property="article:published_time" content="2023-08-02T18:36Z" /> <meta property="article:modified_time" content="2025-02-12T18:06Z" /><title> Article - Virtual Student Computing Lab </title></head> <body> <form method="post" action="/TDClient/33/Portal/KB/ArticleDet?ID=230" 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="7diCTjYQvZ7DWHOUkQDtjB2kmXDuZk3mXZnc7pziw7c4ZS5RpefMIPm7GmgJjHurkmrCknK6DVtQbaIRG7fFVPQ2AUd7I9lXuNTRkd1c8My0cAdp/ay5Desztt2vdcq73NgpkYwjRvyNLbp3DXHTsyEgLTel8XFzhU3m2oQPwkwhL5cyDMKE0CW+NfqIkNFg5MSaMYnhuqegy9SeuhufZBVBi3rRgijDOwKFHOcy2m2VnLlzyIQiAmmtGlXFKwXWk3SaqlDQGaG2fDd7Y2YQvtwrX8o/2/PFdkid0uibpJ3vGoCivkfaGL4P/cY/1yv4dp2MRHgjkXyh0eHcGe3meU0OVAOdRGg/37WsTjYh4TQ6d/XveIylQDToGCEWTpLcnWzhj0e7CYLlQL1If2uoYwuNJ0KNKeK36Cvv/58CYq2lUis3ATZXeipqUKs7t1g0fimwGkuWwoZYwCuRUm3lNIUhptvp8t+ZxCCfp28q8Z3X6jvxQZFIb4fhLIx/RquZbsZeKP6XB2YuUkuVfy43KTYd1qMLAoXl5cOMdz4RGTwSIoYp0Snp8/7mBr8aolgP2zX1qHWTvN+9sVzEh2+eFUOvScU68q7uwged7yBfmojGIecubLKoRS5F74NWYsAM5XtcO999eCr6p8vnM1nlDyh5AT9YAulAM1gz6JTmVhDyCVK3vs6iDZ/dzo/j0cobBE4SU1bYWvxBzAyDtrZyg6AuSqkg2/hS4GWwyd3i8tZmzEjMpMVRflShYwmkvdF9XRxIkjiZ5svMy079OI6up/CiZMwdqaXzlFpwJ1m2dLVXLCkzEqGZzmGxrSv07ir5dK8ejmkzysamPVl8hyYebW/UsCIcLFDTrT952vsbbGuGR4B2zJu/bLPhCgerY76nGxxGcaQ/dehJzGoJ3IxdjSH/35jf7nDfk7Dta8mlQyaK95QbV8PL9tj6u3k007SpyqwNaV9oeHMbwHVDmwSeX4j5QHai6z0s0XpenOv4D8XNY8NgMs9lEpco3q9gSv9fn2I1ZoT7mkDwy8Dw8y4qiNg8EfDw3t0sTvniDDnmAfEHtgEffsEai9kkEWSqPA+AaYDXzgHgaUiky/GtENYJFS0BFWx0AYF5rFYAk/HJPh1erNDea8caPz2C/fG45+P0vGYpJaxKGI6Qr/0lns0ZSVoLH8F8gsPtVvCFx/7McjNxwy1t6KpmvrBpE6OKNf45frmQtBN97dA/aUzDmRM01tLqQYVL66KPnHjzwh7voq1CBoZBTer11pAaiMLlJRvRh45wOslTiMksRfHkK1VD6L0D6Qnh3q6XXKFsXV5YeXQwiXyPYxY9aaDJi+fWM4wf5GJhpNer+TEjwksGp68Y/GjCV4WdOv1ZDwfjO0LDT6h+G/V/PdJPqTKW7kHkX4LfN2l5iGcwHK4SgNaIMFqfc7x4bpRv9RmxprbVCd9AiyEbLpkyhwAcDk3UDaDNlcJbMEFQ3voP/6LDiwxLqaZrwYyR3e836iehxAUMG+dlZyJOuaOfoUo9xL2jqLSZdMImDkszi4blYsbPUGPpjEFvHgMPlboAgbELjCsJjn9XuSM5HItobz44+xNaO83bDq0xKP3eyPmlVWSKC0aDnDQGHJLWsgLFoKA008SNN+gDiw7WZERIQ2EcmUs1i65WdUpAFpAOT6psPLXhNvDqRu+dJELOr+dVREqUc9+3GyXda3/q+LPuYIAcnWQ9+y/guySz9kTrG2L9uhgAeKhM1AYsjSC888D96icMWOxipf06acTGDKld6sVy5CRrYbCo9l4oYbovhmzZcWvDKe6VNz1MVeqjnrG56vRsVxxwyE5SWLEcK+TFNFRLuDTHQWr/V3EqJbdbw+974WEm4cZAkPxEb0OppOyIHv7t/pJKFJUvT0M3tiTV7bI2Fpeifs0Eex+zGZT98QnenhygmH7hGGDpjKoL8TDXA6dv8M0e8y8+dtDHi49yAW4Nxhg9wozfPxkWHs5tKbG7LqdMDf0rTubMuq2FM1Q1SrzRxo/JwtZbeDKyw3aCSBMbQ22C/2YkaQG6+M832jRl4EAsqXStB65FakvrBGfgseyqMU7vr644qmJParbQAZbnAMnpZ/+0pZR5Oy/+ekgYvvkSE00XU0JTQWwaGfH3oc3oQkQzidszNdgGKEi6ov05dqicAWVfdmxZzwdfcLMlHgD4HanMBffB89Uf+Di/wwfpcORf2v6xa3BHpjlmsueRPyaYA9CTtJDSE+GTGAuqHvdg74KPCkew5xojNjEZ46Mpvwi1ubXjFzUbqqCY6wOfoHvPOuW6ng9CY4YvBnr7GJVSw+oIUSe/Los8pLujMpTwEl+bPk5BrlAamw9Nxp5J/JWJFbGqITLpxU5L9taVqURgOoBfLB321EnUeOzocW2lo2K5608eZazbk5LK81+E6UsWiIyhUXCHsuHVMnYC8ZMEBWSSkVgJER23ucpGHamRvW308Xspr14yFRBFjBp5pRDs/Un3NtvwykM6p4V5ojGcplHfP5+X4WK3g5dG4pz5HfwkOgijXGWPnEmXm0K7Ybz+CAyuyx52WyJ8917bOVVTA4AAo3spACuPdnb8X7d+qaLhXhBmg/yCeP9OYxfHI02JAMtkBrCGpfTQeyyKv1r9sNUK6nTrWu9xrpuwNPjU+TPIC9ceUuDl8ippgrgMveQN76Mq6SvNc8SZ3Hpw+7qBJifmF6US4WnVLshUt+Ngb6tpGPGDdgi702cggA0IIWb/41uLRaKzwmXLZjY2ZcDSz3eU5mdzwFtLq7KA29g8fTInFLGbbwH4/d8A28OELbjyAfbGmnytyNQh+pPGqYNWlnRRVNy6reIXxbrbT9nKaPLVcOi/Q+fvvRr7ImRBgavPbCngwYvyj3Q+5QPe7Da2JX4md3xBbLBAQj+6hDf/zKsnxR9RBLbVKIKHQk5xU2QvaJMVMKt31+qRzYp4FkFEja9KduGkjDvweN8ofH86vHhXg7HjX2NQYTQIhDp4rlIX1J9jnIHsTGil4fEsJmMfgnJhOZyBXfHqClcishnG1zRDNyqgZCSMHo/5gJOx2xDLn0kqHZsfdF6yQLrYKuvZNrgXmfQQifhKhJe17zUTo0lrgmtP1PzEOSIqTq/E9VHwVLI8a7UsvKSrBX22B2Tw5yi4HRGFGD3Nr58YxYEOAKuzDkqXkU5KK8xj+OblFntu6625l7ysHfNPfQN1ui4zpAftab6cJiJOt3tUNo/B88ICbg1L2n1VxGsHoe8ta1k/OEh2/Sixpw7KulXQFXKUPzMX/iyZSOvNBtAfdwliiHEEShEIXx6duv/X3hilBx+1fnxm+dV8TR+7JXsv0N/lyop5KhbGJjOt0HrhvLPS0Ry/Saq1Lpu4qFuzu9wANprJZmif3JeKcnmBXFx3YL2pOwkCE+3V5jy46j0UOKZwOK4fFfZpS8O3rhucD1Vvs3gp8Nl1sL5oR22+4RhH028/gejTfUzMSlOYXsmqugnw64AeX1uugWFFlybKt2KAdahe2qHdjyXL+GvpdFPXQ/QCZ5OIMoaIhRptsdOlhLhLB9zxwgM+5QQBF+p3OVtpKR08QKIcbibS4PZy0/yvI+W/Z5rL2M/K8Qek7FUEXamBiwhDy/WIsv1DT3EpYkJR918Z3JBvGjkcesyBaJqPmd4G3rTnUXyxr2SouqyWv+TU03Fp093Coiv23j4yvZoy5kyJ3HgZTqEqf7wBGQvAc+i3fxtdKyQ9Q7jsBZIwxPsi23V7yo/yvF8MUy0h9tfgCLifjdYg3DvSAHRNmDJQOvv4scYCvktEVnz8nzqXQOSBLpe/TQ+Vo0hiWrp8UbXMi3B1YvyYUVN8aILLO1JIaSWwJnSIy5przx5fkTbFtrT5uCiy7yc9UkVpyeKWdMsUKWwchk1H2XwiQrB29WLDc3rsE+2kdI3jJ9u1zVPtZ/T6h+8mAcCDHPxhPmuV5wM7MwcdvIa43ojEk3qK/yew6DmMzWAzixyYAw+K8ZLGI8+lA3huTy2HlyXDTUCERUHQinCoHq6dg7W2l0At9AqW68VIm//4bm8GdHeSimOIq2CUI1+kbuZlz+SnjXY/S8MfBGF1MunaTiXEoWQYZyHcFg9JZFSYz2w35DL/TPO3WPkONtao/UVApM0wkmft72uqRoynKuLHCOoBNpjbaNDw1YjNC8e+PDHx5CO80+ZbTVqptIpRD9K4LRj5bINFUvy9pPXMeHGtBHAeeep+KukOQMASlefQ8Az6dInmsV4Y7z3rAESV6FL9QQWIY3SvDD2WC51xrSIhfJNsNUdD+2dLOSStvTEeJ+GV+HyHrvd4AwAA6cBiVhvWkQIZSY2jQ1j0qoujWT750OUjK4Mv8IkVB+9VJCrAUDVu/aJpWth+9hkIQopMZXeGhJc35wYbp5yeNXXZ+9JL/f4Nj2tQSQPn9x4Vp5hxJHj+Y9KG4DJp02X4au243vdQOJVQ5/x8/Ko26PyoRZYD94L+97k5tdIz0/BHTKgS1MGitaFU4Gk7XkI04bYf/qakzfbMLBIw4CIvgTKpSnnJE9bVnoT3UkIyuCeNN+rM6Not8gPhsvCVCLs7xmnA2Kjvmczqiwxmx+GVUJpM6JUurjjBfpJWq6H1R3IN6VxbQevxQdVG9GsJthd5GijdHzFxDEyB0TxIiw+MK27HmJA+gk7V1qu0N3tssD5Em9JcxRPiMDrpOOiVpFkXcobciWbCEwTQjh+DcINAeGPG01mU/Y0Ym2qK3ygyiQGt2353iQg9jGEb/Q+Cbws4tAmVdiApVLLV6WxY3Z2JIb4ccN4jOe1EiWRcb2HLVakyC3r/Uy+RHzINxyE3duYzRwSfB8xwB7SlHgYkRD3aFD46zplrvheHjGqiRCaAH/fqcpowWC6cwV7meitDDAqZ0eJoVbnzXAkHnDsKXmEcQ7sBWkl8Xs6qKEs1gIA7fZf6xqXLpOdjjPfjATnVkSIPLx8Bnbg6o+RCV42VEGU3YuWff1MW9mUrJfv+1+6TYjfaNDeTzzfumrYD9U/OknIBVtxj/a/cF39U9KIpKch8j+s1ElPqQ5RiBjFHYuAxLR9Xbpo8QVgWb2B1VO83iP7WY9zRJRnW81A+83s2dz1zeSYAhM+rhkamrqpJN8UqEtsn8koKARuvVm7wRznFpKNcAr0FrZM3o7xrlsID+IsGMPctnzME+cweg1eYQgbCzuBBZwfs/lKYKau/CE7zOa+MhiDC0VFHH8tCvn3oo25xMSElQIs9ebIo31bjkNAb3Yp7LQnrUGqVTUHR7M97kMMx1h3umZPcIP5LiXeluF1Wn+twkb8x7mjRkorCC0YEtFOvOCLEpz40v6Ar8AnSAg2Tc8B2PCZSvZHigFodnhr/xZMy1h3OtyZ0doJwquRWRunoux+2GAQ8YiblFvLH7isudET+WDU7biWig4mQEiogwkxyvir0FCiQ1dJvScBgh46mzvn6bBTV31tJInCnmw2Z23OxtbN14HsUb6DBhDhTFN1LqCA/F8I014bSDAGz4scFY1qZbzJoCaRnMc1QYJsL1W5tO8oXCYx37/cRiijZtdd7SdAfhzlckiJ0j2f9NGi1wowUnod5NAvFY2Rm2F3XXu0zgthWmHjU23K2Q0QAXCqSjse8mc5X+2j2HTUFtxQMAeTiRd7OVqDLDEfGtSPln+UD6PbddghYqmQioMCuYdyPBG97DIys8xx0v8kXpXPGLd8MLNhVHxsjMfqpwL3dgFAcLkF68rt6JrZfcRBFNKORCh0z2+c4w8JbRVh6GupgDhZ5Lydclpg3ZF8spaP+sAGLm1OoCG/nSa4oNv8TrnQ+rpP3g0FxGwgCwdKzbFTc1QF/Xxae1XY7nI2qWejCvmP4dY4LzKLgRHC6P4nZVPScZBWxsRXMj39GK6RgwgeMuqUvI3BBDuZQ4WHf1QxUNOdeOmD5NUURcoOm1Of9tE93NUkOdR/SaXcrXUx8aV1dYzw4RZh9GAwrhEyKQfQsCVqZQOSRobMOFEIorodWCyELSBFObO0VZ8afIu6VI/Wiws431+zkR38cGXiijM4jfYfNDPlP/I5RsBN9DBP253e9P6PKbzFE0ZGxHdzX+V5WpcVqSQlTtQ0NWyQToh5zEjsPF0A4jmZufmyibmxfiAs7SGvBGN1x+sEzc+wXc7PltWbS9W2mwFRMjBr9swT/21/fwsKyrAIGgEBhBGNl5Os2eWT8DhfnGlFGz2GAVtHvz3wVYxSJORf+Tiv2spesqfwoAYW0abwDFthK8LNBNTi5VSQ4BxysN4pcgNbxzckqrsXfjs8UHcC6RyLyX950t/hVS9kvK6ZvJrZeLDXI61ivaTTEFNOIkXWtiBsUq6qYnJ1WkzKWs1N/Gj8jicWPA22SUP0fwPldMfiTYYErgsPJYpOnNVv06B6mb6r1ftqx+/ucT5TyUSGrTC7HgTkKv2Z5qQAOWpSCf8fZGRrdQben/N2LsB/azB0wf4Y27IOFdTZ5Cy+LQ4P1XKhvnjkr2bfJ9h7wm2SAJkIK4xW3Sdwp3tJDrancx+mTrg8RY+AovNQEezD1iwMJAKLE8XcYzdvpvlR1JMj3Fu4CjRoHh2uHb11oduBgeo7+p3bdZPLpP2P4hngHcXom4mlGXaB0rOK7SRRhFuz8Mr4iyLRpWpNWpMeBDow0rgVz0s5PyxLhP5R7s+t0RPvs4CIjIiznxW2I4xtLGtmwDARVSPK4YvoJ36Yvrqj914UTaWj48hSDZZ0dUoriRZIe3xAeoO9OY1CIMMmG4eHCWaaz5kqbAD2xtWrPknk0MM8hxjr93YBa4rcvutErmnjNBqDOMQHrVd1MdqZg0zlKq33TFQE51lDI6V9ncoYGGkPsND1grecZg+1NxAJJghBl31glRJuLAKgTMW9iPFpxDLT/ZiAkp4VlUxldUXYaUnA4k/Fg19T2m+jMmP4ZTSqdv1WJfamB2wrybCHuu32yMiku6REzmFZ5IHp4EkEKgms/MZZUXe6mg81AVGqcjXwXXT+oe2TKdVAu8ffyFM2ax0YCUxArO+21fX4asZekB/uEJ8E8CdfHQ1gpseLY0rJi52qGtTW4bz8LZhvNBZZxOWzkBOuDAW5GP09XZ2oekxuzrsxvvLBguQ0IFPqIBns7lO4xwHauIIa3QKECEQA2IxMs6QNh3VDfZk7HpGRmhCSGHnhZ9iIlh/q9YF3XlgPTOP2eZdZbsPAitD/QbL9qfwEwnQ9LEiwqV3MoKi8q7GoDliMRw1/SbzlUYFgbbl9wKgKofknEjLinBUtZTiMUQTsuKAAQ63CKnDJUrbDnttX2aSIRGDHngGXbSOvCRN43yBog3ZNsbuYK4XuMxxqwPYFX8G8I3sYz0yrqcCpngglIdQk2AaL8V/YmhhBw/ECaTeVeg/fLT6VSVWmM669wLKbL76ZeSqX3VBRkIhDStQm6I/8294K4fA0D9+KGKjX1u8iMNeZ9YvU0k79AiPBYDdCz2sChe4xLxthnpQqznDnY8+rMOgYzO2TeDoy67y/O+f5wLL/Yp+Ld+SfsUKK7DpLrD5tVWrZ3gNUNv6U11bM3AeZVcMe4wd1xd4cDG4CTHwpzKbTqetxVodP6KLJOTaA+KdA/7NPn92RpFibsQKJdKcbVTNBi6BU4T3fucz7qI6yaSOkN/80GWOHyUgHTchmTaMMQjE4350TPLL/b9PL2xFpm96dho0wqsvgDcMkaTo2rCXJKinmysxfQ/cU3n0VebxmniwC3SC8ql9JbrwMQYRPMuYrHW/V8knSi0ueRHf9P57wvEztMzhvSzHk9PQefq6TEgzi9j1rPdCGLgNy0Y4/4lo0XOynmQOrQ5dOcOXyTJ+z3H5DjnWeHU1QTtC3fBc/w9cRbDlD6aPBRMp+h3FrvCQdzcIM6k3aDMB1/ayQsbUgkTZ9Xc0abHA51sEssgTuRevsK0fE1PZnNmfq2bY28KStbBoJizv0Y0cZeZ4YYU5qzsiOx7cY/3P40mOOnIKVMHz9+u1o9kitw8AVCLa20hyl12cva+bQIZGSZ1OGVsRGNu0tw1MwVC1lRACMS9koXZTiZFpwg1I7JqLX9tEaocuoozAOxMGHCxgEjV8dwwz9f+C4VGYGbW0GBOEIDneIdE7fzmqSGMXZzMfKkAxexvlLgTry9jFKSirdcSt53LvM3xfyxHFF2wHGfdiutzOC1iZk2TfhHDvKPHItjzSWfds8/MVKrzYOd1l/YpFKUdUu4VXGFvX3Z5VBeBcEBApG1bQQa6eYcAd78P2Ugt8xovbpbCXL+NNibsr1rqEvPQNbb+CZ53GP4EV2VPJ4xYEk046S5DOPreLHDZc1hbfy9g8Xul6jPX8XMU1sTM++Xrt48SBxav6FkqRNPo5cx+x3EV0iOsWcMBI0QKbC5KnNhCwXsswr6Yk1r1QvBifEiXGV/XtyhFEwoyNwKNGTOwW8sLW54xZ7vWkMdUx/SQi2nslVMZlncJUHU7SNkYjb/clB+303eceHYSLkmurspoKq+udxOnQaOI//7gN6Qb7gLo9iPwPfClQOkFoMFcsT8Cx1YT08cfu5W8M7ZhmXmVHDLm++7KtdwZW3vlJkF4dN5VW8IAmNp5ZQylBQV3hDqxB2AnV5BmvgvUZVIYbIsKXCFreNL5zlK3iml0QN90OIOG3cYU+oFN/jukLPzJukMgA2DE9DGNLmKYdFkXyDCjD+CtWWMlq52a73NCdyBIIk78FLmxTrwcAk9KOknPSf6nQnORNPqOGg+MA+rFMIPNkOsUNTj/LSLOkkLx+DTaEAhYBspQytBkF4q1ol1K3llGSp9Tbzq3lLmM58qxaEtWE5MrnYUhnRmcaDLK1RZhszf7qRN6Bw8j3OrjVw5JuzhagxqO2uGDyIlH8lecblox0ZADYfyYcX9UwaM0yOgGK6H/NWGLIjjlrObW1o1zl2IJ7e07EBZO5d5jE6rQ5y9U4W3ms6i68zNoC0afzSphV6OF1TOtlxjFto66UlEzY+AsAGw8z9jcSCH62YYACNknAHRnDeG94VqSLXww3m4knFJMno90S9o37hMHNSF2sRMYUZueAjx0pDu6C1nPIFyqhJFGxFlIjwSGqMaTcbN/Hz8NJisLEpoLnM+c8XkDb4Yn1MxKAiu+8FI7WgL6EcY1Y/16EWd78ClsRb/cfcUi42nRhDfFjuAdQH1xcC1D1BXOqB9r7IMXSD6rY8HNf8MJd9GojP2AsPEtIJRmbiRkZW9pthAUjBWGD7pRuTeMFELI/OK8ujq0y/9mhvwLsh9ivSN60Kh3I8/sSCKLirxcbQksYyO02G9xhVTM3L/YJoAxpGo8NAOZn/mkZIrQzvJKW7kZSS/Pjps5ONKtaxzVTH8YqVVH0Os3w7LAr9fSH3dLXWoDlF3ruZlIrQ81r8HCfgxQgSnK0qHRoo9wZet7XS4YKDVtL4WxG1s0FGladdnrnA/NsMTx6OJGWK648lSy1i+WXhsPpsrkFw9CuWncyUgpLuxEIUAMab9lKJg1WNpqWuREzGNFNDX+HF1giJxeHe4BHhSlfWsXw/sJewDc9ntQA7mZE8g5dJ3vUGcyk0CcwKt+PN1413UeE6/XXmapqGZwunlR8xTtE306soXflQoRtGyg+1Ztxo21Yg3XQYwFGrfbU+fx+FgHmFT4h5arcXsj+lsJlJxzj9lBE3gjqo4LcAv6Q9uHyJEN3VUGYJeZWz+jv7J1iGdM36dhvIqcpJjSP/LpuFPyipD1uoFwCPTuhBdw1MDVLgmacd7cMpWlIRKzmmvgPYfv85gHYnH2IzUOCIxkxWwYAvKCa8kxy0XUrRDmdWfpfs5rBBinx5splADFyWXOuBpfOAVNFXK3uJDfTIySDjPwymC+IVrJfuvc9MQY9PFhk4zkMyZLxp0RWJ3AgU448QtcNqbDIyvkqexCSsNfzXTuBsuJZBBZpLtmkPAjerNbZImUGQalLLaHFJNc8PWnQ7rRLVILh2F1/G/LuD5nEYz3E+yPwagdlYcQAPyJNm7jwOTI7jjPxvAc0gz8aXbxaHsfx+I2z+254H46ZFtk7cN3y/CuxqjAQFRwV7s8ztTtYDVafauKDblGEi7HMvj4aVz+OmD3i9SF4wHFMqOIIpfpwUoXxcORPQBq9B4+u/hAc+t70JTJm6RIqklzLGBbxHU1HASRmU5gi4PX2caX2Wbbfu4S5+UWJO0/uTPD0ZjWMg2bcuPMYFr8OrQhpnJyBA073OVFhXdgXGtTx3q07V4Qw4ggB9UxlZPtAtlLTIduarB9/vswjAaMg8EFfySUcL9/l0kxCBbbtRLhDHMfV1Ut9KpOq2FObj2AsLEnPigr0wzeMLPXcgv3ERdzTHGH4+Qa6NBdMwrFL7yFvZqkeApWLQJIxPjSgxHwTkxRQarvLWQgwRk7KUkK1qSS6xrlE3CVb1PqmhYMq8/VxTBP/3aWWq7b1/kHcblkHegvXobGOjD65wLggGbzf50xD2JfP1BR1PyOiTRcvtJfmuSjo/PlI0EpmgVIzAOI2aS6fffVDqvP36deWJM9Uozz80rrFn6GB4fKSxBfRH8aQeAMLkalrd2+YG5J6Z6C3meWsjMHDYaK/RNw9AZD69ZgPNz0kKhug4KM/GdKZTf3oeVJ3bmB63FC5HgWvpjQQRazjDE83s4V24Rmb/ohZSMTD2x4XJx47JrZus8m23FNd4+/jRnFb2V49V1QUSBBhpxALYTmdICZHrJXTdDSPWML73jVpxAQCzEkTJtb7MegKKhqG5uhdteTF24p2KKrF5jzr3dyw9qLTPJl9zkCMrDiZGFM944MDNRJzLsbIJFX9QDFo/ONQ4KetKCL1Z+cTTS7LU6latzb1gVoIAdKjWf2Qc+OQpJi2pZqHgwxghzVqW2SP8e9Y8MsNa0wZj8iSCrZxV6ec0JhrgPeK3lyv0xwMwPzvpXs8x828Y6KmRIfePR/m33qGnfCnxozTmeM9yxTlw+b1z7L1b6CmWGjlS8KDMLzdeKwtPmojL8SIy4c9vCxVJteiNbKD6aeXFXOtPPnN5xYVtE+FKe9kg9Win4y4pIgHFJ/2xNfSb5geLUgIDhUSNrkRrirKCVUrcHmLWCzRLerFVs12k9EbLSPVJjCm+zd1dg6cNYUmumpGF0vjfGNE24fmH+celvqQ==" /> </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=638760150540000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=sp7vCoAo-SSYfpsQ1sYBBeEDnwCGxDYEwZCM0ler88yoVZIPDXMk1C3XF2L2L0xrbB8Rvhli51TswRlmPIOCZgaY58lKhPr-Pv1jTFJ1oUAu7x6RDtNFZUxbtxs3KYQGLK6FpPD5bKuB0e0NmS9HkAqRVks1&amp;t=638760150540000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=icMURy63hv40LPPfq4rTvmm-RfB_YkC6rEEF_2QOO68q3TseXYNBetRKKgBXJ8mn2e8UIgCPiV23HaQUZbjySMHqSgmYZgLcYltBqwD2_EK8aQ08zBuqc3ZBVZITQrbtn6w46dRxFLibMIQg0Aho73rn8Rpxrzg5YMG_JR0UOrUR0wlZ0&amp;t=638760150540000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=1HpFfNpwNihNfEP1lyJHvdPVqbv8KRoFH4-_ZORUgPOP-bqmmtIJRvFQc7828Vf59O_-fdBXcnwdv-hYp5RptPuHmMR0kGQM0_3rS4Z7sKfC7jy9Cc_8fyfcUWa8psszacEQlAXHPXmNwyRymbGSywEmhrE1&amp;t=638760150540000000" 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-7ade90ab47e44122a1605dc967712d4a" class="gutter-bottom input-group site-search" style="max-width: 400px;"> <div id="SiteSearch-dropdown-7ade90ab47e44122a1605dc967712d4a" class="input-group-btn"> <button type="button" id="SiteSearch-filter-7ade90ab47e44122a1605dc967712d4a" 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-7ade90ab47e44122a1605dc967712d4a">Search the client portal</label> <input id="SiteSearch-text-7ade90ab47e44122a1605dc967712d4a" 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-7ade90ab47e44122a1605dc967712d4a" 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-7ade90ab47e44122a1605dc967712d4a', searchComponentFilterButtonSelector: '#SiteSearch-filter-7ade90ab47e44122a1605dc967712d4a', searchButtonSelector: '#SiteSearch-button-7ade90ab47e44122a1605dc967712d4a', searchFilterDropdownSelector: '#SiteSearch-dropdown-7ade90ab47e44122a1605dc967712d4a', 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%3d230"> 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%3d230">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=74">Computing Labs</a></li><li class="active">Virtual Student Computing Lab</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;"> Virtual Student Computing Lab </h1> <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"></span>The Pitt IT Student Virtual Computing Lab enables you to remotely access lab software and resources from any location, using almost any computer or mobile device, at any time of day. It's your personal 24/7, on-the-go lab.</p> <h2><strong><span style="color: #003594"><a name="Detail"></a>Detail</span></strong></h2> <h3><span style="color: #000000"></span></h3> <h3><span style="color: #000000"><strong>Benefits of the Virtual Student Computing Lab</strong></span></h3> <ul> <li>Connect with Windows App via web browser or nearly any Windows, macOS, iOS/iPadOS, Android/Chrome OS device</li> <li>Access the most popular lab software for classes&nbsp;without having to load it on your personal devices</li> <li>Secure your work with cloud-based services and storage behind Pitt Passport sign-on and Duo multifactor authentication</li> <li>Work online&nbsp;with no need to use PittNet VPN</li> </ul> <h4><strong>Available Software</strong></h4> <p>For a complete list of software available in the Virtual Student Computing Lab, visit the&nbsp;<a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=240" target="_blank">Student Computing Labs Software page</a>.</p> <p>To request additional software titles for the Virtual Student Computing Lab, please fill out and submit the New Software Title Request&nbsp;<a href="https://techforms.pitt.edu/TechRequest/SoftwareTitleRequest.aspx" target="_blank">form</a>. You will be contacted by Pitt IT about your request.</p> <h3><span style="color: #000000"><strong><a name="DesktopClient"></a>Use Windows App to Access the&nbsp;</strong><span style="color: #000000"><strong>Virtual Student Computing Lab</strong></span></span></h3> <ol> <li>Navigate to&nbsp;<a href="https://learn.microsoft.com/en-us/windows-app/get-started-connect-devices-desktops-apps?tabs=windows-avd%2Cwindows-w365%2Cwindows-devbox%2Cmacos-rds%2Cmacos-pc&amp;pivots=azure-virtual-desktop#connect-to-your-desktops-and-apps" target="_blank">the Microsoft documentation to "Connect to your desktop and apps"</a>&nbsp;and select the tab for the platform that you are using. Use of the native Windows App for your platform is recommended, but a web version of Windows App is also available.</li> <li>Follow the provided steps to download, install, and open Windows App from your platform's store and sign in with your University email. You will be prompted with the standard Pitt Passport login.</li> <li>Double click <strong>Pitt IT -&nbsp;Virtual Student Computing Lab</strong>&nbsp;under the heading&nbsp;<strong>Pitt IT - Virtual Student Computing Lab - You must register at accounts.pitt.edu for Adobe CC Access</strong>.</li> <li>Enter your University Computing Account username and password to complete the login process.</li> <li>Once logged in, you will be able to access more than 150 individual software titles for classes.</li> <li>To disconnect from the Virtual Student Computing Lab, simply log out of the computer.</li> </ol> <h3><span style="color: #000000"><strong>Save and Access Files</strong></span></h3> <section> <section> <ul> <li>You are automatically logged into OneDrive upon connecting to the Virtual Student Computing Lab.</li> <li>Files saved to the Virtual Student Computing Lab鈥檚 <strong>Desktop</strong>, <strong>Documents</strong>, or <strong>Pictures</strong> folders will be saved to your OneDrive&nbsp;account.</li> <li>Files saved in OneDrive will automatically sync with any device you use to connect to the Virtual Student Computing Lab.</li> <li>If you are using the client for Windows and macOS, you can also save files to your local device.</li> <li>Synced files from the Virtual Student Computing Lab can be accessed directly in <a href="https://www.microsoft365.com/onedrive/" target="_blank">OneDrive&nbsp;online</a>&nbsp;by clicking on <strong>My Files</strong>&nbsp;and then the <strong>Desktop</strong>, <strong>Documents</strong>, or <strong>Pictures</strong>&nbsp;folder.</li> <li>Application settings and files in your Windows user profile are stored for the duration of the current semester. Before the end of the semester, please ensure that all necessary files are available in OneDrive&nbsp;online. Data on the Virtual Student Computing Lab that is not stored in OneDrive&nbsp;will be removed at the end of each semester.</li> </ul> </section> </section> <aside role="complementary"> <section> <article> <header>&nbsp;</header> </article> </section> </aside> <h3><strong><span style="color: #000000">Use the Legacy Microsoft Remote Desktop Web Client</span></strong></h3> <p>The Microsoft Remote Desktop web client is being replaced by Windows App, but it is still currently available for use.</p> <p><strong>Note:</strong>&nbsp;The web client requires HTML 5. The latest version of most browsers supports HTML 5.</p> <ol> <li>Navigate to&nbsp;<strong><a href="https://pi.tt/vlab" target="_blank">pi.tt/vlab</a></strong>&nbsp;(https://client.wvd.microsoft.com/arm/webclient/index.html).</li> <li>Enter your University email address. You are redirected to the Pitt Passport login screen.</li> <li>Log in using your University Computing Account username and password.</li> <li>Double click <strong>Pitt IT -&nbsp;Virtual Student Computing Lab</strong>&nbsp;under the heading&nbsp;<strong>Pitt IT - Virtual Student Computing Lab - You must register at accounts.pitt.edu for Adobe CC Access</strong>.</li> <li>Enter your University Computing Account username and password to complete the login process.</li> </ol> <p><strong><em>Important: You will be saving your files to your&nbsp;</em></strong><a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=290" target="_blank"><strong><em>OneDrive</em></strong></a><strong><em>&nbsp;account. You cannot save files to your local computer or device when using the web client.</em></strong></p> <aside role="complementary"> <section> <article> <header> <h3>&nbsp;</h3> <h3><span style="color: #000000"><strong>Cloud Computing Offerings</strong></span></h3> </header> <section> <ul> <li> <p><a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=291" target="_blank">Home</a></p> </li> <li> <p><a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=291" target="_blank">Microsoft Azure Cloud Storage</a></p> </li> <li> <p><a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=367" target="_blank">Virtual Desktops for Remote Work</a></p> </li> <li> <p><a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=230" target="_blank">Virtual Computing Lab</a></p> </li> </ul> </section> </article> <article>&nbsp; <header> <h3><span style="color: #000000"><strong>Browser Tip</strong></span></h3> </header> <section> <p>If you are connecting through the web client, and it is having difficulty connecting to the Remote PC, try clearing your cache, closing the browser, and relaunching it.</p> </section> </article> </section> </aside></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%3d230">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=UrTfL2cTZNQ_&amp;RequestorType=Service&amp;ArticleId=230"> <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=230" rel="nofollow" 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 (5)</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=401">Borrowing a Device from the Student Chromebook Loaner Program (SCLP)</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl00_ctlArticle_divSummary"> The Student Chromebook&#160;Loaner Program (SCLP) provides short- to medium-term support for students who do not have access to the technology resources they need for learning. </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=224">Getting and Using Adobe Creative Cloud for Students</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl01_ctlArticle_divSummary"> Software information for Adobe Creative Cloud for Students </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=367">Getting Started with Virtual Desktops for Remote Work</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl02_ctlArticle_divSummary"> Get started with the Pitt IT Virtual Desktop (Microsoft), which enables faculty and staff to remotely access a set software and resources. </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl03_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_ctl03_ctlArticle_divSummary"> Information about Student Computing Labs </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl04_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=1996">Setting Up a Chromebook to Use on Campus</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl04_ctlArticle_divSummary"> While Chromebooks tend to be limited by their low-resource and cost-conscious design, many University resources can be accessed through web apps, Progressive Web Apps (PWAs), Chrome extensions, Android apps, and remote resources. We&#39;ll go over some frequently-used resources and the best way to access them from a Chromebook. </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=59">Computing Labs</a> </div> </div> <div> DESKTOP AND MOBILE DEVICE SUPPORT All University of Pittsburgh faculty, staff, and students with a valid University Computing Account may use Student Computing Labs located throughout the Pittsburgh campus. </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=20250224222540"></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=230&quot;&gt;https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=230&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Virtual Student Computing Lab&lt;br /&gt;&lt;br /&gt;The Pitt IT Student Virtual Computing Lab enables you to remotely access lab software and resources from any location, using almost any computer or mobile device, at any time of day. It&#39;s your personal 24/7, on-the-go lab.</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