Bit locker encryption requests key unless I suspend and resume the encryption

I am rolling out new computers with Windows 7 Enterprise OS on them.  I am installing bit locker encryption on them.  For some reason with this group of computers, and I recently rolled out a different batch of computers without this problem,
after encrypting, I must suspend and resume bit locker or upon restart of shutdown and start the user is prompted for the bit locker encryption key.

Hi,
Could you please tell some more details about the issue? What do you want to achieve here? To enable bitlocker without the prompt of the startup key? If it is , then please take a check if we have  Require
additional authentication at startup  policy enabled.
Besides, could you please have a share for how do you enable bitlocker?
And here is a guide for bitlocker in Windows 7, just for reference:
BitLocker Drive Encryption Step-by-Step Guide for Windows 7
BitLocker Drive Encryption in Windows 7: Frequently Asked Questions
Hope this may help
Best regards
Michael Shao
TechNet Community Support

Similar Messages

  • HT201250 I've just used an external drive to back up my Mac with Time Machine. I have Lion, but didn't click and check the "Encrypt Backup Disc". What should I do? Can I delete the external drive and start again, or can I encrypt later?

    I've just used an external drive to back up my Mac with Time Machine. I have Lion, but didn't click and check the "Encrypt Backup Disc". What should I do? Can I delete the external drive and start again, or can I encrypt later?

    I guess if stolen or lost it would protect my "stuff", and if I'm travelling would protect my privacy.
    You must understand the purpose and implications of encryption before deciding whether to use it.
    Encryption locks your data with a password. If you forget that password, the data is lost beyond any chance of recovery. Neither Apple nor anyone else will be able to help you recover that data if you don't know the password.
    By the same token, the password must be strong enough to provide the security you want. For example, if you're the potential target of industrial espionage by a government or large corporation, you need the strongest possible password. To create and manage such a password safely is a task in itself, not to be undertaken lightly.
    If you're only concerned about casual snooping by someone with no special skill, a weak, easily-remembered password is appropriate.
    But regardless of the strength of the password, if you lose it, the data is gone forever.
    Another point to remember is that if you encrypt your data on one storage device, you must also encrypt it on all other storage devices that would be accessible to the same attacker. Otherwise the data isn't protected. For example, if you keep your computer and your backup drive in the same room, and the internal drive of the computer is not encrypted, then there's no point in encrypting the backup drive.

  • Log onto incoming mail server (POP3): Your server does not support the connection encryption type you have specified. Try changing the encryption method. Contact your mail server administrator or Internet service provider (ISP) for additional assistance.

    Hi All,
    This is my first post to ms exchange forum am getting  Log onto incoming mail server (POP3): Your server does not support the connection encryption type you have specified. Try changing the encryption method. Contact your mail server administrator
    or Internet service provider (ISP) for additional assistance. in my outlook clients, till last Sunday (12.04.15) my exchange was well & good, Monday morning suddenly the problem started like none of our outlook pop3 clients are able to communicate
    with exchange (rest  IMAP, SMTP & Exchange accounts are working fine). i have tried with all port no but no luck. please help me to get raid of this one.
    Exchange 2013 CU6 with server 2012 Std 64Bit
    Thanks,
    Murali 

    Dear All,
    I have found the solution for above problem, the problem has occur due to PopProxy inactivity
    please find relevant exchange management shell commends below.
    1. Get-ServerComponentstate -Identity <yourmailserver.com> 
    Server Component State
    yourmailserver.com ServerWideOffline Active
    yourmailserver.com HubTransport Active
    yourmailserver.com FrontendTransport Active
    yourmailserver.com Monitoring Active
    yourmailserver.com RecoveryActionsEnabled Active
    yourmailserver.com AutoDiscoverProxy Active
    yourmailserver.com ActiveSyncProxy Active
    yourmailserver.com EcpProxy Active
    yourmailserver.com EwsProxy Active
    yourmailserver.com ImapProxy Active
    yourmailserver.com OabProxy Active
    yourmailserver.com OwaProxy Active
    yourmailserver.com PopProxy Inactive
    yourmailserver.com PushNotificationsProxy Active
    yourmailserver.com RpsProxy Active
    yourmailserver.com RwsProxy Active
    yourmailserver.com RpcProxy Active
    yourmailserver.com UMCallRouter Active
    yourmailserver.com XropProxy Active
    yourmailserver.com HttpProxyAvailabilityGroup Active
    yourmailserver.com ForwardSyncDaemon Active
    yourmailserver.com ProvisioningRps Active
    yourmailserver.com MapiProxy Active
    yourmailserver.com EdgeTransport Active
    yourmailserver.com HighAvailability Active
    yourmailserver.com SharedCache Active
    2. Set-ServerComponentState -Identity <yourmailserver.com> -Component PopProxy -Requester HealthAPI
    -State Active
    3. Get-ServerComponentstate -Identity <yourmailserver.com> 
    Server Component State
    yourmailserver.com ServerWideOffline Active
    yourmailserver.com HubTransport Active
    yourmailserver.com FrontendTransport Active
    yourmailserver.com Monitoring Active
    yourmailserver.com RecoveryActionsEnabled Active
    yourmailserver.com AutoDiscoverProxy Active
    yourmailserver.com ActiveSyncProxy Active
    yourmailserver.com EcpProxy Active
    yourmailserver.com EwsProxy Active
    yourmailserver.com ImapProxy Active
    yourmailserver.com OabProxy Active
    yourmailserver.com OwaProxy Active
    yourmailserver.com PopProxy Active
    yourmailserver.com PushNotificationsProxy Active
    yourmailserver.com RpsProxy Active
    yourmailserver.com RwsProxy Active
    yourmailserver.com RpcProxy Active
    yourmailserver.com UMCallRouter Active
    yourmailserver.com XropProxy Active
    yourmailserver.com HttpProxyAvailabilityGroup Active
    yourmailserver.com ForwardSyncDaemon Active
    yourmailserver.com ProvisioningRps Active
    yourmailserver.com MapiProxy Active
    yourmailserver.com EdgeTransport Active
    yourmailserver.com HighAvailability Active
    yourmailserver.com SharedCache Activ
    Replace yourmailserver.com with your server host name.
    Thanks

  • Java Thread suspend and resume problem

    Hi,
    I am trying to write a program to implement thread suspend and resume using wait() and notify without using the deprecated methods like resume and suspend.
    I have written the following program which compiles but when I run it hangs without terminating. There seems to be some logic error but I am not able to catch it.
    Please help
    public class TestSuspendResume {
      public static void main(String[] args) {
        MyThread m1= new MyThread("--One-- ");
        MyThread m2= new MyThread("--Two-- ");
        m1.suspendMe();
        try {
          Thread.sleep(1500);
          m1.t.join();
          m2.t.join();
        } catch(InterruptedException e) {
          e.printStackTrace();
        m1.resumeMe();
        System.out.println("Now : end main thread");
    class MyThread implements Runnable {
      boolean suspend = false;
      Thread t;
      MyThread(String name) {
        t = new Thread(this,name);
        t.start();
      void resumeMe() {
        suspend = false;
        notify();
      void suspendMe() {
        suspend = true;
      public void run() {
        try {
          for(int i=0;i<20;i++) {
            System.out.println("Now : "+Thread.currentThread().getName()+i);
            Thread.sleep(200);
            synchronized(this) {
              while(suspend)
                wait();
        } catch(InterruptedException e) {
          e.printStackTrace();
    }

    Thanks for that response. I figured out that was the problem in the logic. I have modified the code to make it simpler but it is still hanging.
    public class TestSuspendResume {
      public static void main(String[] args) {
        MyThread m1= new MyThread("--One-- ");
        try {
          m1.suspendMe();
          Thread.sleep(1000);
        } catch(InterruptedException e) {
          e.printStackTrace();
        try {
          m1.resumeMe();
        } catch(Exception e) {
          System.out.println("ASASAS");
          e.printStackTrace();
        try {
          m1.t.join();
        } catch(InterruptedException e) {
          System.out.println("WOWOW");
          e.printStackTrace();
        System.out.println("Now : end main thread");
    class MyThread implements Runnable {
      boolean suspend = false;
      Thread t;
      MyThread(String name) {
        t = new Thread(this,name);
        t.start();
      void resumeMe() {
        if(suspend==true) {
          suspend = false;
          notify();
      void suspendMe() {
        suspend = true;
      public void run() {
        try {
          for(int i=0;i<20;i++) {
            System.out.println("Now : "+Thread.currentThread().getName()+i);
            Thread.sleep(200);
            synchronized(this) {
              while(suspend)
                wait();
        } catch(InterruptedException e) {
          System.out.println("-- E In run method -- "+e.getMessage());
    }

  • Suspend and resume of WD ABAP applicaiton support in the Portal

    Hello,
    I am implementing Suspend and resume feature in WD ABAP. It works fine in NWBC and also in stand alone. But in the portal it does not seem to work. I have done the following.
    1. Created a resume pulg (The applicaiton is suspended as I can see the state to suspend in the WDDOSTATECHANGED method.
    2. The navigation in the portal is in place and WD applicaiton is replaced by my target BSP
    3. I am NOT firing any plugs so there is no problem here
    Now what is not happening is the following.
    1. The sap-wd-resumeurl is not part of the url parameters so I am not sure when the WD applicaiton is suspended this parameter is really sent or not?
    2. Since I do not have the resume URL when I press the back in the portal window (right hand side top of the page) the resume plug is getting fired. But the parameters that I have set in the BSP are not part of the url parameters in the resume plug
    3. If I explicitly pass the sap-wd-resumeurl as a url paramter to the BSP (hard code the resume URL since I know the PCD path of my WD iview) and then use this URL to naivagate from the BSP then the WD applicaiton is started but the resume plug is not fired. In SM04 I can see a new session created now.
    4. Step 4 works fine (the suspend and resume) works fine when I repeat it the second time.
    A quick help will be really appriciated. I am on SP14 of NW 7.0
    Thanks and best regards,
    Harish.

    Hello,
    I am implementing Suspend and resume feature in WD ABAP. It works fine in NWBC and also in stand alone. But in the portal it does not seem to work. I have done the following.
    1. Created a resume pulg (The applicaiton is suspended as I can see the state to suspend in the WDDOSTATECHANGED method.
    2. The navigation in the portal is in place and WD applicaiton is replaced by my target BSP
    3. I am NOT firing any plugs so there is no problem here
    Now what is not happening is the following.
    1. The sap-wd-resumeurl is not part of the url parameters so I am not sure when the WD applicaiton is suspended this parameter is really sent or not?
    2. Since I do not have the resume URL when I press the back in the portal window (right hand side top of the page) the resume plug is getting fired. But the parameters that I have set in the BSP are not part of the url parameters in the resume plug
    3. If I explicitly pass the sap-wd-resumeurl as a url paramter to the BSP (hard code the resume URL since I know the PCD path of my WD iview) and then use this URL to naivagate from the BSP then the WD applicaiton is started but the resume plug is not fired. In SM04 I can see a new session created now.
    4. Step 4 works fine (the suspend and resume) works fine when I repeat it the second time.
    A quick help will be really appriciated. I am on SP14 of NW 7.0
    Thanks and best regards,
    Harish.

  • Halt/Reboot fails if triggered after Suspend and Resume

    I'm using arch linux with gnome-shell and pm-utils. Halt/Reboot works alright normally, but when the sytem suspends and resumes, and then is halted/rebooted, the same fails.
    The screen shows an indication (message on console) that it's halting/rebooting, but it gets stuck there. There aren't any indication of failures/errors.
    Is there someone else facing the same problem? The cause? I'll be happy to give any relavant information required for this matter, in the form of system information or any logs,
    but at this point i'm not sure what would be relavant.

    Sorry this seems to be an existing issue in the forum: https://bbs.archlinux.org/viewtopic.php?id=113985
    Will update if any of the suggestion in the above mentioned thread fixes the problem.

  • When I try to intall itunes it comes up saying 'This Itunes installer is for 32-bit versions of windows. Please download the 64-bit ITunes instead.' How do I download and install the 64 bit version instead?

    When I try to intall itunes it comes up saying 'This Itunes installer is for 32-bit versions of windows. Please download the 64-bit ITunes instead.' How do I download and install the 64 bit version instead?

    Go to iTunes.com/download and click the link for the 64-bit version.

  • Suspend and resume

    hi
    can anybody tell me why suspend and resume methods have been deprecated in java 1.5. Can you explain with an exmaple
    thanks

    They were deprecated long before that. If you read their docs, there's a link that explains why.

  • Thread: suspend() and resume()

    Hi,
    Both suspend() and resume() methods are deprecated, but I've used it anyway. I've realised my code can get into a deadlock.
    Is there anything I could use other than suspend and resume, but providing the same functionality?
    Many Thanks

    You should use wait and notify. There is a good
    discussion of this at the bottom of the deprecation
    notes on stop, suspend and resume.Yes, I just saw that. Before, I was looking at an old API.

  • Suspend and resume hook help

    I'm writting a hook for suspend/resume, however I've run into some trouble.
    So basicly what I need is:
    a) A script to stop and start mpd [done] (That's easy. Just setup mpd.conf's RUNAS user to the desired username and regardless that the mpd command is run as root it will run as the desired user)
    b) A script to stop and start oss4 since it fucks up after suspend [DONE] (piece of cake...)
    c) A script to view my wlan0 essid, save it to file, killall dhcpcd (the dhcpcd part, at least, is easy) and on resume to enter it again and run dhcpcd. [Need help]
    (In order to start my wifi I use iwlist wlan0 scanning, I choose the desired network and then iwconfig wlan0 essid DESIREDESSID and dhcpcd wlan0, but after suspend wlan0 looses it's settings so I need to make a script to enter them back.)
    I was thinking about something like iwconfig wlan0 | grep ESSID, but it returns (as expected)
    [dheart@lightbringer ~]$ iwconfig wlan0 | grep ESSID
    wlan0 IEEE 802.11g ESSID:"ESSID_NAME"
    I'm quite new at bash scripting and I have no idea how to write something that complex.
    d) Also sonata, my desired mpd frontend looses connection to mpd if mpd is restarted while it is running. So I need something to stop sonata (that's easy - killall sonata) and after that to run it (but not as root)... So, my question is how to run a program as normal user from  /etc/pm/sleep.d/ hook [NEEDHELP].
    Here's what I've written so far
    #!/bin/bash
    case $1 in
    hibernate)
    echo "Killing mpd and stopping oss4"
    mpd --kill & /etc/rc.d/oss-linux-free stop
    suspend)
    echo "Killing mpd and stopping oss4"
    mpd --kill & /etc/rc.d/oss-linux-free stop
    thaw)
    echo "Starting oss4 and mpd"
    /etc/rc.d/oss-linux-free start & mpd
    resume)
    echo "Starting oss4 and mpd"
    /etc/rc.d/oss-linux-free start & mpd
    *) echo "Wrong call"

    you're probably better off starting network autodetection on resume, I know most people suspend to go between, for example, home and work, or home and the intarwebz cafe, and seldom suspend and resume in the same location reliably.

  • Suspend and resume only works with fallback image

    I get a black screen on suspend and resume with pm-utils after I boot with main kernel image.
    However, fallback image works fine.
    I'd like to figure out what's missing in the main kernel image.
    lsmod looks the same with both images.
    How should I proceed?

    you are my hero...before I read this post I could never resume my laptop running Arch no matter what quirks I tried. That's actually why I've been running Fedora - resume worked. In fact, resume works on every other distro I've tried.
    As far as an ACPI update being to blame, I've had problems resuming in Arch for over a year, although I can't go back in time to try the fallback and see if it works
    When I get some spare time, I'll copy the mkinitcpio config for fallback to the main config and start removing modules / hooks to see which one breaks it
    EDIT: /etc/mkinitcpio.d/kernel26.fallback no longer exists - it just uses autodetect. Also, the loaded modules are the same no matter which image was used to boot, so I'm stumped. Maybe somebody who knows more about that mkinitcpio does can shed some light
    Last edited by wizzard (2009-03-07 16:43:10)

  • Difference between running pm-suspend and closing the lid.

    Hi!
    Today i noticed this strange thing: i'm using xfce4.10 and pm-utils to suspend.
    This morning i noticed that running a "pm-suspend" from my terminal, won't switch off my wireless card, while suspending with xfce buttons or closing the lid, would do it.
    Why? What is the difference between these two actions (running pm-suspend and closing the lid)? As far as i know, the only difference is that there is no call to upower running pm-suspend from terminal.
    ps: sorry for the subject, that is not describing the question the best!
    Last edited by nierro (2012-06-17 11:03:55)

    Uhm yes, i know SUSPEND_MODULES array can do it.
    What i was wondering is: xfce4-power-manager uses pm-suspend to suspend. So why does it something pm-suspend alone doesn't? As i said, the only difference for me, is that that button relies upon upower too. So i suspect it is upower that switch off my wireless card, isn't it?
    My question is not how can i reach the same behaviour with pm-suspend alone, but what does that button in the xfce4-panel.
    I'm only curious!

  • My 2 year old tapped some keys on my Macbook and now the volume keys at top don't work. If I press F12, the dashboard pops up. How do I get it to work as it used to?

    My 2-year-old randomly tapped some keys on my Macbook and now the volume keys at top don't work. For example, if I press F12, the dashboard pops up, whereas previously it used to increase the volume. HELP! I'm a techno nitwit -  how do I get it to work as it used to?

    I did this myself recently while playing around with the settings - go to System Preferences and in there somewhere will be a setting saying - " use all function keys as standard function keys" or something like that. You need to deslect or say "no" and then it will work as it used to!

  • Suspend and Resume Plug

    Hi all,
    Here: <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/68/3aee42c4257176e10000000a1550b0/frameset.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/68/3aee42c4257176e10000000a1550b0/frameset.htm</a>
    is written about Suspend and Resume Plugs, and how to use them.
    I have one question about it:
    "<b><i>To be able to put a Web Dynpro application into the suspend state and resume it later on, you must set the Suspensibility (sap.suspendable.application) application property to true.</i></b>"
    Is this <b>SelfDefined</b> property for the webdynpro application? if- no, what have to be done, so to be set?
    Thank you in advance.
    BR

    Hi Diana,
    the only way to define a Web Dynpro application explicitly as suspendable is to define a specific application property named sap.suspendable.application. Possible values are true or false. Not defining this parameter means that the application is not suspendable.
    Check the document <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/102ed591-62a6-2910-94ac-e6038ef7b76e">How to realize suspendable Web Dynpro Java applications within the SAP NetWeaver Portal</a>. There you will find detailed instrcutions how to set the property.
    Best regards,
    Martin

  • Suspend and Resume Presentation

    I would like to be able to execute (probably by URL or Java
    script) an WebStart application which would need to execute along
    with the captivate session (which would be simulating a application
    Navigation).
    Once the external application completes is there a way to
    invoke a method to make captivate move to the next step?

    Welcome to our community, Coconut42
    While there is no easy way I can think of that will make an
    application such as WebStart, I'm guessing the answer to this would
    be as simple as inserting a Click Box or Button object on a slide
    in Captivate.
    Here's the deal. Both of these object types cause the slide
    to pause dead in its tracks until your user interacts by clicking
    or otherwise (shortcut key). So I'm guessing you are using either a
    Click Box or Button object on say, Slide 12 to launch the WebStart
    application. This would cause the Captivate project to continue
    playing unless you configured it otherwise. So what I'm suggesting
    is that you would insert a Click Box or Button object on say, Slide
    13 that would pause Captivate at that next slide. This should give
    the illusion that your WebStart is talking to Captivate.
    User is on Slide 12 and clicks to launch WebStart. Slide
    advances to 13 and pauses (while the Captivate movie is behind the
    WebStart application) and when the user closes WebStart, there's
    the Captivate project presenting Slide 13 and patiently waiting for
    the user.
    Would this do what you need or did I misunderstand?
    Cheers... Rick

Maybe you are looking for

  • How can I add to an existing path using the pencil tool?

    This probably seems like a rather elementary question, but whenever I draw a path using the pencil tool, reselect it, hover over the endpoint, and the click and drag to extend the line off into a different direction, Illustrator will often (but not a

  • Will I lose data converting from double-pre​cision to single-pre​cision float?

    Before you say yes...  I am using a crio device in scan-mode interface. The values that the scan mode returns are in double-precision floating point. Apparently I am supposed to be able to choose between double-precision floating point ("calibrated")

  • F.05 problem-very urgent

    Dear expert, When closing and doing tcode f.05-foreign currency valuation,my client had a problem that for g/l account xxx (funds on deposit), the value that appears on f.05, did not created in FS10N (balance). Please somebody advice me about this is

  • Did somebody attempted to use my skype contact?

    I just got a number of messages from Skype and my Email. Did someone just used my skype details to make some sort of payment? I was offline on that day and I'm not arabic, I have no clue what they meant but I did run a google translator and it it som

  • Driver can't be loaded in Windows 7 64bit but can be loaded in Windows 8.

    Hello, every one! I met a problem. I had developed a driver. I signed it with a Microsoft Cross Certificate and a Certificate of VeriSign. Then I install it in Windows 8 64bits machine. It can work as expected. But when I try to install it in Windows