How can I start windows 8 without useing my password

how can I start windows 8 without useing my password

Hi,
Review the information posted in this thread.
HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
HP Photosmart Premium C309G, HP Photosmart 6520
HP Touchpad, HP Chromebook 11
Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
Windows 7/8 UEFI/Legacy mode, MBR/GPT

Similar Messages

  • Hello! I'm out of the country and all my iWeb information is on my computer at home. Now I need to make changes on the webpage... how can i do that without using the computer i made the page on? Thank you!!

    Hello! I'm out of the country and all my iWeb information is on my computer at home. Now I need to make changes on the webpage... how can i do that without using the computer i made the page on? Thank you!!

    iWeb uses the domain.sites2 files to store its assets.
    You'll find it here :
    ~/Library/Application Support/iWeb/
    where ~ is your Home directory.
    If you take a computer with you, you have to store that file in the same location.
    It's not different from taking documents with you if you want to edit them.
    A solution is to remotely control your computer at home.
    TeamViewer, LogMeIn, Apple Remote Desktop or any VNC application you can use, like "Chicken of the VNC".

  • How can i start aperture without retyping the serial number?

    how can i start aperture without retyping the serial number?

    Quit Aperture.
    Go to your Macintosh HD and open the folder "Library", then "Application Support", then "ProApps".
    Remove the File "ProAppsSystemID" to the Desktop, if it exist and restart Aperture.
    Reenter your serial number, hopefully for the last time.

  • Can mail be accessed without using apple password

    Can Mail be accessed without using an Apple password

    Appreciate the reply - it was a local IP problem - thanks

  • Can I reposition windows without using mouse?

    I'm using a third-party application which, when opening a new window, insists on putting the title bar at the top of the window underneath the menu bar at the top of the screen. This occudes the title bar and makes it impossible to click on it to move the window elsewhere on the screen. I also can't minimize or maximize the window because those buttons are also on the title bar.
    Is there a method in OS X that will let me select a window and reposition it on the screen without using the mouse to click-and-drag? (Perhaps using the arrow keys somehow?) Or alternatively, is there a way to automatically reposition all the open windows so that the title bar would become visible (like the tile function I remember from some past Mac version of Word)?
    FYI: I've tried Exposé, but that only brings up a "ghost image" of the window. When I click on it, it immediately heads back to its "occluded" position. I've also tried resizing and rotating the screen in System Preferences. That doesn't work either.
    Thanks for any help you can provide. This is driving me crazy!

    What about enabling Spaces and assigning the window to a different Space - does that have an effect on how the application is positioned?
    What about pressing cmdshift/ to open the help menu. Then type in "Zoom" (assuming that command exists within the application's menus) and press enter. This should have the same effect as pressing the green plus sign in the application top left corner.
    Note that the menus of your application may have several zoom functions. For instance Firefox 3 has Zoom In and Zoom Out under the View menu (for zooming the webpage) and Zoom (the green plus function) for maximising the application window. This means I have to use arrow keys to find the right one in the help menu. However, unless your application is too far "up" or beyond the top of the screen, you should see the menus when you use the arrow keys - a floating blue arrow appears next to the command.
    I found a commercial application that allows moving windows with the keyboard, MercuryMover:
    http://www.macupdate.com/info.php/id/26411/mercurymover
    (see also here http://www.macosxhints.com/article.php?story=20080428064742892)
    I haven't tried it myself but perhaps it will help.
    /p
    Message was edited by: pullman

  • How can change my code without using if else in procedure

    Hai ,
    I have wrote code like this
    if RPTFORMNTH='M' then
    SELECT coalesce(SUM(IN_RWEEKS),0),
    INTO C2_COL1
    FROM HS_CASEDTA_DTLS_TB
    WHERE UPPER(VR_HAUNM) like NVL(case when HAUNM='0' then null else UPPER(HAUNM) END , UPPER(VR_HAUNM))||'%'
    AND IN_ULBOBJID=ULBOBJID AND CH_FLAG!='D'
    AND VR_RPTFORMNTH=VR_RPTFORMNTH
    AND IN_YEAR=IN_YEAR;
    ELSE
    SELECT
    coalesce(SUM(IN_RWEEKS),0),
    INTO C2_COL1
    FROM HS_CASEDTA_DTLS_TB
    WHERE UPPER(VR_HAUNM) like NVL(case when HAUNM='0' then null else UPPER(HAUNM) END , UPPER(VR_HAUNM))||'%'
    AND IN_ULBOBJID=ULBOBJID AND CH_FLAG!='D'
    AND
    TO_DATE(('01/'||VR_RPTFORMNTH||'/'||IN_YEAR),'DD/MM/YYYY')
    BETWEEN to_date('04/' || to_char(RPTYEAR-1),'MM/YY')
    AND add_months(to_date(RPTFORMNTH || to_char(RPTYEAR),'MonYYYY'),1)-1;
    END IF;
    My query is without using if else and replicate data in if and else how can i modify code.Observe that only where condition i want changes that's why i used if else without that how can i modify where clause with that two conditions.Please give me guidance.
    Regards ,
    rajendar.

    hi,
    I think you want your condition to change inside the where clause so you could have only one select statement. If that is so try this:
    SELECT coalesce(SUM(IN_RWEEKS),0),
    INTO   C2_COL1
    FROM   HS_CASEDTA_DTLS_TB
    WHERE  1 = CASE WHEN RPTFORMNTH='M' THEN
                    CASE WHEN UPPER(VR_HAUNM) like NVL(case when HAUNM='0' then null else UPPER(HAUNM) END , UPPER(VR_HAUNM))||'%'
                              AND IN_ULBOBJID=ULBOBJID AND CH_FLAG!='D'
                              AND VR_RPTFORMNTH=VR_RPTFORMNTH
                              AND IN_YEAR=IN_YEAR
                   THEN 1
                         ELSE 0
                    END
               ELSE --  RPTFORMNTH !='M'
                    CASE WHEN UPPER(VR_HAUNM) like NVL(case when HAUNM='0' then null else UPPER(HAUNM) END , UPPER(VR_HAUNM))||'%'
                              AND IN_ULBOBJID=ULBOBJID AND CH_FLAG!='D'
                              AND TO_DATE(('01/'||VR_RPTFORMNTH||'/'||IN_YEAR),'DD/MM/YYYY')
                              BETWEEN to_date('04/' || to_char(RPTYEAR-1),'MM/YY')
                              AND add_months(to_date(RPTFORMNTH || to_char(RPTYEAR),'MonYYYY'),1)-1
                         THEN 1
                         ELSE 0
                    END
               ENDMessage was edited by:
    Bobbydj
    hi Are, after belatedly reading Rob's post, I think his post is better. I was only looking at your highlighted code, but he took the most common conditions inside the where clause.

  • Due to a divorce all my music is on my iTunes and iPod. I had to buy a new computer and want to transfer my Library to the new computer. How can I do this without using an external drive and use new computer just like I do the old one? Thanks.

    Due to divorce, all my music is on my iTunes and iPod. I have had to buy  a new laptop and want to transfer the library to the new computer before deauthorizing the old one. I dont want to have to use an external drive every time I want to listen to my music. How can I do this and have the same basic iTunes setup as before? HELP!

    You might consider itunes match for moving CDs you've copied into your itunes library if you dont have a way to use home sharing.
    iTunes match is an optional service offered by apple that costs about $25 a year.  It scans your music library and if it finds music that is already in apple's itunes catalog it'll automatically "unlock"/"store" these in the cloud for you.  Items that it does not find in the catalog it'll upload and store these in the cloud for you and you can download them on your devices.  See http://www.apple.com/itunes/itunes-match/

  • HT4972 I tried updating My device but I was unable to how can I do that without using a pc

    I tried updating my iTunes to the 10.6 version but it would not allow me to.  It also would not update ios5 either what should I do?  How can I download for free?

    Try:'
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    or
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP

  • How can I pay purchases without using credit card in India?

    I'm living in India. I don't have a credit card. Please help me how can I  pay my purchases on iTunes Store by any other method. I have a net banking account and a debit card??? Please help...

    Accepted form of payment
    http://support.apple.com/kb/HT5552

  • The password features does not work. Open TB, and I can read my email without using the password. Why?

    I use a password for security. When I click onto TB, I do not have to use my password to read my emails or it will not download. I cannot figure out how to change my password. When I tried to set the master password,
    it claims to have confirmed the new one. But I have to use the old password, or I do not have to use a password at all to read my email, if it downloads. This is after I uninstalled and installed TB 24.4 three times.
    Now what, any ideas?

    Here is my understanding: the master password secures your saved passwords. In other works, it unlocks your password to connect to the server to send and receive mail. It doesn't prevent people who have access to your computer from opening Thunderbird and seeing what's already there.
    This article has an extended discussion of many methods to try to prevent others from reading your already downloaded mail: http://kb.mozillazine.org/Protecting_the_contents_of_the_profile_-_mail

  • I had start over just like getting a new computer, one thing, i lost mail and iphoto, but my daughter has it on her's.  how can i get it without using the start disk, because i don't have one.

    how do i get back mail and iphoto?

    Mail should be there, have you looked in the Aplications folder?

  • How can I install windows 7 using boot camp, if the partition will not format correctly?

    Hi All,
    I'm new to this forum and have had a chance to look around a little bit, but haven't really found an answer to the problem that I'm having.
    I have an imac and I'm attempting to use boot camp.  I have used it in the past, with prior versions of mac os x, but this is the first time that I have tried it with 10.6.8.  The first thing I found out is that I can't use Windows XP, even with service pack 2 installed, because it doesn't find the "boot camp" partition.  So, I recently obtained a full retail copy of Windows 7 and have been trying to install it.  I have no problem with the boot camp assistant creating the new partition, 200 GB.  However, when I insert the Windows 7 DVD and the computer restarts in the Win 7 install screen it tells me that I cannot install Windows on the selected partition (which I expected to see.)  So I choose "format" the further format the partition.  It doesn't ask me how I would like to partition this, but just seems to start.  All seems to go fine until it finishes and i see the same message of "Windows cannot be installed in the selected partition."  I can click on the format tab endlessly but it still doesn't seem to work.  Does anyone have any ideas?  I've called Apple and their technicians keep telling me that I need to reinstall the Mac OS again, which I've tried.  It doesn't seem to help either.
    Thanks in advance for your help,
    DTK

    David Kaff wrote:
    Yes, I choose "Format" under the advanced options screen.  It seems like it formats, but then I get the same message of "Windows cannot be installed to this disk.  The selected disk is of the GPT partition style."  I can continue to click "format" but i keep getting the same error.
    There is the answer, right in front of us ....
    Delete the bootcamp partition and start again the correct partition type is GUID but BootCamp should take care of that automatically so try again.

  • How can I start Windows XP Mode when there is no startup link in the Start Menu?

    I have installed and had to uninstall and reinstall Windows XP Mode numerous times on my Dell desktop running Windows 7 Professional and now I cannot start it because there is no startup link in the Program Files folder. When i try to reinstal XP Mode
    it tells me it's already installed, but I can't find the startup link. 
    Martin Willcocks

    Hi,
    Could you find XP mode in Start Menu?
    How about using Windows Search feature to search Windows XP Mode?
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How can I import photos without using iPhoto?

    I'm 37, a lifetime PC/Windows user and have finally made the switch to Mac after years of using every other Apple product, including iPod, iPhone and Apple TV, which, by the way, must be the most under-marketed and best value Apple product ever. I can't believe more people don't have Apple TV in their homes.
    With PCs, I was used to importing pictures to my hard drive and then viewing and editing them with whatever software applications I wanted. With my Mac, I notice that when I insert my SD card, iPhoto starts and asks me to import, which I agree. Unfortunately, it imports the images to an iPhoto folder that I can't easily access from another program, such as PhotoshopElements. I have read how to use Finder to navigate to these imported images in the iPhoto library ("Show Package Content") and then I copy the folder of images and paste it to a folder in my "Pictures" directory in Finder, but I find this tedious and also redundant as I now I understand I basically have two copies of every image, one for iPhoto Library and the other for accessing via other programs, such as Photoshop.
    Is there anyway I can simply import images straight to a folder on my hard drive?
    Also, if I do choose to access these images via iPhoto, am I correct in assuming iPhoto will automatically create a duplicate folder, just for accessing in the iPhoto library? If so, isn't this a waste of hard drive space? Can this be avoided?
    Thank you for any and all assistance.
    Kevin

    Hi Kevin,  I am in the same boat as you having been buying PCs for the last 25 years and managing IT for SMEs I have now purchased my first Mac (mac mini).  My move to Mac started with the iPhone that led to the iPad then like you I succumbed to the beauty of the Apply TV that then led to the purchase of an Airport Express.  The love affair had to conclude in the purchase of a Mac! 
    For many years I have used the feature to have the date photos taken created as a folder and all photos from that date placed in that folder.  Every year I create a new folder for that year and the import on PC creates the daily folders to hold photos …
    I was just about to ask how I can keep doing this and realised it’s not as important as I thought – I’ll still create a folder for each year and just have the photos dumped in there.  I can sort in Finder by date taken and catalogue in any way I won’t.
    I’ll still use folders rather than iPhoto as I want other software like XBMC (on other OS)  to read the photos.
    Thanks for letting me rant – I thought I will post anyway as this is my first Apple post and it may assist others.

  • Im creating a Digital magazine using InDesign. How can I publish it without using DPS?

    Hi there,
    I feel really stupid asking this question.
    But Im creating a digital magazine for a school project and I only need to publish it or view it on an Ipad just for the marker who is looking at it, Can see how it works and Can mark it. Is there anyway I can go about doing that without purchasing the DPS. As its alot of money and I dont wish to buy it just to put this one magazine on an Ipad. Its just for my final yearlie school project. So again I dont see the point of purchasing it just for this one project, In which I will never use it again...
    Thank you.

    As long as you have the Adobe DPS tools installed (Folio Builder and Folio Overlays), and you have a free Adobe ID, you can create folios and can view them on your iPad. You can share them with another person who has an Adobe ID. You cannot publish the folio on the Apple App Store without a Creative Cloud subscription, or by purchasing the rights to publish a Single Edition app.
    For further questions, please ask on the Adobe DPS forum:
    Digital Publishing Suite

Maybe you are looking for