Windows 7 product key to activate

Содержание:

Как активировать новый компьютер старым ключом

Откройте командную строку с правами администратора и запустите следующую команду с помощью slmgr :

Где вместо решёток введите ключ.

Стоит понимать, что если вы попытаетесь ввести ключ, который не был деактивирован на другом ПК, то сначала всё будет выглядеть так, будто активация сработала. Но в итоге она перестанет работать, и вы получите сообщения о необходимости обновить лицензию.

Повторюсь, что это сработает, только если ключ подходит к используемой вами версии ОС. Если у вас будет ключ от Windows 10 Pro , а установлена будет Windows 10 Home , вы получите сообщение об ошибке.

Учтите, что ключ для Windows можно использовать только для одной установленной копии ОС. Если вы хотите оставить старый компьютер, собирая новый, вам понадобится вторая лицензия. Но если вы планируете избавиться от него, то сэкономьте деньги и перенесите существующую лицензию. Вторая часть текстовки отсюда.

Как узнать oem ключ лицензионной windows 8.1 ноутбука, если на нём нет жёсткого диска. или другими словами, как узнать ключ windows 8.1 «вшитый» в bios ноутбука

Привет друзья! С появлением ноутбуков с предустановленной Windows 8, Windows 8.1 и БИОСом UEFI, Майкрософт изменила правила распространения лицензионных копий Windows, теперь лицензионного ключа операционной системы  уже нет на наклейке, расположенной на днище ноутбука, отныне ключ «вшит» в текстовом виде в таблицу ACPI MSD БИОСа ноута. Что делать, таковы новые правила и согласно им, обычному пользователю знать ключ, установленной на его ноутбуке операционной системы, вовсе необязательно. 
Несмотря на это, посмотреть содержимое ACPI-таблиц и узнать ключ Windows 8.1 в БИОСе можно с помощью различных утилит: RWEverything, OemKey, ShowKeyPlus, ProduKey

Если ваш ноутбук загружается, то данные утилиты можно запустить прямо в работающей Windows и неважно, какая на данный момент у вас установлена операционная система: Windows 7 или Windows 10, не зависимо от этого любая из перечисленных мной программ считает ключ Windows 8.1 из БИОС.
Также узнать ключ можно, если на ноутбуке совсем отсутствует жёсткий диск, в этом случае нам придётся загрузить ноутбук с загрузочной флешки Live CD AOMEI PE Builder, на данной флешке присутствуют все упомянутые мной программы, в сегодняшней статье я покажу вам, как создать такую флешку.
Уже знакомая вам, по предыдущим нашим статьям, программа ProduKey, также справится с задачей определения ключа вшитого в БИОС ноутбука.

Как узнать ключ Windows 10 средствами операционной системы?

На любом компьютере, обладая правами администратора, можно без сторонних программ и приложений узнать лицензионный ключ Windows 10. При этом процедуры разные, в случае с определением OEM и Installed ключей.

Как определить OEM Key на Windows 10

Узнать лицензионный ключ операционной системы, который «вшит» в материнскую плату компьютера, очень просто, если знать команду, которая специально для этого предусмотрена в Windows 10. Для определения OEM ключа проделайте следующее:

  1. Нажмите на клавиатуре сочетание клавиш Windows+R, чтобы вызвать строчку меню «Выполнить», и в ней пропишите следующую команду: wmic path softwarelicensingservice get OA3xOriginalProductKey
  2. После этого компьютер проведет считывание из БИОС лицензионного ключа в материнской плате и выдаст запрашиваемую информацию, если она имеется.

Выданный OEM ключ можно использовать для переустановки версии операционной системы, которая изначально была установлена на компьютере.

Как определить Installed Key на Windows 10

Используя одну команду, определить Installed Key не получится, и он запрятан чуть глубже в операционной системе Windows. Но достать информацию о лицензионном ключе Windows при желании можно, не устанавливая на компьютер сторонние приложения. Для этого необходимо сделать следующее:

  1. Запустите пустой стандартный блокнот Windows, который можно найти по следующему пути: «Пуск» — «Все приложения» — «Стандартные Windows» — «Блокнот».
  2. В открытую программу текстового редактора скопируйте следующий код:
function Get-WindowsKey {
    param ($targets = ".")
    $hklm = 2147483650
    $regPath = "Software\Microsoft\Windows NT\CurrentVersion"
    $regValue = "DigitalProductId"
    Foreach ($target in $targets) {
        $productKey = $null
        $win32os = $null
        $wmi = "\\$target\root\default:stdRegProv"
        $data = $wmi.GetBinaryValue($hklm,$regPath,$regValue)
        $binArray = ($data.uValue)
        $charsArray = "B","C","D","F","G","H","J","K","M","P","Q","R","T","V","W","X","Y","2","3","4","6","7","8","9"
        ## decrypt base24 encoded binary data
        For ($i = 24; $i -ge 0; $i--) {
            $k = 0
            For ($j = 14; $j -ge 0; $j--) {
                $k = $k * 256 -bxor $binArray
                $binArray = ::truncate($k / 24)
                $k = $k % 24
            }
            $productKey = $charsArray + $productKey
            If (($i % 5 -eq 0) -and ($i -ne 0)) {
                $productKey = "-" + $productKey
            }
        }
        $win32os = Get-WmiObject Win32_OperatingSystem -computer $target
        $obj = New-Object Object
        $obj | Add-Member Noteproperty Computer -value $target
        $obj | Add-Member Noteproperty Caption -value $win32os.Caption
        $obj | Add-Member Noteproperty CSDVersion -value $win32os.CSDVersion
        $obj | Add-Member Noteproperty OSArch -value $win32os.OSArchitecture
        $obj | Add-Member Noteproperty BuildNumber -value $win32os.BuildNumber
        $obj | Add-Member Noteproperty RegisteredTo -value $win32os.RegisteredUser
        $obj | Add-Member Noteproperty ProductID -value $win32os.SerialNumber
        $obj | Add-Member Noteproperty ProductKey -value $productkey
        $obj
    }
}

Далее нажмите «Файл» — «Сохранить как…» и в графе «Тип файла» выберите «Все файлы». Следом введите имя файла «windowskey.ps1». Остается выбрать папку, куда будет сохранен файл. Рекомендуем сохранить его в корневую папку одного из дисков, поскольку позже к нему потребуется прописывать путь. К примеру, выберите «Локальный диск С» для сохранения и нажмите «Сохранить».

Теперь запустите поиск, и введите в него запрос «PowerShell». Когда поиск выдаст результат, нажмите на найденной программе правой кнопкой мыши и выберите пункт «Запустить от имени администратора».

После этого откроется административная панель Microsoft, в которой требуется ввести команду «Set-ExecutionPolicy RemoteSigned» и нажать Enter.

Далее появится окно с требованием подтвердить пункты безопасности – нажимайте «Y», а после клавишу Enter.
Теперь необходимо ввести путь до файла, который мы сохраняли в третьем пункте инструкции. Для этого пропишите C:\windowskey.ps1 и нажмите Enter

Внимание: Если вы сохранили файл в третьем пункте в другой папке – пропишите путь до нее.
Далее вводим команду Get-WindowsKey и жмем Enter. После этого на экране появится Installed Key установленной операционной системы.

Обратите внимание, что Installed Key отображается в пункте «Product Key». Также выполнение описанных выше действий позволяет узнать некоторые подробности об операционной системе, используемой на компьютере

Automatically identifies and shows the Windows product key at startup, without requiring installation, and letting you create a backup

What’s new in Windows 9 Product Key Viewer 1.5.1:

Windows 7 msdn retail keys detected.

Read the full changelog

Windows 9 Product Key Viewer is a small-sized and portable software application that can be used for recovering the serial number of your operating system, in case you have lost or forgotten it. It comes in handy when you’re planning to reinstall Windows to get a fresh copy, for instance. It does not include complicated options, making it suitable to all types of users, and it works for the latest Windows version as well as older ones (until XP).

No installation necessary

Since installation is not a prerequisite, you can drop the executable file in a custom directory on the HDD and just click it to run. There is also the possibility of saving Windows 9 Product Key Viewer to a USB flash disk to directly run it on any computer with minimum effort and no previous installers.

What’s more, the Windows registry does not get updated with new entries, and no other files are created on the HDD without your permission, leaving it clean after removal.

Straightforward interface with intuitive options

The interface is made from a small window with a simple structure, where the «what you see is what you get» concept clearly applies, since there are no other options available, apart from the ones visible in the main frame.

Fetch the Windows key, back up and restore it

The OS serial key is immediately shown at initialization, and you can copy it to the Clipboard with the click of a button. In addition, you can ask the app to show the Internet Explorer and MSDM keys as well.

Instead of copying the serial number to the Clipboard, the tool can be asked to back it up by saving it to a file automatically created in the same location as the executable (provided that Windows 9 Product Key Viewer is not launched from within an archive or a read-only device), which can be later restored from the main frame with one click. Another tab shows some basic system information, such as Windows edition and activation state.

Evaluation and conclusion

As expected, the software utility has minimal impact on computer resources, since it runs on a very low quantity of CPU and RAM. It is very responsive to commands, shows accurate information and works well, without causing Windows to hang, crash or pop up error dialogs. We have not come across any issues throughout our tests.

All in all, Windows 9 Product Key Viewer serves its purpose. Thanks to its overall simplicity, even people with no previous experience in computer software can easily figure out this tool.

SterJo Key Finder

SterJo Key Finder is a free software that helps find your product keys for your Windows (old version of XP, Windows 7 & 8) and many other programs like, MS Office Products, AutoCAD, Coral Draw and more. You simply need to download the product, save it in a folder and run the scan from there. It runs a thorough scan of your PC, finds any or all license keys in the registry, and displays them in a list. The best part is that SterJo Key Finder gets installed easily without needing many resources. What we love about this program that it finds license keys for many different programs, and also tracks the product keys from a device that’s been dead for sometime. You simply need to place the hard disk of the dead device into the working device and run the software. It will find the license keys easily and save you from any future hassles.

Compatibility: Windows XP, Windows 2003, Windows Vista, Windows 7, Windows 8

How to activate using a Multiple Activation Key

You can activate licenses in one of two ways using MAK:

  • MAK Independent Activation — Each computer individually connects to Microsoft via the web or telephone to complete activation.
  • MAK Proxy Activation — One centralized activation request is made on behalf of multiple computers with a single connection to Microsoft online or by telephone. This method uses the Volume Activation Management Tool (VAMT), which is a part of the Windows Automated Installation Kit (WAIK). VAMT enables IT Professionals to automate and centrally manage the Volume Activation process using MAK and includes a check on the number of activations on the MAK.

Can I use my Volume License Keys to exercise my re-imaging rights

Yes. Re-imaging rights are granted to all Microsoft Volume Licensing customers. Under these rights, customers may re-image Original Equipment Manufacturer (OEM) or Full Packaged Product (FPP) licensed copies using media provided under their agreement as long as copies made from the Volume Licensing media are identical to the originally licensed product. As a Volume Licensing customer, the Volume License Keys you need can be found on the Product Key page. You can also request your keys through a Microsoft Activation Center.

Note

If you are an Open License customer, you must purchase at least one unit of the product that you want to re-image to obtain access to the product media and receive a key.

For more information on Re-imaging Rights, see article on this page about reimaging rights.

ProduKey

With ProduKey you can instantly get the lost product keys and serial numbers for free. It is a safe and free tool to automatically show product keys from your PC.The program is straightforward and does exactly what you want it to. So, if you are stuck midway while reinstalling Windows OS and you are unable to trace your license keys, this is just the right software you need for immediate help. Not just for Windows, this free application can also find the lost product keys for Exchange Server, MS-Office and SQL Server that’s already installed on your PC.

What’s interesting is that while you can view the product key information for your current functional operating system, you can also view the details of other computers with the help of command-line options. Other advantages of ProduKey lies in the fact that it is a small application and is portable, hence can be used anywhere and does not need to be installed. The interface is pretty simple that helps find out the product keys from even offline and remote registries. While you can copy the results without needing to export, you can also export them in HTML file format for backup.

Compatibility: Windows 98/Me/NT/2000/XP/2003/Vista/7/8/10

How to find your Windows 10 product key

Before we begin, note that the success of any of these methods is largely dependent on how your PC was activated. If you activated Windows 10 by upgrading from a valid Windows 7 or 8 installation or with the computer’s recent purchase, you are likely to find the product key with most of these methods. However, if your PC was activated as part of an organization’s licensing agreement, finding a product key may be more problematic.

SEE: 83 Excel tips every user should master (TechRepublic)

1. Command prompt

The most direct method for finding your Windows 10 product key is from the command line. Type «cmd» into the Windows 10 desktop search box and then right-click the command line result and select «run as administrator» from the context menu. Type this command at the prompt:

wmic path softwareLicensingService get OA3xOriginalProductKey

As you can see in Figure A, the command will display your current Windows 10 product key.

Figure A

2. PowerShell

If you are using Windows 10 PowerShell, the process is similar. Right-click the Start Menu button and then select Windows PowerShell (Admin) from the context menu. Type this command at the prompt to reveal the product key as shown in Figure B.

powershell «(Get-WmiObject -query ‘select * from SoftwareLicensingService’).OA3xOriginalProductKey»

Figure B

3. Registry File

As you might imagine, the product key is stored in the Windows 10 Registry File, so it is possible to find the code there if you know the right key. Type «regedit» into the Windows 10 desktop search and select the appropriate item in the results. Navigate to this key:

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform

As you can see in Figure C, the BackupProductKeyDefault key will reveal a valid Windows 10 product key.

Figure C

Note: In my case, the Windows 10 product key displayed by both the command prompt and PowerShell methods are the same. In the registry example, however, the product keys is different. The best explanation I can suggest is that because I upgraded from Home to Pro on the example PC, the product key displayed is for the upgrade to Pro (or vice versa). If you have a better solution, please let us know in the discussion.

There are third-party vendors offering applications that can locate and display your Windows 10 product key as well, but they essentially do the same thing we did here without involving someone else’s programming and potential security issues. Also, keep in mind that if you bought Windows 10 from the Microsoft Store, your account order history would have product key information available.

Microsoft Weekly Newsletter

Be your company’s Microsoft insider by reading these Windows and Office tips, tricks, and cheat sheets.
Delivered Mondays and Wednesdays

Sign up today

Проверка активации

После того, как вы использовали найденный ключ или же воспользовались услугами сторонних программ, появляется желание проверить, активировалась ли операционная система. Для начала стоит сказать, что существует несколько способов проверить, активирована ли операционная система Windows 10.

  1. Статус в окне «Свойства системы»

Самый простой способ, для его выполнения нужно совершить пару кликов и все. Попасть в меню «Свойства системы можно попасть выполнив клик правой кнопкой мышки на иконке «Мой Компьютер» и выбрав пункт «Свойства».

Откроется следующее окно:
Как можно заметить внизу окна, можно увидеть текущий статус активации системы, в моем случае это Активированная операционная система. Также, ниже можно увидеть и ключ, который использовался для активации.

  1. Командная строка

Данный способ подойдет не всем. Для его выполнения нужно совершить больше действий, а также надо открыть командную строку. Большинство людей не любят выполнять действия через Командную строку, так как это им кажется слишком трудным процессом, все же, возможность проверки активации существует.

  • Для начала вводим в поиске Windows или же в строке «Выполнить» следующие буквы: “cmd”. !!!Обязательно надо открыть командную строку с правами администратора, в любом другом случае, работать команда не будет.
  • Открывается командная строка, в которой вводим следующую команду: «slmgr /xpr».
  • Сразу же, после выполнения данной команды, система высветит следующее окно с информацией об активации Windows.

Как можно заметить, моя операционная система Windows 10 активирована до 6 июля 2018 года. В этот день, срок лицензии пройдет, и мне придется снова активировать ее.

How to change the product key on Windows 7?

Is it possible to change the Windows 7 product key? If you are looking for the answer to this question, you have come to the right place. The answer is yes, definitely.

Option 1. Configure your PC properties

  1. Open your Start menu.
  2. Right-click Computer.
  3. Click Properties.
  4. Select Change Product Key.

Finally, enter your new product key and click Next.

Option 2. Use your Command Prompt

  1. Open your Start menu.
  2. Locate Search and type cmd.
  3. Select Command Prompt (Admin) from the search results. If this option is not available, right-click Command Prompt and choose to run it with administrative privileges.
  4. Type C:\Windows\System32> slmgr.vbs -ipk “Input your product key”. Press Enter.
  5. To activate your Windows, type C:\Windows\System32> slmgr.vbs -ato. Press Enter.

We hope you have successfully changed your product key. If you have upgraded to a newer version of Windows, ensure that all your drivers are up to date. This is important since your system may start to malfunction otherwise. To this end, it is a good idea to update all your drivers at once – which is possible if you have a dedicated tool such as Auslogics Driver Updater at your disposal.

RECOMMENDED

Resolve PC Issues with Driver Updater

Unstable PC performance is often caused by outdated or corrupt drivers. Auslogics Driver Updater diagnoses driver issues and lets you update old drivers all at once or one at a time to get your PC running smoother

Auslogics Driver Updater is a product of Auslogics, certified Microsoft Silver Application Developer

DOWNLOAD NOW

List of Windows 10 Activation keys

Windows Server 2016 Datacenter CB7KF-BWN84-R7R2Y-793K2-8XDDG
Windows Server 2016 Standard WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY
Windows Server 2016 Essentials JCKRF-N37P4-C2D82-9YXRT-4M63B
Windows 10 Professional W269N-WFGWX-YVC9B-4J6C9-T83GX
Windows 10 Professional N MH37W-N47XK-V7XM9-C7227-GCQG9
Windows 10 Enterprise NPPR9-FWDCX-D2C8J-H872K-2YT43
Windows 10 Enterprise N DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4
Windows 10 Education NW6C2-QMPVW-D7KKK-3GKT6-VCFB2
Windows 10 Education N 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ
Windows 10 Enterprise 2015 LTSB WNMTR-4C88C-JK8YV-HQ7T2-76DF9
Windows 10 Enterprise 2015 LTSB N 2F77B-TNFGY-69QQF-B8YKP-D69TJ
Windows 10 Enterprise 2016 LTSB DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ
Windows 10 Enterprise 2016 LTSB N QFFDN-GRT3P-VKWWX-X7T3R-8B639

Steps to Activate Windows 10 using Product Keys

1. Go to Settings or tap on Windows key + i
2. Go to Update & Security
3. Choose Activation from the left-hand menu
4. If you don’t have a Windows License Key, click on Go to Store. The Windows Store will open a product page for the version of Windows 10 installed on your computer. You can now buy a windows 10 home key or  win 10 Pro key, and it will unlock and activate your version of Windows 10
5. Go to Settings again
6. Go to Update and Security
7. Choose Activation from the left-hand menu
8. Click on Change Product Key
9. Enter a valid Product Key.
10. Windows gets activated after verification over the Internet.

How To Enter The New Windows 10 Activation Key?

The Product Key for Windows 10 can be changed anytime. All you need is to have the genuine Windows 10 Keys.

Follow the steps below so that your windows gets activated:
1. Go to Run –> slui
2. A Windows 10 change product key dialog will appear
3. Enter the new Windows 10 Product Key and press Ok.
4. Windows will be activated after verification from Microsoft servers over the Internet.

HOW TO UPGRADE TO WINDOWS 10?

If you want to update your Windows 10 for free to the latest version, you need to visit the Microsoft website. If you have the licensed version: the activated windows 8, Windows 8.1, or activated Windows 7, you can easily upgrade to Windows 10.

Note:  You can get the Windows 8.1 product key easily if you required

All you need to do is look into the following steps given below

1. Go to the official website of Microsoft.
2. When you search for Windows 10 upgrade, you will end up on a page with different versions of Windows 10.
4. Choose your preferred version and then click on the Upgrade options.
5. The Windows 10 Upgrade will download and install in the background.
6. You need to make sure that you have installed the activated version of the first Windows.
If you do not have the activated copy for previous versions of Windows, you can download the Windows 10 ISO and use the Free Windows 10 Product Keys listed on the page. Hence in both ways, you can immediately upgrade to Windows 10 latest versions.

1 способ:

  1. Откройте командную строку с правами администратора.
  2. Перейдите в каталог Office14, набрав в командной строке:
cd ”c:\Program Files\Microsoft Office\Office14”

Примечание: для пользователей, которые установили 32- (x86) битную версию Office 2010 на 64- (x64) битной ОС  Windows, должны воспользоваться следующей командой:

cd “c:\Program Files (x86)\Microsoft Office\Office14”

3. Затем наберите следующую команду:

cscript ospp.vbs /dstatus

4. Поля  LICENSE NAME и LICENSE DESCRIPTION содержат информацию о типе лицензии Office 2010, а в строке с LICENSE STATUS отображен статус активации MS Office 2010.

Типичный вывод команды выглядит так:

В строке Last 5 characters of installed product key написаны последние 5 цифр ключа продукта, который мы искали.

В строке с License Name также указано каким образом активирована ваша копия Office 2010. Здесь могут присутствовать следующие значения:

  • KMS_Client edition – активирован на сервере KMS
  • MAK edition – тип активации MAK
  • Retail edition – активирован с помощью розничного ключа retail product key.

В строке с License Description также указывается по какому каналу лицензирования или распространения был получен дистрибутив Office 2010. Возможные значения:

  • VOLUME_KMSCLIENT – для корпоративных подписчиков
  • RETAIL – для розничных версий Office 2010, приобретенных у поставщиков или скачанных по подпискам MSDN и TechNet.

Если значение параметра License Status – LICENSED, значит ваша копия Office 2010 активирована корректно.

Where is my Windows 10 product key?

The Windows Product key is actually not easy to find manually, because you’ll have to go through various registry scripts. So, not only that you’ll waste your time, you can also damage something in the registry, and there will be trouble.

But thankfully, there’s much easier solution. You can use some key-finder tools which will show you your product key in seconds.

How to locate your Windows 10 product key with ProduKey

I personally recommend NerSoft’s ProduKey, because it’s extremely simple tool to use and it will show you product keys of other software as well, not just your system. Click here and download ProduKey for free and it will immediately show you your product key.

You don’t even have to install it, just extract the .rar file and open the tool. Another good thing is that this tiny program doesn’t load your computer with junk promotional software and it doesn’t change your default search engine, like many programs do.

Speaking of which, if you want to change your default search engine  in Microsoft Edge, check out this article.

As I said, using this software is very easy. Just open it and it will show you the name of the software, it’s Product ID and most importantly it’s Product Key. If you double click on the name of any listed software, it will show you even more detailed info, and you can easily copy product key and everything else wherever you want.

I know you’re skeptical about using a third-party software while performing a system-related task. It’s okay, I was skeptical too. But you don’t have to worry about ProduKey, because it’s completely safe and it won’t damage your computer with malicious content. At the end of the day, it’s much more simple than going through complicated registry paths by yourself.

— RELATED: How to get a cheap Windows Product Key

Other methods to find your Windows Product Key

Additionally, you can retrieve your Windows 10 Product Key from your hardware manufacturer or from Microsoft Support.

If you bought a new computer running Windows, then the product key is preinstalled on it. Contact your hardware manufacturer for more information.

If you have any other Windows 10-related issues you can check for the solution in our Windows 10 Fix section.

RELATED GUIDES TO CHECK OUT:

  • Do I Need a Windows 10, 8.1 Product Key? Here’s the answer
  • Fix: Unable to Change Windows 10 Product Key
  • FIX: Windows 10 Technical Preview Key is Not Working

Was this page helpful?

1

MyWOT
Trustpilot

Thank you!

Not enough details

Hard to understand

Other

x

Contact an Expert

Start a conversation

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *

Adblock
detector