HELP!! My User-Name isn't working. I'm locked out of editing my settings :(

I tried going into my Time Machine setting to change them and it prompted me to log in "as an administrator" to make changes. It says "Type an administrators name and password to make changes". I didn't know what this meant because usually my name is already in the "Name" field and all I have to do is put in my password. Now, both fields are blank, and when I fill in the name and password fields, it doesn't work. I don't know why. I'm sure the password is right but I I don't know how to determine the correct user name since mine doesn't work : (
Please help me.

Reset the password. Info here: http://docs.info.apple.com/article.html?artnum=106156

Similar Messages

  • Check User Name: Isn't happening

    I have a registration page in JavaScript that is working fine except for the fact that I need it to check username against the database to insure that usernames do not get duplicated in the database. Because it does not check username I come to realize that user’s information is getting mixed up if the username are the same.  I am sure I am not doing this correctly because I have not used JavaScript before…. So I than created an Insert Record on the registration:
    Submit Values From: Form 1
    Connection: Rescue
    Insert Table: user_registration
    Columns: ‘ID’Gets Value From “FORM.username as Integer’
    Submit as: Integer
    After insert, go to: myprofile.php
    After creating the Insert Record I created the Check New Username:
    Username Field: username
    If already exist, go to: register.php
    So I tested to see if what I added worked and it does not.  What does happen- is when I create a new record in which the user has the same username that is all ready in the database…it allows me to create a duplicate username in the database and then send me to the following blank screen with the URL: http://www.rescuealerts.com/forms/user_registration/user_registration.php. Instead of sending me back to registration page to try again. I also realize I need to program in a message stating that username is unavailable try again but I hadn’t gotten to that point because I am first trying to get the Check New Username to work.  Please find below the code for the Insert Record, the Check New Username and the registration input form.
    Insert Record and Check New Username Code:
    <?php require_once('Connections/rescue.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    // *** Redirect if username exists
    $MM_flag="MM_insert";
    if (isset($_POST[$MM_flag])) {
      $MM_dupKeyRedirect="register.php";
      $loginUsername = $_POST['username'];
      $LoginRS__query = sprintf("SELECT ID FROM user_registration WHERE ID=%s", GetSQLValueString($loginUsername, "int"));
      mysql_select_db($database_rescue, $rescue);
      $LoginRS=mysql_query($LoginRS__query, $rescue) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      //if there is a row in the database, the username was found - can not add the requested username
      if($loginFoundUser){
        $MM_qsChar = "?";
        //append the username to the redirect page
        if (substr_count($MM_dupKeyRedirect,"?") >=1) $MM_qsChar = "&";
        $MM_dupKeyRedirect = $MM_dupKeyRedirect . $MM_qsChar ."requsername=".$loginUsername;
        header ("Location: $MM_dupKeyRedirect");
        exit;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO user_registration (ID) VALUES (%s)",
                           GetSQLValueString($_POST['username'], "text"));
      mysql_select_db($database_rescue, $rescue);
      $Result1 = mysql_query($insertSQL, $rescue) or die(mysql_error());
      $insertGoTo = "myprofile.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>
    Registration Code:
    <script src='http://www.rescuealerts.com/forms/user_registration/scripts/gen_validatorv5.js' type='text/javascript'></script>
    <script src='http://www.rescuealerts.com/forms/user_registration/scripts/sfm_captcha_validator.js' type='text/javascript'></script>
    <script src='http://www.rescuealerts.com/forms/user_registration/scripts/sfm-png-fix.js' type='text/javascript'></script>
    <link rel='stylesheet' type='text/css' href='http://www.rescuealerts.com/forms/user_registration/style/user_registration.css'/>
    <form id='user_registration' method='post' action='http://www.rescuealerts.com/forms/user_registration/user_registration.php' accept-charset='UTF-8'>
       <div id='user_registration_errorloc' class='error_strings' style='width:500px;text-align:left'></div>
      <div id='user_registration_outer_div' style='width:500px;height:1120px'>
          <div style='position:relative; font-weight: normal;' id='user_registration_inner_div'>
             <input type='hidden' name='sfm_form_submitted' value='yes'/>
             <div id='heading_container'>
                <div id='heading'>Please Enter Your Information Here:</div>
             </div>
             <div id='Image2_container'>
                <img class='sfm_image_in_form' src='http://www.rescuealerts.com/forms/user_registration/images/rescue_logo_3 copy.jpg' width='128' height='24' alt='Rescue Alerts Logo'/>
             </div>
             <div id='register_name_container'>
                <input type='text' name='register_name' id='register_name' size='20' class='sfm_textbox'/>
             </div>
             <div id='label39_container'>
                <label id='label39' for='register_name' class='sfm_form_label'>Name:</label>
             </div>
             <div id='register_semail_container'>
                <input type='text' name='register_semail' id='register_semail' size='20' class='sfm_textbox'/>
             </div>
             <div id='register_pemail_container'>
                <input type='text' name='register_pemail' id='register_pemail' size='20' class='sfm_textbox'/>
             </div>
             <div id='label2_container'>
                <label id='label2' for='register_pemail' class='sfm_form_label'>Primary Email:</label>
             </div>
             <div id='label3_container'>
                <label id='label3' for='register_semail' class='sfm_form_label'>Secondary Email:</label>
             </div>
             <div id='register_cellphone_container'>
                <input type='text' name='register_cellphone' id='register_cellphone' size='20' class='sfm_textbox'/>
             </div>
             <div id='register_phone_container'>
                <input type='text' name='register_phone' id='register_phone' size='20' class='sfm_textbox'/>
             </div>
             <div id='label4_container'>
                <label id='label4' for='register_phone' class='sfm_form_label'>Home Phone:</label>
             </div>
             <div id='label5_container'>
                <label id='label5' for='register_cellphone' class='sfm_form_label'>Cell Phone:</label>
             </div>
             <div id='register_pass_container'>
                <input type='password' name='register_pass' id='register_pass' size='20' class='sfm_textbox'/>
             </div>
             <div id='register_login_container'>
                <input type='text' name='register_login' id='register_login' size='20' class='sfm_textbox'/>
             </div>
             <div id='label6_container'>
                <label id='label6' for='register_pass' class='sfm_form_label'>User Password:</label>
             </div>
             <div id='label38_container'>
                <label id='label38' for='register_login' class='sfm_form_label'>User Login:</label>
             </div>
             <div id='heading1_container'>
                <div id='heading1'>Enter Emergency Contact  Information Here:</div>
             </div>
             <div id='label14_container'>
                <div id='label14'>Contact 1:</div>
             </div>
             <div id='con1_cell_container'>
                <input type='text' name='con1_cell' id='con1_cell' size='20' class='sfm_textbox'/>
             </div>
             <div id='con1_name_container'>
                <input type='text' name='con1_name' id='con1_name' size='20' class='sfm_textbox'/>
             </div>
             <div id='label11_container'>
                <label id='label11' for='con1_cell' class='sfm_form_label'>Cell Phone:</label>
             </div>
             <div id='label40_container'>
               <label id='label40' for='con1_name' class='sfm_form_label'>Name:</label>
             </div>
             <div id='con1_land_container'>
                <input type='text' name='con1_land' id='con1_land' size='20' class='sfm_textbox'/>
             </div>
             <div id='label10_container'>
                <label id='label10' for='con1_land' class='sfm_form_label'>Land Line:</label>
             </div>
             <div id='con1_email_container'>
                <input type='text' name='con1_email' id='con1_email' size='20' class='sfm_textbox'/>
             </div>
             <div id='label12_container'>
                <label id='label12' for='con1_email' class='sfm_form_label'>Email:</label>
             </div>
             <div id='label15_container'>

    hjohnson2011 wrote:
    I have a registration page in JavaScript that is working fine except for the fact that I need it to check username against the database to insure that usernames do not get duplicated in the database. Because it does not check username I come to realize that user’s information is getting mixed up if the username are the same.  I am sure I am not doing this correctly because I have not used JavaScript before….
    When asking for help, you stand a much better chance of getting the answers you need if you create a simple test page to illustrate the problem, rather than posting hundreds of lines of code. A test page helps isolate the problem without being distracted by everything else in your complex form.
    What's not clear from your description is what the JavaScript is intended to do. Taking a quick look at the code you have posted here, the Insert Record server behavior handles only the username. Yet your form has dozens of fields. Also, the form's action attribute points to user_registration.php. Is this the same page or a different script? If it's a different script, that's what's inserting the values into the database. The Check User Name server behavior is never called. Or is an external JavaScript file taking the values after validation and using an Ajax call to insert them in the database? Again, this would bypass the Check User Name server behavior.
    Having said that, the Check User Name server behavior is, to my mind, worse than useless, because it redirects the user to another page, thereby losing all the user input. The simple solution is to add a UNIQUE index to the username column in the database. This prevents a duplicate entry from being inserted. However, you need to customize the Insert Record server behavior to intercept the MySQL error like this:
      // remove the or die() clause
      $Result1 = mysql_query($insertSQL, $rescue);
      // if the username is already in use
      if (!$Result1 && mysql_errno() == 1062) {
          $error = $_POST['username'] . ' is already in use. Choose another.';
      } elseif (mysql_error()) {
          $error = 'Sorry, there is a problem with the database. Try later.';
      } else {
          $insertGoTo = "myprofile.php";
          if (isset($_SERVER['QUERY_STRING'])) {
            $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
            $insertGoTo .= $_SERVER['QUERY_STRING'];
          header(sprintf("Location: %s", $insertGoTo));
      }  // close extra conditional statement
    You can then redisplay the page if the username is already taken, and use the $_POST array to preserve the user's input in the form.

  • I had to reinstall ox and snow leopard on my imac g5.   I used the migration assistant on my macbookpro to copy everything onto the imac. The apps came in fine, but all folders say "no access." None of my user names seem to work. What now?

    My iMac G5 was running too slow. I tried everything I could think of or find in the literature, but finally had to start over by reinstalling OX and then Snow Leopard. I lost all my folders and applications, so I used the Migration Assistant on my MacBookPro to copy everything onto the iMac G5. The applications all came through fine, but all of my folders have the "no access" icon on them. I followed the instructions I found on line, but none of my user names worked. What do I do now? Am I just out of luck? The only other alternative I can see is to transfer all my folders onto a thumb drive and put them into the iMac, but that will be slow and cumbersome.

    Are you now using a different username from the one you used prior to migrating? If so that is the reason for the problem. You might, then, give this a try:
    To fix Home folder permissions
    Open the Terminal application in the Utilities folder.  At the command line prompt enter or paste the following command line:
    sudo chown -R `id -un`:`id -gn` ~
    Press RETURN.  You will be prompted to enter your admin password which will not be echoed.

  • How to get/capture log-on user name on PC (work station)

    Hi,
    Colud anyone give me how to get/capture log-on user name on my PC (work station)?
    I need to get the infomation by using a function module.
    Kind regards,
    Hisao

    Hi,
    TH_USER_INFO shows me terminal ID, IP address and other information. howerver it does't show me log-on user name of OS.
    Kind regards,
    Hisao

  • Zen Micro isn't working on 2 computers out of th

    Hi everybody.
    Once I updated my zen micro player's firmware, it doesn't work on 2 computers out of 3.
    There doesn't seem to be any sort of conflict with the device. The Zen Micro works on my laptop that runs a windows xp HOME edition. This seems to be the only difference with the other two computers, that have an OS win xp PRO.
    The weird thing is that when I connect the device, a window pops out asking me if I want to synchronize the files. So far so good. The problem is that it is not recognized, there doesn't seem to be any device connected to the computer, and the pc asks me to connect the device. On the Device Manager the player is shown normally, that's why I say there should be no conflicts.
    I tried unistalling and re-installing the installation cd, I also tried to update several times the player with a new driver. But I cannot do anything with the player because the pc tells me to connect the device.
    This is driving me insane.
    Hope somebody can help! =)

    johnnyenglish,
    Take a look at knowledgebase article #0053. It covers this topic and how to resolve it.
    Daniel

  • Users locked out of editing Expense Reports

    Hi There,
    Users of the system are reporting that they are frequently unable to edit their expense reports, as the system incorrectly believes that they are attempting to edit reports in multiple sessions.
    A general error is occurring in which the user will be editing an expense report and will perform an action such as closing the browser, closing a browser window/tab or even simply exiting an expense report while using the application.
    After returning to the report, an error message appears saying that they are editing the expense report even though they only have one session open.
    This would suggest that upon performing such an action, the original session becomes stuck while editing the report, resulting in users having to wait long periods of time before this stuck session is automatically closed.
    Is this a commonly known problem, and is there any way that this can be fixed?
    Thanks,
    Tom Wright

    Tom,
    It's one of the biggest pains of the system! Requests have been submitted to SAP numerous times to stop locking people out of editing their reports for silly reasons that you mention. I am not sure if they have any intention of improving it.
    There is a trick to unlocking the report for editing though.
    - log off the system
    - attempt to log back on with the wrong password
    - then log back on with the correct one
    This action has worked 100% of the time in unlocking a report for edit.
    Best of luck,  Britt

  • [HELP!] My charger isn't working for some reason.

    Hey everyone!
    I am having a problem with my charger. I can't quite clarify if it's broken or not, but I know that there is something wrong with my computer or the charger itself. As a mac user, I've gone through 2 chargers so far. I'm currently on my second one because the old one broke. I've noticed that they had the exact same issues.
    Here's the story:
    First, the charger would be perfectly fine for about... a month or half a month.
    Then, the connecter (metal part) would start to overheat and the light that tells us when the computer is charging or full battery wouldn't work properly. Sometimes it would get all mixed up. For example, when it's 100% it's orange and when it's 88% it's green. Or sometimes it wouldn't even charge at all.
    I know that some of us have the sign "Not Charging" at the upper-right hand corner of our tool bar. That would occur too, in my experience. This would probably go on for about as long as my computer or charger gives up.
    Finally, I have to go down to the apple store to see what's going on with my jacked up charger.
    Last time, they said that it was the charger at fault.
    I have no idea if it's my charger or just my computer, but I'm a bit suspicious of my macbook's inner battery source though.
    Now my laptop is doing the exact same thing now as it was before. I'm so frustrated, but I never really cared about it until now; when it doesn't work.
    >:O
    This computer was a hand-me-down from my mother who got this computer from my father. He payed WAY too much for this computer and I don't want to haveit damaged; internally or externally.
    I still have my warrenty and I plan on checking it out at the apple store as soon as I come back from my vacation.
    I'm extremely anxious about this situation because I do online schooling and I'm in an area that has no apple store. At all.
    Please help me with this mess!

    It is allways helpful to indicate what model MBP you have and the OSX you are using.
    There is the posibility of a bad connection in the MBP.  Examine the electrical input port for dirt and debris.  also check to see if there is any discoloration of the contacts.
    Open System Profiler/Information and post this from your MBP.  Please make certain that the power adapter is connected.
    Ciao.

  • Help - My iChat AV isn't working

    Hey there,
    So I appear to have a similar problem to other users - it's error -8, for one thing - but I'm really not computer savvy. I've tried the solutions on here as best as I can, but I'm a bit useless, to be honest. Help would be greatly appreciated, please, as I really need the webcam to talk to my family back home (aaawwww...)
    Here are the details: every time I try to set up a webcam session, I get the message 'Failed to start Video Chat because XX did not respond' (XX is my name; I've withheld it!)
    And here's my error log. Again, any help would be grand. Cheers!
    Date/Time: 2007-08-07 23:05:41.876 +0100
    OS Version: 10.4.10 (Build 8R2232)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 2661342219.
    ctah1976: State change from AVChatNoState to AVChatStateWaiting.
    0x175adea0: State change from AVChatNoState to AVChatStateInvited.
    0x175adea0: State change from AVChatStateInvited to AVChatStateConnecting.
    ctah1976: State change from AVChatStateWaiting to AVChatStateConnecting.
    ctah1976: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    0x175adea0: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    Video Conference Support Report:
    Video Conference User Report:

    Hi ctah1976,
    Welcome to the  Discussions
    Your Log says that the ports iChat needs to use are not open somewhere.
    Do you have the Mac firewall On ?
    If so do the bits at the second pic
    Have you set up your modem or router to allow iChat through ?
    If not us device(s) you are using.
    Do you know if your SIP offers a Internet Phone Service (VoIP) ?
    This uses a protocol called SIP the same as iChat does and iChat gets blocked if the SIP is trying to get extra money for this service.
    Normally telling them that is blocking an application you are using gets it sorted.
    1:34 PM Wednesday; August 8, 2007

  • I cannot sign into iCloud on my iMac.  I have read all of the help information, but that isn't working.  I cannot do anything with my system preferences - like add a new printer - because it won't log me in, sign me out, forget password doesn't work, etc.

    I have been unable to log in to iCloud on my iMac.  None of the hints online have worked.  I can't sign in (with any password), sign out, the forget password doesn't work, the support button doesn't work.  It's locked.  I can't find anyway to fix this - I need to add a new printer ASAP - help!!!

    The "Mail, Contacts & Calendars" window popped up a couple of weeks ago and is asking for my Apple ID password, which it will not accept,  It won't sign me out (I am not logged in), the support or forgot password buttons won't work.  With this window stuck open, I cannot access anything on system preferences.  I can't find any way to make it go away.  I have tried both my current and old Apple ID passwords, tried using FaceTime to login with the newer password, etc.

  • Please help!! onSessionEnd isn't working

    I've gone over this code and tried loadsa different things
    but onSessionEnd just won't work!
    Session variables are enabled and i have set a sessionTimeout
    in the application.cfc but still nothing!
    Also onApplicationStart, onApplicationEnd onRequestStart,
    onRequestEnd and sessionStart are all working fine.
    Please Help!!!

    Your function is called
    onSess
    eionEnd - there's only one e in Session.

  • Custom Name isn't working properly in the apply custom name preset

    The custom field in apply custom name keeps the same name you put in when creating the preset.  Shouldn't it leave the "custom" part of the name empty and ready to fill in whenever you apply that preset to a set of clips? 
    I set it up with the custom name of "Fog-Road".  Obviously I don't want to rename every clip in my collection to those words.

    Well, in spite of no replies, I continue to investigate this issue.  It turns out the behavior is not different on my desktop and laptop.  Instead, some files work for the web ID plate, and some don't.  I can't figure out the pattern.
    Here are some samples I've been playing with.
    The first three files do NOT work as an ID plate and are blank on the web page.  The last three files do work.
    The first file -- yellow logo -- is Index color mode, but when I change it to RGB it still does not work for the ID plate.  The two text-only files -- "another test" and "test two" -- were made in PS with a new file, add text, flatten, save.  They do not work.
    The three files that work -- the last three images -- were made from a JPG with just a crop, then add text, then fill the bkground with black.
    Why the first three don't work and the last three do is a mystery.
    Maybe now someone here will have a clue.
    Thanks to anyone who might be listening.
    John

  • Help. My touchpad isn't working correctly!

    I can go up and down with my touchpad when I scroll but for some reason I can't go back or forward ( using the three fingers ) or 4 fingers for expose. I'm not sure whats going on, but I have my settings correct. How do I fix this? Thanks!

    May be unchecking and rechecking the items in the Trackpad pane will help.
    System Preferences > Tracckpad > Point & Click
    Check the Double Click speed.
    System Preferences > Trackpad > Trackpad Options > Double Click Speed
    Shut down the computer. Clean the trackpad with a slightly damp but  not wet
    microfiber cloth. Sometimes that can help.

  • Don't know my Admin name and it won't let me change or edit my settings. Help!

    I recently changed my Admin setting so that I could use parental controls on my laptop, as my exams are coming up I wanted to block websites that would distract me. It told me I had to restart my laptop so I did, and when I went back to setting it told me I had to unlock it,coming up with the lock key. Its asking me for my admin name and password. I've never paid much attetention to my admin name as it normally comes up automatcally, but nothing I put in is accepted and I know my password's 100% correct. People have said to use the account name and things but that doesn't work either and I've retyped my name about 100000 times. It would be really helpful if anyone knew how to solve this. Thanks

    Look in System preferences > Users and Groups [formerly Accounts]...
    ... all the Accounts should be shown there, along with an Indication of which Accounts are Admin. What will NOT be shown are the passwords that match those Accounts, and there is no way to extract those passwords, as they are never stored "in the clear" (always encrypted).
    If you don't remember a password, you will have to use a convoluted process to replace the old password with a new one going forward (and the old password is discarded in the process).

  • Help! My buttons have stopped working when keyboard locks.

    I have a blackberry curve 8900 and it's always worked fine but today it started giving me trouble. I have it set to always block the keyboard when not in use and today, it won't unlock anymore.
    I tried taking off the battery and SIM card for a few minutes, and then when it turns on it works perfectly fine, but the minute I leave it alone and the screen goes dark, everything just stops working, the trackball, buttons, unlock button, etc. The screen is just plain dark as if it was off ( but it isn't cause I still hear emails and bbm messages)
    I thought it may have something to do with the memory,  and I deleted a bunch of useless stuff but nothing seems to work. Also, it happened out of the blue, no new installs in the past few months. Didn't drop it or got it wet. Any suggestions? Thanks!

    Hello leonomeli,
    Try one of the different methods listed here for reloading your BlackBerry Device Software:
    http://www.blackberry.com/btsc/KB03901
    Cheers,
    -FB
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click "Accept as a Solution" for posts that have solved your issue(s)!

  • I cannot access my idisk, I used the password I used to log into my user name but it is still not working. Please help!

    I tried several times since I bought my macbook pro to log into my idisk. My password for my user name does not work. I am clueless about what to do next.

    You need to turn the phone off and leave it in dry rice for 3-5 days. Then, plug it in and charge it for about 15 minutes and then try to turn it on. If it doesn't work at that point, it will be time to get a new phone.

Maybe you are looking for

  • Can a mac talk to a pc

    I want to connect my iMac to a home network with pc's and a shared ad passport external drive to do backups, is that possible?

  • Angular JS and coded UI

    Hi  our website is developed using angularJS and HTML5 . I am trying to record a coded UI for the login. Recording is good and code is generated properly, however when i run the script, it presses the login button but login is not successful. Infact

  • Need help about Financials Operating Unit Level Setup data object transforming

    Hi All, We met some issues while using iSetup to create new OU from existing one via 'Financials Operating Unit Level Setup' template and need your help. We can perform Extracting successfully, but when we're tring to proceed Transform, it seems iSet

  • Infopath 2010 Web Form will not run code behind or load External Lists after FormEvents_Loading added

    Building a form to edit and create data in external list. The business rules do not allow for creation in an external list bound InfoPath form. (We are cascade filtering multiple drop down lists from external content type). All works to write code be

  • Automatically shutting off at boot?

    Alright, I'm not exactly sure which version of leopard I have because I can't even get into my computer to see. So I shut down my computer last night as usual...waited for the screen to go off and closed it. This morning when I went to boot up to che