CINXE.COM
Article - Connecting Chromebooks to P...
<!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=20250227233844"></script><script src="/TDPortal/Content/Scripts/jquery-migrate/1.4.1/jquery-migrate.min.js?v=20250227233844"></script><script src="/TDPortal/Content/Scripts/jquery-ui/1.13.2/jquery-ui-1.13.2.custom.timepicker.min.js?v=20250228000850"></script><link href="/TDPortal/Content/Styles/jquery-ui/1.13.2/jquery-ui.compiled.min.css?v=20250228000852" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/bootstrap/3.4.1/dist/css/bootstrap.min.css?v=20250227233846" rel="stylesheet" type="text/css" id="lnkBootstrapCSS" /><script src="/TDPortal/Content/bootstrap/3.4.1/dist/js/bootstrap.min.js?v=20250227233846"></script><link href="/TDPortal/Content/FontAwesome/css/fontawesome.min.css?v=20250227233830" rel="stylesheet" type="text/css" id="lnkFontAwesome" /><link href="/TDPortal/Content/FontAwesome/css/solid.css?v=20250227233830" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/regular.css?v=20250227233830" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/brands.css?v=20250227233830" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/v4-shims.css?v=20250227233830" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/bootstrap_custom.min.css?v=20250228000852" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/TDStyles.min.css?v=20250228000852" 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=20250228000850"></script><script src="/TDPortal/Content/Scripts/underscore/1.12.1/underscore-min.js?v=20250227233844"></script> <script src="/TDClient/Scripts/clientOS.min.js?v=20250228000840"></script> <script src="/TDClient/Scripts/collapseMe.min.js?v=20250228000840"></script> <script src="/TDClient/Scripts/tdsearchfilter.min.js?v=20250228000840"></script> <script src="/TDClient/Scripts/SiteSearch.min.js?v=20250228000840"></script> <script src="/TDPortal/Content/Scripts/tdx/elasticsearchAutocomplete/elasticsearchAutocomplete.min.js?v=20250228000848"></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=20250228001930"></script><link href="/TDPortal/Content/select2/v3/select2.compiled.min.css?v=20250228001930" rel="stylesheet" type="text/css" id="lnkSelect2" /> <script src="/TDClient/Scripts/attachmentHandler.min.js?v=20250228000850"></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: 'bMIJQNqAIoh0viuC7VR8uWKage_0OqOawAM8t-7jAZPS8As7TuGustooNNh3G2AGlOMLW8w7DzFfvNd-8lpzv5uPo9k1:xRupf9tlthQ2-JYwY6CvrzBtq71XJ4qiWQYo-Z0mArWlnc8lQcpZbZPX39s8uEA5j39T6EkFycLzKj38ppZT_TaaZLY1', itemId: 168, 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="Connecting Chromebooks to PittNet Wi-Fi" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=168" /> <meta property="og:image" content="https://services.pitt.edu/TDPortal/BE/Logo/2/33" /> <meta property="og:description" content="Connect to PittNet Wi-Fi by configuring your Chromebook device according to these specifications" /> <meta property="og:site_name" content="University of Pittsburgh - Knowledge Base" /> <meta property="article:section" content="PittNet" /> <meta property="article:published_time" content="2023-07-27T14:50Z" /> <meta property="article:modified_time" content="2024-12-10T13:00Z" /><title> Article - Connecting Chromebooks to P... </title></head> <body> <form method="post" action="/TDClient/33/Portal/KB/ArticleDet?ID=168" 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&t=638628063619783110" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=nv7asgRUU0tRmHNR2D6t1NXOAgTb3J37FC1L2PfbYYFmSPm-ANa7n6FP0x7BAsbHeL4jfY3ptd1q7zKKVI7DbuXZcwEoKOwj9WxCI1VrQlbWE1Trg1t1GmJDN43kQMJsB7X8tw2&t=ffffffffc7a8e318" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=NJmAwtEo3Ipnlaxl6CMhvmVxW3-Ljsg_2Hna32smxrg-6ogyYAN3UTPsJQ8m1uwzn_kuf2Wpne6NSFmYui3h0wCQhJN3ZUiLTNkvhiIgZpq74-lKmofUPQGJ8own8RI2_mwAcmvlSj2WBnqwm5Wj4cyNvv81&t=2a9d95e3" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=dwY9oWetJoJoVpgL6Zq8OLdGoo5BVWQ_Eo60QZTEhEcHeiVfwgY9tLCgzdZ5TRwvrwYEnOvujbNccOVLUfWtUg4HivSIsewg6JABxkBGEqVVV64eiRyCAsPDqh6tUioISUQKB74sWMO4Er2mHrWEIWs_sBM1&t=2a9d95e3" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=xtfVMqdF1exC2MBVkOJwMveStDR5kg3dbZWgIXMXZmB1xXom6CcIrWFgHa7jsp4qJuFW2L5XShudyzlBsIO3JhCfiU5HmL2BDz__mCv9dznmBlEMS7LvcYg6wTdPTrAXIXI2CvtjwlnpZd-j4Zpsx2wG_uA1&t=638762802280000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=sp7vCoAo-SSYfpsQ1sYBBeEDnwCGxDYEwZCM0ler88yoVZIPDXMk1C3XF2L2L0xrbB8Rvhli51TswRlmPIOCZgaY58lKhPr-Pv1jTFJ1oUAu7x6RDtNFZUxbtxs3KYQGLK6FpPD5bKuB0e0NmS9HkAqRVks1&t=638762802280000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=icMURy63hv40LPPfq4rTvmm-RfB_YkC6rEEF_2QOO68q3TseXYNBetRKKgBXJ8mn2e8UIgCPiV23HaQUZbjySMHqSgmYZgLcYltBqwD2_EK8aQ08zBuqc3ZBVZITQrbtn6w46dRxFLibMIQg0Aho73rn8Rpxrzg5YMG_JR0UOrUR0wlZ0&t=638762802280000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=1HpFfNpwNihNfEP1lyJHvdPVqbv8KRoFH4-_ZORUgPOP-bqmmtIJRvFQc7828Vf59O_-fdBXcnwdv-hYp5RptPuHmMR0kGQM0_3rS4Z7sKfC7jy9Cc_8fyfcUWa8psszacEQlAXHPXmNwyRymbGSywEmhrE1&t=638762802280000000" 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-b959f3da8ea649b286b7c8a218d9a604" class="gutter-bottom input-group site-search" style="max-width: 400px;"> <div id="SiteSearch-dropdown-b959f3da8ea649b286b7c8a218d9a604" class="input-group-btn"> <button type="button" id="SiteSearch-filter-b959f3da8ea649b286b7c8a218d9a604" 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-b959f3da8ea649b286b7c8a218d9a604">Search the client portal</label> <input id="SiteSearch-text-b959f3da8ea649b286b7c8a218d9a604" 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-b959f3da8ea649b286b7c8a218d9a604" 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-b959f3da8ea649b286b7c8a218d9a604', searchComponentFilterButtonSelector: '#SiteSearch-filter-b959f3da8ea649b286b7c8a218d9a604', searchButtonSelector: '#SiteSearch-button-b959f3da8ea649b286b7c8a218d9a604', searchFilterDropdownSelector: '#SiteSearch-dropdown-b959f3da8ea649b286b7c8a218d9a604', 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%3d168"> 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%3d168">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("ctl00$ctl00$cpContent$cpContent$btnSendShare", "", true, "", "", 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=50">Network, Hosting and Storage</a></li><li class="active"><a href="/TDClient/33/Portal/KB/?CategoryID=87">PittNet</a></li><li class="active">Connecting Chromebooks to PittNet Wi-Fi</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;"> Connecting Chromebooks to PittNet Wi-Fi </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">Pitt IT supports general connectivity for wi-fi devices. You should be able to connect to PittNet Wi-Fi by configuring your Chromebook device according to these specifications.</span></p> <p> </p> <h2><strong><span style="color: #003594"><a name="Detail"></a>Detail</span></strong></h2> <h3><span style="color: #000000"><strong>Configuring Chromebooks</strong></span></h3> <p>Complete the following steps to connect your Chromebook to PittNet Wi-Fi.</p> <ol> <li>Click on the <strong>Quick Settings Panel</strong> at the bottom right of your screen.<br> <img alt="ChromeOS Quick Settings" src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=776f11b9-9f35-417a-906b-72f158103525.png&beidInt=2" style="border-width: 1px; border-style: solid; margin-top: 4px; margin-bottom: 4px; width: 700px; height: 464px"></li> <li>Select the <strong>Wi-Fi</strong> button.<br> <img alt="ChromeOS Quick Settings Wi-Fi" src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=e58f6602-812e-4861-862a-1f649add8f4c.png&beidInt=2" style="border-width: 1px; border-style: solid; margin-top: 4px; margin-bottom: 4px; width: 350px; height: 281px"></li> <li>A list of available wireless networks will appear. Select <strong>WIRELESS-PITTNET </strong>or <strong>eduroam</strong><strong>.</strong><br> <img alt="ChromeOS Wi-Fi Selection" src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=a431cf4a-884f-4135-bc95-5d1b5b5c4fc4.png&beidInt=2" style="border-width: 1px; border-style: solid; margin-top: 4px; margin-bottom: 4px; width: 350px; height: 410px"></li> <li>The <strong>Join Wi-Fi network</strong> window will appear. Select the following settings:<br> <img alt="ChromeOS PittNet 1" src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=54f79f2f-6231-4a20-8784-19203fd5f8bf.png&beidInt=2" style="border-width: 1px; border-style: solid; margin-top: 4px; margin-bottom: 4px; width: 450px; height: 361px"><br> <img alt="ChromeOS PittNet 2" src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=ced8926b-b925-4e7d-b736-cfe73e6a4e0b.png&beidInt=2" style="border-width: 1px; border-style: solid; margin-top: 4px; margin-bottom: 4px; width: 450px; height: 422px"> <ol> <li> <p><strong>EAP method: </strong>PEAP</p> </li> <li> <p><strong>Phase 2 authentication: </strong>MSCHAPv2</p> </li> <li> <p><strong>Server CA certificate:</strong> Do not check</p> </li> <li> <p><strong>Subject match</strong>: <leave blank></p> </li> <li> <p><strong>Subject alternative name match</strong>: <leave blank></p> </li> <li> <p><strong>Domain suffix match</strong>: <leave blank></p> </li> <li> <p><strong>Identity:</strong> your University Computing Account username <strong>(without @pitt.edu)</strong></p> </li> <li> <p><strong>Password: </strong>your University Computing Account password</p> </li> <li> <p><strong>Anonymous identity</strong>: <leave blank></p> </li> </ol> </li> <li>Click the <strong>Connect </strong>button.<span style="color: #000000"></span></li> </ol> <h2><strong><span style="color: #003594"><a name="Troubleshooting"></a>Troubleshooting</span></strong></h2> <ul> <li><strong>Verify</strong> that your University Computing Account username and password are correct. When in doubt, <strong>try to log in</strong> on <a href="https://my.pitt.edu/">my.pitt.edu</a>.</li> <li>Locate the setting for <strong>"Domain suffix match"</strong> and enter <em><strong>pitt.edu</strong></em></li> <li><strong>Forget</strong> the network, <strong>restart</strong> your device, then <strong>try again</strong>.</li> </ul></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%3d168">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("ctl00$ctl00$cpContent$cpContent$btnToggleAddressed", "", true, "", "", 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("ctl00$ctl00$cpContent$cpContent$btnDeleteFeedback", "", true, "", "", 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("ctl00$ctl00$cpContent$cpContent$btnToggleSubscribe", "", true, "", "", 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("ctl00$ctl00$cpContent$cpContent$btnToggleFavorite", "", true, "", "", false, true))">Blank</a> <a class="DetailAction " href="/TDClient/33/Portal/KB/PrintArticle?ID=168" 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 (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=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 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=400">PittNet Wi-Fi and Wired Networks</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl01_ctlArticle_divSummary"> PittNet is a high-speed, multi-service network that provides access to University computing resources, the internet, and external research networks. All students, faculty, and staff can connect to the network. </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=1996">Setting Up a Chromebook to Use on Campus</a> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_rptArticles_ctl02_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'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=84">PittNet</a> </div> </div> <div> NETWORK AND CONNECTIVITY MANAGEMENT PittNet provides fast, secure, and easy-to-use internet access from academic and administrative buildings across 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">×</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=20250227233846"></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.<br /><br /><a href="https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=168">https://services.pitt.edu/TDClient/33/Portal/KB/ArticleDet?ID=168</a><br /><br />Connecting Chromebooks to PittNet Wi-Fi<br /><br />Connect to PittNet Wi-Fi by configuring your Chromebook device according to these specifications</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,'<').replace(/>/g,'>');}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(/</g,'<').replace(/>/g,'>').replace(/&/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> </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_&RequestorType=Service" target="_blank"><img src="https://services.pitt.edu/TDPortal/Images/Viewer?fileName=cf74cfa9-f366-4342-9858-332315e3688a.png&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&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&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&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&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&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>