CINXE.COM

Article - How do I change my Office 3...

<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head><meta name="viewport" content="width=device-width, initial-scale=1.0" /><script src="/TDPortal/Content/Scripts/jquery/2.2.4/jquery.min.js?v=20241122000758"></script><script src="/TDPortal/Content/Scripts/jquery-migrate/1.4.1/jquery-migrate.min.js?v=20241122000758"></script><script src="/TDPortal/Content/Scripts/jquery-ui/1.13.2/jquery-ui-1.13.2.custom.timepicker.min.js?v=20241122001144"></script><link href="/TDPortal/Content/Styles/jquery-ui/1.13.2/jquery-ui.compiled.min.css?v=20241122001146" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/bootstrap/3.4.1/dist/css/bootstrap.min.css?v=20241122000758" rel="stylesheet" type="text/css" id="lnkBootstrapCSS" /><script src="/TDPortal/Content/bootstrap/3.4.1/dist/js/bootstrap.min.js?v=20241122000758"></script><link href="/TDPortal/Content/FontAwesome/css/fontawesome.min.css?v=20241122000754" rel="stylesheet" type="text/css" id="lnkFontAwesome" /><link href="/TDPortal/Content/FontAwesome/css/solid.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/regular.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/brands.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDPortal/Content/FontAwesome/css/v4-shims.css?v=20241122000754" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/bootstrap_custom.min.css?v=20241122001144" rel="stylesheet" type="text/css" /><link href="/TDClient/Styles/TDStyles.min.css?v=20241122001146" rel="stylesheet" type="text/css" /><link href="https://service.purdue.edu/TDPortal/BE/Style/2/TDClient/32?v=20240523190737" rel="stylesheet" type="text/css" /><script src="/TDPortal/Content/Scripts/tdx/TDJSFramework.compiled.min.js?v=20241122001144"></script><script src="/TDPortal/Content/Scripts/underscore/1.12.1/underscore-min.js?v=20241122000758"></script> <script src="/TDClient/Scripts/clientOS.min.js?v=20241122001134"></script> <script src="/TDClient/Scripts/collapseMe.min.js?v=20241122001134"></script> <script src="/TDClient/Scripts/tdsearchfilter.min.js?v=20241122001134"></script> <script src="/TDClient/Scripts/SiteSearch.min.js?v=20241122001134"></script> <script src="/TDPortal/Content/Scripts/tdx/elasticsearchAutocomplete/elasticsearchAutocomplete.min.js?v=20241122001142"></script> <link id="ctl00_ctl00_lnkFavicon" rel="icon" href="https://service.purdue.edu/TDPortal/BE/Icon/2/32?v=20230216135713" /> <script async src="//www.googletagmanager.com/gtag/js?id=G-3X3YRYLMTE"></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-3X3YRYLMTE', { 'cookie_domain': 'service.purdue.edu' }); }); </script> <script> $(function () { var masterUi = MasterUI({ isPostback: false, baseUrl: '/TDClient/', isTdGoogleAnalyticsEnabled: true, isAuthenticated: false }); $('#collapseMe').collapseMe({ toggleVisibilitySelector: '.navbar-toggle' }); }); // The sub-nav menu uses padding-top to position itself below the header bar and main navigation sections. When the // window is resized, there is a chance that the content of these header or nav sections wraps, causing the height // to change, potentially covering the sub-nav menu, which is obviously a big usability problem. This function // listens for when the window size or orientation is changing (and also when the window first loads), and adjusts // the padding so that the sub-nav menu appears in the correct location. $(window).bind('load ready resize orientationchange', function () { var headerHeight = $('#divMstrHeader').height(); $('#navShim').css({ "padding-top": headerHeight }); $('#content').css({ "padding-top": headerHeight, "margin-top": headerHeight * -1 }); }); </script> <script src="/TDPortal/Content/select2/v3/select2.min.js?v=20241122002306"></script><link href="/TDPortal/Content/select2/v3/select2.compiled.min.css?v=20241122002306" rel="stylesheet" type="text/css" id="lnkSelect2" /> <script src="/TDClient/Scripts/attachmentHandler.min.js?v=20241122001144"></script> <style type="text/css"> .honey-pot-div { display: none; } </style> <script> function shareArticle() { if ($('#ctl00_ctl00_cpContent_cpContent_shareRecipients').val().trim() === "") { alert('You must first enter a valid email.'); $('#btnShare').progressButton('reset'); } else { __doPostBack('ctl00$ctl00$cpContent$cpContent$btnSendShare', ''); } } function closeShareModal() { $('#divShareModal').modal('hide'); $('#btnShare').progressButton('reset'); } function toggleFeedback(isHelpful) { $('#divHelpfulComments').show(); $('#divHelpfulYesNo').hide(); $('#ctl00_ctl00_cpContent_cpContent_hdnIsHelpful').val(isHelpful); $('#ctl00_ctl00_cpContent_cpContent_txtComments').focus(); } function toggleFeedbackResult() { $('#divWasHelpful, #divFeedbackRecorded, #divHelpfulComments, #divHelpfulYesNo').toggle(); } // The following two functions were added as a result of ticket ID: 1392522. We are generating these buttons dynamically to // prevent bots from clicking them and posting feedback on an article. Additionally, we have an input that is hidden from // the user. If a bot enters text in that input, which it likely will (bots love filling out forms), then we don't accept the // form submission function generateFeedbackButtons() { var $btnHelpfulYes = $('<button id="btnHelpfulYes" type="button" class="btn btn-primary gutter-left" onclick="toggleFeedback(1);">Yes</button>'); var $btnHelpfulNo = $('<button id="btnHelpfulNo" type="button" class="btn btn-primary gutter-left-sm" onclick="toggleFeedback(0);">No</button>'); $('#divWasHelpful').append($btnHelpfulYes); $('#divWasHelpful').append($btnHelpfulNo); } function attemptAddFeedback(e) { if ($('#honeyPot').val() !== '') { e.preventDefault(); window.location.reload(); } } function cancelFeedback() { $('#ctl00_ctl00_cpContent_cpContent_txtComments').val(''); $('#divHelpfulComments, #divHelpfulYesNo').toggle(); } function confirmDeleteFeedback(id) { if (confirm('Are you sure you want to delete this feedback? This cannot be undone.')) { $('#ctl00_ctl00_cpContent_cpContent_hdnFeedbackID').val(id); __doPostBack('ctl00$ctl00$cpContent$cpContent$btnDeleteFeedback', ''); } } function toggleAddressed(id, isAddressed) { $('#ctl00_ctl00_cpContent_cpContent_hdnFeedbackID').val(id); $('#ctl00_ctl00_cpContent_cpContent_hdnIsAddressed').val(isAddressed); __doPostBack('ctl00$ctl00$cpContent$cpContent$btnToggleAddressed', ''); } $(function () { generateFeedbackButtons(); $('[data-toggle="popover"]').popover(); var attachmentHandler = new TeamDynamix.AttachmentHandler({ containerSelector: '.js-article-attachments', resultLabelSelector: '#ctl00_ctl00_cpContent_cpContent_lblResults_lblResults-label', baseControllerUrl: '/TDClient/32/Purdue/Shared/Attachments', antiForgeryToken: '003i1JSlUGWJGdcS0OpgIU_BtYp2BgXLbLKQMzQtGBPUXWkU4nriyCzxH1LK54wvJn6PT93FLlA4qHFdWJ9Y4mgOLCY1:Rj7R99KS6P3lX-_riEdd8qlRcAyZ6fuUdgxZcilI9WtGbPnHtfiqIQtXMHpegTDQt7jdMUexYi0tF99weeXj4nx0CLc1', itemId: 106, 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="How do I change my Office 365 password for PRF?" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://service.purdue.edu/TDClient/32/Purdue/KB/ArticleDet?ID=106" /> <meta property="og:image" content="https://service.purdue.edu/TDPortal/BE/Logo/2/32" /> <meta property="og:description" content="This article provides step--by-step instructions for how Purdue Research Foundation employees can change their Microsoft 365 password." /> <meta property="og:site_name" content="Purdue University - Knowledge Base" /> <meta property="article:section" content="Communication &amp; Collaboration" /> <meta property="article:published_time" content="2023-03-28T18:26Z" /> <meta property="article:modified_time" content="2023-07-09T19:35Z" /> <meta property="article:tag" content="Microsoft365-Exchange" /><title> Article - How do I change my Office 3... </title></head> <body> <form method="post" action="/TDClient/32/Purdue/KB/ArticleDet?ID=106" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm"> <div class="aspNetHidden"> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> <input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" /> </div> <script type="text/javascript"> //<![CDATA[ var theForm = document.forms['aspnetForm']; if (!theForm) { theForm = document.aspnetForm; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]> </script> <script src="/TDClient/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZMSMQxVWLi4fik2rw1_u_hZsCNzwv5c621ov6_ZX_wzTt5vh-g2&amp;t=638610727965203766" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=nv7asgRUU0tRmHNR2D6t1NXOAgTb3J37FC1L2PfbYYFmSPm-ANa7n6FP0x7BAsbHeL4jfY3ptd1q7zKKVI7DbuXZcwEoKOwj9WxCI1VrQlbWE1Trg1t1GmJDN43kQMJsB7X8tw2&amp;t=64bd211b" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=NJmAwtEo3Ipnlaxl6CMhvmVxW3-Ljsg_2Hna32smxrg-6ogyYAN3UTPsJQ8m1uwzn_kuf2Wpne6NSFmYui3h0wCQhJN3ZUiLTNkvhiIgZpq74-lKmofUPQGJ8own8RI2_mwAcmvlSj2WBnqwm5Wj4cyNvv81&amp;t=ffffffffb201fd3f" type="text/javascript"></script> <script src="/TDClient/ScriptResource.axd?d=dwY9oWetJoJoVpgL6Zq8OLdGoo5BVWQ_Eo60QZTEhEcHeiVfwgY9tLCgzdZ5TRwvrwYEnOvujbNccOVLUfWtUg4HivSIsewg6JABxkBGEqVVV64eiRyCAsPDqh6tUioISUQKB74sWMO4Er2mHrWEIWs_sBM1&amp;t=ffffffffb201fd3f" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=xtfVMqdF1exC2MBVkOJwMveStDR5kg3dbZWgIXMXZmB1xXom6CcIrWFgHa7jsp4qJuFW2L5XShudyzlBsIO3JhCfiU5HmL2BDz__mCv9dznmBlEMS7LvcYg6wTdPTrAXIXI2CvtjwlnpZd-j4Zpsx2wG_uA1&amp;t=638678132040000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=sp7vCoAo-SSYfpsQ1sYBBeEDnwCGxDYEwZCM0ler88yoVZIPDXMk1C3XF2L2L0xrbB8Rvhli51TswRlmPIOCZgaY58lKhPr-Pv1jTFJ1oUAu7x6RDtNFZUxbtxs3KYQGLK6FpPD5bKuB0e0NmS9HkAqRVks1&amp;t=638678132040000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=icMURy63hv40LPPfq4rTvmm-RfB_YkC6rEEF_2QOO68q3TseXYNBetRKKgBXJ8mn2e8UIgCPiV23HaQUZbjySMHqSgmYZgLcYltBqwD2_EK8aQ08zBuqc3ZBVZITQrbtn6w46dRxFLibMIQg0Aho73rn8Rpxrzg5YMG_JR0UOrUR0wlZ0&amp;t=638678132040000000" type="text/javascript"></script> <script src="/TDClient/WebResource.axd?d=1HpFfNpwNihNfEP1lyJHvdPVqbv8KRoFH4-_ZORUgPOP-bqmmtIJRvFQc7828Vf59O_-fdBXcnwdv-hYp5RptPuHmMR0kGQM0_3rS4Z7sKfC7jy9Cc_8fyfcUWa8psszacEQlAXHPXmNwyRymbGSywEmhrE1&amp;t=638678132040000000" type="text/javascript"></script> <script type="text/javascript"> //<![CDATA[ function WebForm_OnSubmit() { CKEditor_TextBoxEncode('ctl00_ctl00_cpContent_cpContent_shareBody_txtBody', 0); if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false; return true; } //]]> </script> <div class="aspNetHidden"> <input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="784CA02E" /> </div> <script type="text/javascript"> //<![CDATA[ Sys.WebForms.PageRequestManager._initialize('ctl00$ctl00$smMain', 'aspnetForm', ['tctl00$ctl00$cpContent$cpContent$UpdatePanel1','','tctl00$ctl00$cpContent$cpContent$upFeedbackGrid','','tctl00$ctl00$cpContent$cpContent$UpdatePanel3','','tctl00$ctl00$cpContent$cpContent$UpdatePanel2','','tctl00$ctl00$cpContent$cpContent$upShare','','tctl00$ctl00$cpContent$cpContent$lblResults$ctl00',''], ['ctl00$ctl00$cpContent$cpContent$btnSubmitComments','','ctl00$ctl00$cpContent$cpContent$btnToggleSubscribe','','ctl00$ctl00$cpContent$cpContent$btnToggleFavorite','','ctl00$ctl00$cpContent$cpContent$btnSendShare',''], [], 90, 'ctl00$ctl00'); //]]> </script> <div id="ctl00_ctl00_upMain" style="display:none;"> <div id="ctl00_ctl00_pbMain" class="progress-box-container"><div class="progress-box-body"><div class="well shadow"><h2 class="h4 gutter-top-none">Updating...</h2><div class="progress" style="margin-bottom: 0;"><div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div></div></div></div></div> </div> <header role="banner"> <div id="divMstrHeader" class="master-header NoPrint" style="background-color: #fff;"> <script type="text/javascript" src="https://bot.ivy.ai/bot/script/category/baY98kOxomWwy4MXEjGRDZBzJv7pjr3X"></script> <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="http://www.purdue.edu/" target="_blank"> <img src="/TDPortal/BE/Logo/2/32" alt="Purdue University 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-da1fdf7e94c84cfab91a69a659018d9a" class="gutter-bottom input-group site-search" style="max-width: 400px;"> <div id="SiteSearch-dropdown-da1fdf7e94c84cfab91a69a659018d9a" class="input-group-btn"> <button type="button" id="SiteSearch-filter-da1fdf7e94c84cfab91a69a659018d9a" 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-da1fdf7e94c84cfab91a69a659018d9a">Search the client portal</label> <input id="SiteSearch-text-da1fdf7e94c84cfab91a69a659018d9a" 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-da1fdf7e94c84cfab91a69a659018d9a" 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/32/Purdue/Shared/Search", enableAutocompleteSearch: true, autocompleteSearchUrl: '/TDClient/32/Purdue/Shared/AutocompleteSearch', autocompleteResultsPosition: 'fixed', autocompleteResultsZIndex: 1000, searchTextBoxSelector: '#SiteSearch-text-da1fdf7e94c84cfab91a69a659018d9a', searchComponentFilterButtonSelector: '#SiteSearch-filter-da1fdf7e94c84cfab91a69a659018d9a', searchButtonSelector: '#SiteSearch-button-da1fdf7e94c84cfab91a69a659018d9a', searchFilterDropdownSelector: '#SiteSearch-dropdown-da1fdf7e94c84cfab91a69a659018d9a', showKnowledgeBaseOption: true, showServicesOption: true, showForumsOption: false, autoFocusSearch: false }); }); </script> </div> <div title="Sign In" class="pull-right gutter-top-sm"> <a href="/TDClient/32/Purdue/Login.aspx?ReturnUrl=%2fTDClient%2f32%2fPurdue%2fKB%2fArticleDet%3fID%3d106"> 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="#"> Purdue 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/32/Purdue/Login.aspx?ReturnUrl=%2fTDClient%2f32%2fPurdue%2fKB%2fArticleDet%3fID%3d106">Sign In</a> </li> <li id="divSearch" class="themed tdbar-button-anchored hidden-sm hidden-md hidden-lg"> <a href="/TDClient/32/Purdue/Shared/Search" title="search">Search</a> </li> <li id="divDesktopd9f20c67-3195-4269-8692-eceb93ef1337" class="themed tdbar-button-anchored"> <a href="/TDClient/32/Purdue/Home/">Home</a> </li> <li id="divTDProjects" class="themed tdbar-button-anchored"> <a href="/TDClient/32/Purdue/Projects/">Projects</a> </li> <li id="divTDRequests" class="themed tdbar-button-anchored sr-focusable"> <a href="/TDClient/32/Purdue/Requests/ServiceCatalog">Services</a> </li> <li id="divTDKnowledgeBase" class="themed tdbar-button-anchored sr-focusable"> <a href="/TDClient/32/Purdue/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/32/Purdue/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/32/Purdue/KB/">Knowledge Base</a></li><li class="active"><a href="/TDClient/32/Purdue/KB/?CategoryID=4">Communication &amp; Collaboration</a></li><li class="active">How do I change my Office 365 password for PRF?</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;"> How do I change my Office 365 password for PRF? </h1> <div id="ctl00_ctl00_cpContent_cpContent_divTags"> <span class="sr-only">Tags</span> <span class="fa-solid fa-tags gray gutter-right-sm" aria-hidden="true" title="Tags"></span> <a href="/TDClient/32/Purdue/KB/Search?SearchText=%2523Microsoft365-Exchange" id="ctl00_ctl00_cpContent_cpContent_rptTags_ctl00_TagControl1_lnkDisplay" title="Microsoft365-Exchange">Microsoft365-Exchange</a> </div> <div id="ctl00_ctl00_cpContent_cpContent_divBody" class="gutter-top break-word ckeShim clearfix"><h2>Overview</h2> <p>This article provides step--by-step instructions for how Purdue Research Foundation employees can change their Microsoft365 password.</p> <h2>Instructions</h2> <p><span style="color: #FF0000"><strong>NOTE:</strong></span>&nbsp; These instructions are only for Purdue Research Foundation employees.</p> <ol> <li><strong>Open</strong>&nbsp;a browser and&nbsp;<strong>go to</strong>&nbsp;<a href="http://owa.prf.org/" target="_blank">http://owa.prf.org</a>.&nbsp;<br> &nbsp;</li> <li>After logging in to Office 365 with your full email address and password,&nbsp;<strong>click&nbsp;</strong>the 'Settings' icon in the upper right hand corner of the page.&nbsp;&nbsp;<br> &nbsp;</li> <li><strong>Select&nbsp;</strong>'Options' from the menu given.&nbsp;<br> <img alt="OWA Settings" src="https://service.purdue.edu/TDPortal/Images/Viewer?fileName=c4dddcb9-3ce5-4f60-818a-e231e26c3d96.jpg&amp;beidInt=2" style="border-width: 1px; border-style: solid; width: 222px; height: 248px"><br> &nbsp;</li> <li>You will be directed to the 'My Account' page.&nbsp;<br> &nbsp;</li> <li>The right side of that page is titled: 'Shortcut to Other Things You Can Do'.&nbsp;<strong>Click&nbsp;</strong>the 'Change your password' link.&nbsp;<br> <img alt="Change Password" src="https://service.purdue.edu/TDPortal/Images/Viewer?fileName=1880ba09-d541-4638-a920-9ac1868a881a.jpg&amp;beidInt=2" style="border-width: 1px; border-style: solid; width: 425px; height: 337px"><br> &nbsp;</li> <li><strong>Enter&nbsp;</strong>the old password in the 'Old password' field.&nbsp;<br> &nbsp;</li> <li><strong>Enter&nbsp;</strong>the new password in the 'New password' field and again in the 'Confirm new password' field. Office 365 passwords must follow these requirements: <ol> <li>Use 8 to 16 characters</li> <li>Microsoft 365 requires a strong password (the Password strength bar will be green in color).&nbsp; To be considered a strong password, it must contain at least 3 of the following: <ol> <li>Lowercase characters</li> <li>Uppercase characters</li> <li>Numbers (0-9)</li> <li>Symbols, including:&nbsp;&nbsp;! @ # $ % ^ &amp; * - _ + = [ ] { } | \ : ‘ , . ? / ` ~ “ &lt; &gt; ( ) ;</li> </ol> </li> <li>Don't use your user name (the part of your user ID to the left of the @ symbol).<br> <img alt="Set Password" src="https://service.purdue.edu/TDPortal/Images/Viewer?fileName=ee9176c9-16e2-495a-be66-d93e47d36b8d.jpg&amp;beidInt=2" style="border-width: 1px; border-style: solid; width: 450px; height: 400px"><br> &nbsp;</li> </ol> </li> <li><strong>Click&nbsp;</strong>'Save' to save the password. Use the new password at the next login. &nbsp;<br> &nbsp;</li> </ol> <p><span style="color: #FF0000"><strong>NOTE:</strong></span>&nbsp; Don’t forget to change any other devices (cell phones, tablets etc).&nbsp;</p> <h4><span style="color: #000000"><em>Still need help?&nbsp; Click the 'Purdue IT Request' button to start a ticket.</em></span></h4></div> <div id="divFeedback2" class="well gutter-top-lg"> <div class="row" id="divHelpfulYesNo"> <div class="col-sm-7"> <div> <a href="/TDClient/32/Purdue/Login.aspx?ReturnUrl=%2fTDClient%2f32%2fPurdue%2fKB%2fArticleDet%3fID%3d106">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/32/Purdue/Requests/TicketRequests/NewForm?ID=onL61ITswmQ_&amp;RequestorType=ServiceOffering&amp;ArticleId=106"> <span class="fa-solid fa-fw" aria-hidden="true"></span> Purdue IT Request</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/32/Purdue/KB/PrintArticle?ID=106" target="_blank"> <span class="fa-solid fa-print fa-fw" aria-hidden="true"></span> Print Article</a> <div id="ctl00_ctl00_cpContent_cpContent_divRelatedServicesAndOfferings" class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Related Services / Offerings (2)</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/32/Purdue/Requests/ServiceDet?ID=13">Email &amp; Calendaring</a> </div> </div> <div> Email and calendaring are essential day-to-day tools for everyone. Using them effectively is key. </div> </div> <div class="gutter-top-sm gutter-bottom-lg"> <div class="clearfix"> <div class="pull-left font-md"> <a href="/TDClient/32/Purdue/Requests/ServiceOfferingDet?ID=25">Email &amp; Calendaring Request</a> </div> </div> <div> Email & Calendaring Request </div> </div> </div> </div> <div id="divAttachments" class="js-article-attachments"></div> </div> </div> <div id="ctl00_ctl00_cpContent_cpContent_divProgress" style="display: none; z-index: 60;"> <div id="ctl00_ctl00_cpContent_cpContent_pbMain" class="progress-box-container"><div class="progress-box-body"><div class="well shadow"><h2 class="h4 gutter-top-none">Deleting...</h2><div class="progress" style="margin-bottom: 0;"><div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" style="width: 100%"></div></div></div></div></div> </div> <div class="modal fade" id="divShareModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> <h3 class="modal-title h4" id="myModalLabel"> <span class="fa-solid fa-share-nodes fa-fw" aria-hidden="true"></span>Share </h3> </div> <div class="modal-body"> <div id="ctl00_ctl00_cpContent_cpContent_upShare" aria-live="polite" aria-atomic="true"> <div class="form-group required"> <label class="control-label" for="ctl00_ctl00_cpContent_cpContent_shareRecipients">Recipient(s) <small>- separate email addresses with a comma</small></label> <input name="ctl00$ctl00$cpContent$cpContent$shareRecipients" type="text" id="ctl00_ctl00_cpContent_cpContent_shareRecipients" class="form-control" /> </div> </div> <div class="form-group"> <label for="ctl00_ctl00_cpContent_cpContent_shareBody_txtBody" class="control-label">Message</label> <script src="/TDPortal/Content/nanospell/autoload.js?v=20241122000758"></script> <script type="text/javascript"> (function () { // The "CKEDITOR-config-loaded" event is thrown after the CKEDITOR global variable has been created, but before the instance of CKEditor is ready. // At this point attach a listener to the global variable for the instanceReady event so we can perform our initialization logic. window.addEventListener('CKEDITOR-config-loaded', function () { if (window.CKEDITOR) { setConfigs() initialize(); } }); })(); function setConfigs() { window.CKEDITOR.config['clientScripts'] = [{"scriptPath":["/TDPortal/Content/bootstrap/3.4.1/dist/js/bootstrap.min.js","https://service.purdue.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://service.purdue.edu/TDPortal/BE/Style/2/TDClient/32"]; 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 Purdue Portal knowledge base.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://service.purdue.edu/TDClient/32/Purdue/KB/ArticleDet?ID=106&quot;&gt;https://service.purdue.edu/TDClient/32/Purdue/KB/ArticleDet?ID=106&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;How do I change my Office 365 password for PRF?&lt;br /&gt;&lt;br /&gt;This article provides step--by-step instructions for how Purdue Research Foundation employees can change their Microsoft 365 password.</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://service.purdue.edu/TDPortal/Content/ckeditor/'; //]]> </script> <script src="https://service.purdue.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://service.purdue.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" class="footer colophon"> <div class="footer footer__global__logo"> <div class="container is-fullhd"> <a href="https://www.purdue.edu/" rel="home"> <img src="https://www.purdue.edu/purdue/images/PU-H.svg" alt="Purdue Logo"> </a> </div> </div> <div class="footer footer__signature"> <div class="container is-fullhd"> <a href="https://www.purdue.edu/securepurdue/security-programs/copyright-policies/reporting-alleged-copyright-infringement.php" target="_blank">Copyright</a> © <span class="get-current-year-by-script"></span> Purdue University. All Rights Reserved.<br> <a href="https://www.purdue.edu/accessibilityresources/" target="_blank">Accessibility</a> | <a href="https://www.purdue.edu/purdue/ea_eou_statement.php" target="_blank">EA/EO University</a> | <a href="https://www.purdue.edu/purdue/about/integrity_statement.php" target="_blank">Integrity Statement</a> | <a href="https://www.purdue.edu/purdue/about/privacy-notice.php" target="_blank">Privacy Policy</a> </div> </div> </footer> <script src="https://it.purdue.edu/assets-td/index.js?cache=10-17-24-1"></script> </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/32/Purdue/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/32/Purdue/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