-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Notebooks
- Notebook Hardware and Upgrade Questions
- HP envy lost power how do I access c drive

Create an account on the HP Community to personalize your profile and ask a question
10-17-2022 08:58 AM
My HP Envy has lost power. I've removed the hard drive, but I can only see the d and f drives. How do I access the c drive, I need to recover MS Office keys. Is it a separate device or a hidden partition, or ?
10-17-2022 12:08 PM - edited 10-17-2022 12:09 PM
You may be able to go to the Microsoft store online to find the MS Office keys.
There is no guarantee that you will be able to recover them without the hard disk booting up in a notebook.
You have crippled us in our research by not identifying your notebook with its product number.
If the notebook would still boot up to Windows it would be a simple task to recover the 25 character key.
I am a volunteer forum member. If my suggestion helped you solve your issue, help others by marking that post as the accepted solution. Say thanks by clicking on the Yes button next to the "was this reply helpful?"
10-17-2022 12:56 PM
Hi sorry, its takem a while to find it. Thanks for your reply.
The model is HP Envy 15-as103na and I can't boot it up as it has no power. I've removed the hard disk but it only holds a d and f drive. I'm not sure I can get them from MS as I have the disks, but they cam in an evelope with the key on and I can't find that, although I have it somewhere
10-18-2022 09:34 AM - edited 10-20-2022 10:07 AM
No worries.
What was the Operating system?
"I can't boot it up as it has no power." That is a bit of a cryptic statement without details.
What no-power troubleshooting steps did you perform before removing the hard disk?
Power adapter issue or no power led or response from pressing the power button?
How are you attempting to access the disk?
Is it Windows Explorer or have you taken a look at the DiskPart utility. Disk Management should be helpful.
You are going to have to find the envelope MS Office came in since you are unable to boot up Windows from the notebook's hard disk.
If you were able to boot the hard disk, and this is for the future, you could use a VBS script which provides the MS Office activation key.
Here is the script. This is useful to anyone who has Microsoft Office installed and wants to know the activation keyin order to save it an external backup or document file.
Copy the script into notepad and save it as productkey.vbs on the desktop environment. While booted into Windows, just click on the productkey.vbs icon and your Microsoft Office key will appear in a dialogue window.
Set WshShell = CreateObject("WScript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))
Function ConvertToKey(Key)
Const KeyOffset = 52
i = 28
Chars = "BCDFGHJKMPQRTVWXY2346789"
Do
Cur = 0
x = 14
Do
Cur = Cur * 256
Cur = Key(x + KeyOffset) + Cur
Key(x + KeyOffset) = (Cur \ 24) And 255
Cur = Cur Mod 24
x = x -1
Loop While x >= 0
i = i -1
KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
If (((29 - i) Mod 6) = 0) And (i <> -1) Then
i = i -1
KeyOutput = "-" & KeyOutput
End If
Loop While i >= 0
ConvertToKey = KeyOutput
End Function
I am a volunteer forum member. If my suggestion helped you solve your issue, help others by marking that post as the accepted solution. Say thanks by clicking on the Yes button next to the "was this reply helpful?"