Ошибка 0xc000000f при загрузке windows 10/7

Восстанавливаем загрузчик Linux

загрузчик Grub 2

Эта инструкция поможет когда:

  • Переустанавливали Windows и кроме него был ещё linux, который стал невиден
  • Linux перестал загружаться, даже будучи единственной ОС

1) Загружаемся с LiveCD (LiveDVD, LiveUSB)

2) Смотрим таблицу разделов:

$ sudo fdisk -l

Устр-во Загр     Начало       Конец       Блоки   Id  Система
/dev/sda1   *           1          13      102400    7  HPFS/NTFS
Раздел 1 не заканчивается на границе цилиндра.
/dev/sda2              14        7749    62139420    7  HPFS/NTFS
/dev/sda3            7750       23607   127377020    7  HPFS/NTFS
/dev/sda4           23607       30402    54577153    5  Расширенный
/dev/sda5           23607       30119    52301824   83  Linux
/dev/sda6           30119       30402     2274304   82  Linux своп / Solaris

/dev/sdb1   *           1        5099    40957686    7  HPFS/NTFS
/dev/sdb2            5100       16142    88701952    7  HPFS/NTFS
/dev/sdb3           16143       19457    26627737+  83  Linux

/dev/sdc1               1       30401   244196001    7  HPFS/NTFS

Ответ команды сокращён для наглядности. Видно, что в системе есть три диска. На двух первых есть загрузочные области и несколько разделов как Linux так и Windows (HPFS/NTFS). Нужно определиться какой из них будет восстанавливать (можно по очереди, отключив временно остальные диски). В случае с одним жёстким диском ситуация проще. Это будет /dev/sda

3) Монтируем Linux-раздел (здесь sda5, но если есть отдельный boot рездел, то нужно монтировать его), добавляем в него устройства и процессы, переходим в него, таким образом попадая в окружение ОС, которая установлена на компьютере:

$ sudo mount /dev/sda5 /mnt
$ sudo mount --bind /dev /mnt/dev
$ sudo mount --bind /proc /mnt/proc
$ sudo chroot /mnt

После перехода вам не придется использовать sudo, т.к. теперь все команды выполняются от рута (root):

4) Устанавливаем загрузчик

# grub-install /dev/sda

Если получили сообщение об ошибке, то обновляем информацию об устройсве /dev/sda и пробуем установить снова:

# grub-install --recheck /dev/sda
# grub-install /dev/sda

5) Выходим в окружение LiveCD ОС, отмонтируем разделы и перезагружаем компьютер:

# exit
$ sudo umount /mnt/dev
$ sudo umount /mnt/proc
$ sudo umount /mnt
$ sudo reboot

последняя команда может быть заменена на альтернативную:

$ sudo shutdown -r now

Сноски

  1. Программа Bootsect.exe обновляет основной загрузочный код разделов диска, чтобы обеспечить переключение между Bootmgr и загрузчиком NT (NTLDR). Это средство можно использовать для восстановления загрузочного сектора компьютера. Это средство заменяет FixFAT и FixNTFS.

Method 2. Fix MBR Using Command Prompt on Windows 10/8/7/Vista/XP

Applies to: Manually repair corrupted MBR on Windows 10/8/7, Vista, etc.

When MBR corrupted on Windows PCs, you can apply the possible ways to manually fix MBR on your PC using Command Prompt. As the Windows version differs, the specific steps also vary. 

Pick up the right resolution to fix MBR on your Windows PC now:

Fix MBR on Windows 10 via CMD

To help you fix MBR in a more straightforward way, you may follow this video to start from 0:25 so as to repair MBR:

Step-by-step guide to open command Prompt to fix MBR in Windows 10:

Step 1. Boot PC from the original Windows installation DVD (or the recovery USB).

Step 2. At the Install screen, click «Repair your computer».

Step 3. Choose «Troubleshoot» > «Advanced Options» > «Command Prompt».

Step 4. Enter the following lines in Command Prompt and hit Enter each time: 

  • bootrec /fixmbr
  • bootrec /fixboot
  • bootrec /scanos
  • bootrec /rebuildbcd

Step 5. After this, type exit to close Command Prompt and restart Windows 10.

You should be able to boot Windows 10 successfully now.

Fix MBR in Windows 8.1/8 Using Command Prompt

Step 1. Boot from Windows installation DVD or recovery USB.

Step 2. Select «Repair your computer» at the Install screen.

Step 3. Go to Troubleshoot > Command Prompt.

Step 4. Type the following command lines and hit Enter each time:

Click to copy
bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd

Step 5. Type exit and restart PC. 

Your Windows 8 computer should be able to boot up normally now.

Fix MBR in Windows 7 via CMD

Step 1. Boot Windows 7 from its installation DVD.

Step 2. Press any key to boot from DVD.

Step 3. Select a language, keyboard layout, click «Next».

Step 4. Select «Operating System» and click «Next».

Remember to check «Use recovery tools that can help fix problems starting Windows».

Step 5. Click «Command Prompt» at the System Recovery Options screen.

Step 6. Type the following lines and hit Enter each time:

  • bootrec /fixmbr
  • bootrec /fixboot
  • bootrec /rebuildbcd

Step 7. Type exit to close the window and restart your PC.

Now, you can visit files and applications on your Windows 7 computer again.

Fix MBR on Windows Vista

Step 1. Boot from Windows Vista installation CD or DVD.

Step 2. Select a language, keyboard layout, click «Next».

Step 3. Click «Repair your computer» at the Install screen.

Step 4. Select «Operating System» and click «Next».

Step 5. When the System Recovery Options appears, click «Command Prompt».

Step 6. Type the following lines and hit Enter each time:

  • bootrec.exe /fixmbr
  • bootrec.exe /fixboot​
  • bootrec.exe /rebuildbcd

​Step 7. Type exit and hit Enter to close the window.

Restart Windows 7 and you can use everything on your computer again.

Fix MBR on Windows XP

Step 1. Boot from Windows XP CD.

Step 2. Open Recovery Console on the Welcome screens.

Step 3. Type 1 and hit Enter.

Step 4. Enter your password and hit Enter.

Step 5. Type fixmbr and hit Enter.

Step 6. Type Y and hit Enter.

Step 7. Type exit and hit Enter.

After this, restart your Windows XP computer, it will boot up normally again.

ДОПОЛНЕНИЕ ИЛИ ПОЧЕМУ ВОССТАНОВЛЕНИЕ ЗАПУСКА НЕ ВСЕГДА СРАБАТЫВАЕТ

Внимательный читатель спросит, почему я не указываю на “более простой” путь восстановления системы. Есть же кнопка из той же консоли Восстановления запуска? Совершенно верно. Нажатие по этой кнопке запустит ИМЕННО те УТИЛИТЫ, о которых мы с вами только что говорили. Однако нередко для достижения результата требуется МНОГОКРАТНЫЙ запуск средства восстановления системы (а об этом мало кто знает) с несколькими перегрузками и повторными запусками консоли. Часто пользователь разворачивается и уходит после первой же попытки восстановить Windows через первый пункт меню Консоли восстановления. Зря, но вполне объяснимо: консоль ведь НЕ ПОКАЗЫВАЕТ ПРОЦЕСС ВОССТАНОВЛЕНИЯ, он идёт вслепую и утилиты сами принимают какое-то решение . Столкнувшись с ошибкой, она без вашего согласия вновь производит некие действия, о которых мы только догадываемся. А вот запустив их вручную, вы можете видеть ответ консоли и принять своё решение о дальнейших действиях. Вот и весь секрет.

Fix #2: Try Startup Repair on MBR Disk

Some users say that Fix #1 does not help at all because in their cases bootrec /fixboot access is denied no EFI partition exists on the boot disk. Same situation with yours? No worries, here you do have another option.

First of all, you need the help of MiniTool Partition Wizard Bootable, which is a built-in tool in MiniTool Partition Wizard Pro. Get this professional partition manager first and then follow the guide below to create a MiniTool bootable media and use it to boot your PC.

  • How to Build Boot CD/DVD Discs and Boot Flash Drive with Bootable Media Builder?
  • How to Boot from Burned MiniTool Bootable CD/DVD Discs or USB Flash Drive?

When you are in the main interface of the bootable MiniTool Partition Wizard, please do these operations:

Step 1. Select the 500MB around system reserved partition and choose Format Partition from the action panel. You will receive a warning message saying this is a system partition and formatting may cause computer to be unbootable. Just click Yes.

Step 2. Select NTFS as the desired file system and hit OK. Then press Apply button on the toolbar.

Now you have to get your Windows 10 repaired by automatic Startup Repair utility.

Step 1. Boot your PC from the Windows installation media.

Step 2. From the initial Windows screen, select the language to install, the time and currency format as well as the keyboard or input method. Next, click the Repair your computer link instead of Install now.

Step 3. Select Troubleshoot and then Advanced Options.

Step 4. Select Startup repair. Immediately it starts to detect and will try to fix the errors it has found. Usually, it brings a reboot. If it does, DO NOT press any key to boot from the USB drive again. Just wait for your Windows to load.

If Startup Repair says it couldn’t fix the error, continue with Fix #3 to resolve bootrec access is denied Windows 10.

Repair the Master Boot Record on Windows 10

To fix MBR problems on a computer running Windows 10, use these steps:

  1. Change the device firmware settings to start from the bootable media. 

    Quick tip: The process to change the settings for the Basic Input Output System (BIOS) or Unified Extensible Firmware Interface (UEFI) usually requires to press one of the function keys (F1, F2, F3, F10, or F12), the ESC or Delete key. However, this process is different per manufacturer and per device, as such, for more accurate instructions, visit your PC manufacturer’s support website.

  2. Start the PC with the bootable media.

  3. Click the Next button in the Windows 10 Setup.

  4. Click the Repair your computer button in the lower-left corner.

  5. Click the Troubleshoot button.

  6. Click the Advanced options button.

  7. Click the Command Prompt button.

  8. You’ll now enter into the Command Prompt environment, which will allow you to launch the Bootrec.exe tool to repair the Master Boot Record on your Windows 10 PC. The Bootrec.exe supports a number of options depending on your situation.

    Use the FixMbr option when you need to repair Master Boot Record corruption problems, or when you need to clean the code from the MBR. This command will not overwrite the existing partition table in the hard drive.

    Bootrec /fixMbr

    Use the FixBoot option when the boot sector was replaced with another non-standard code, the boot sector is damaged, or when you installed an early version of the operating system alongside another more recent version.

    Bootrec /fixBoot

    Use the ScanOS option when the Boot Manager menu doesn’t list all the operating systems installed on your device. This option will scan all drives to find all compatible installations and it will display the entries that are not in the BCD store.

    Bootrec /ScanOS

    Use the RebuildBcd option when you don’t have another option and you must rebuild the BCD (Boot Configuration Data) store.

    Bootrec /RebuildBcd
  9. If you are trying to troubleshoot a “Bootmgr Is Missing” error and rebuilding the BCD store doesn’t fix the problem, you can use the following commands to export and erase the BCD store and using the RebuildBcd command again to try getting Windows 10 to boot.

    While in the Command Prompt using the recovery environment, type the following commands and press Enter on each line:

    BCDedit /export C:\BCD_Backup
    C:
    CD boot
    Attrib BCD -s -h -r
    Ren C:\boot\bcd bcd.old
    Bootrec /RebuildBcd

    Press Y to confirm adding Windows 10 to the list of bootable operating system on your computer.

  10. Close Command Prompt.

Once you complete the steps, reboot your computer, and then, you should now be able to load Windows 10 again.

If you aren’t sure exactly about the problem with your computer, you should try all the commands in this guide to see if any of them repair the issue allowing you to boot again into Windows 10.

While Bootrec.exe should be good enough to repair the Master Boot Record, there are other related issues that may require the use of other command line tools, such as Bootsect.exe or BCDboot, but they are beyond the scope of this guide.

We’re focusing this guide on Windows 10, but these instructions should also work on Windows 8.1.

Update July 12, 2020: Originally published in May 2016, revised in July 2020.

Summary

Here we have provided two methods for two different situations. No matter whether you have Windows CD or not, you can fix MBR in Windows 7/8/10 by using the methods introduced in this article. Apparently, AOMEI Partition Assistant is a better choice. With it, you can effortlessly and easily fix MBR in Windows 7/8/10 (32 bit or 64 bit) instead of inputting the complex commands.

Besides, this versatile software could also empower you to check disk errors after the MBR repair in Windows 7, which will check if there are no bad sectors on the system disk. If you want to fix or rebuild MBR in Servers, please try AOMEI Partition Assistant Server.

How to repair my Windows 7 MBR without CD?

The above section is about how to repair corrupted MBR in Windows 7/8/10. That is to run corresponding commands. It is quite complicated for some users, especially the computer newbie. Plus, many users don’t have Windows installation DVD/CD. Under this situation, you can turn to a free MBR repair tool for Windows 7 called AOMEI Partition Assistant Standard, which allows you to create a bootable USB drive and rebuild MBR in WinPE environment. Much easier to operate!

See how to do it in detail (same steps can also be applied to repair MBR in Windows XP/Vista/8/8.1/10):

◆If you can boot into Windows, please skip the steps of creating a bootable USB drive, and directly run the software to rebuild MBR on the disk.

Step 1. Connect an empty USB (it’s better to be over 8GB) to a working Windows-based computer (since your Windows 7 cannot boot). Then free download the MBR repair tool.

Download Freeware

Win 10/8.1/8/7/XP

Step 2. Install and run AOMEI Partition Assistant on that PC. Click on the «Make Bootable Media» in the left pane. Follow the wizard to create a WinPE bootable USB disk. Disconnect the USB drive after it is done.

Note: AOMEI Partition Assistant Standard is pre-installed on the bootable drive.

Step 3. Plug the USB to your computer with a corrupted MBR, power up it and enter BIOS by constantly pressing Del (F2 or another specific key).

Step 4. Change boot priority to the bootable USB drive in BIOS. Press F10 to save the changes and restart computer to Windows PE mode.

Step 5. Once logged in, the AOMEI Partition Assistant Standard will load and start. In the main interface, right-click the system disk you need to rebuild MBR and click «Rebuild MBR».

Step 6. A mini window will pop out, choose the proper MBR type for Windows 7 and click «OK».

Step 7. Click «Apply» > «Proceed» in the main interface to commit the change.

Finally, remove the bootable drive and restart your Windows 7.

Troubleshooting

bootrec /RebuildBcd doesn’t work

If does not fix the error, you can also try to completely rebuild the BCD. TO do so, you need to run these steps:

  1. Type this command:
    bcdedit /export C:\BCDBackup
  2. Type , where c: is where your Windows is installed
  3. Type
  4. Type this command:
    attrib bcd -s -h -r
  5. Type this command:
    ren c:\boot\bcd bcd.old
  6. Type this command:
    bootrec /RebuildBcd

bootrec /ScanOs doesn’t find Windows

It’s possible that the command can find 0 Windows installations:

Total identified Windows installations: 0

In this case you can try the or try:

  1. , where is where your Windows is installed

bootrec prints Element not found

Various bootrec commands, like or , can print this error:

Element not found

In this case, try any of the following tips:

  • Run the steps from
  • If you have a SATA cable, move it to another port
  • Make sure the partition is active. To do that, run these commands:
    1. , where is the number of your disk
    2. , where is the number of your partition number

bootrec in Windows 7 doesn’t work

If the or commands don’t work in Windows 7, try the following steps to restore the boot sector code for your system:

This solution works only if you have the original Windows 7 installation disc. Otherwise, use Easy Recovery Essentials to access Command Prompt or run Automated Repair for automatic repairs.

  1. Type these commands and press Enter after each:
    diskpart
    select disk 0
    list volume
  2. Remember the letter of your media drive that has the installation disc, e.g. CD-ROM or DVD-ROM drive
  3. Type the following commands, press Enter after each and replace below with the letter of your media drive:
    exit
    D:
    cd boot
    dir
  4. Type this command:
    bootsect /nt60 SYS /mbr
  5. Press Enter
  6. Remove the CD or DVD from the media drive
  7. Type
  8. Press Enter
  9. Reboot the computer

bootrec in Windows 8/10 doesn’t work

If the bootrec utility doesn’t fix your Windows 8 system, you can also try to fix the EFI bootloader of your system:

  1. Boot from the install disc (DVD or USB)
  2. Click Repair your computer
  3. Choose Troubleshoot, then Command Prompt
  4. Type these commands in the exact order shown below and press Enter after each command:
    diskpart
    sel disk 0
    list vol
  5. Select the volume number that has the FAT32 under the Fs column:
    sel vol 2

    where is the number of the FAT32 partition printed by Command Prompt above.

  6. Assign a unique letter to this partition. The letter must not be already available on your computer, e.g. C: or D: or E:
    assign letter=x:
  7. The confirmation message should appear:
    DiskPart successfully assigned the drive letter or mount point.
  8. Type to quit the diskpart utility (step 4):
    exit
  9. Type the following command, but replace with the letter of the partition you chose earlier:
    cd /d x:\EFI\Microsoft\Boot\
  10. Type the bootrec command:
    bootrec /fixboot
  11. Backup your old BCD configuration to create a new one:
    ren BCD BCD.Backup
  12. Type this command to replace the BCD, but remember to replace with the letter of the FAT32 partition mentioned earlier:
    bcdboot c:\Windows /l en-us /s x: /f ALL
  13. Remove the media from the drive: DVD or USB
  14. Type
  15. Hit Enter
  16. Reboot the computer

Способ 1: С помощью стандартного меню

Если вы не знаете как восстановить загрузчик, то можно попробовать зайти в безопасный режим. Возможно восстановление загрузчика вообще не потребуется, а система не загружается из-за других причин, поэтому это нужно проверить.

При загрузке зажмите кнопку «F8» на клавиатуре. После этого вы должны увидеть вот такое меню. Для начала нажимаем на первый пункт, который постарается восстановить загрузку ОС. Если ничего не получилось, то нажимаем «Безопасный режим».

Если вам удалось запустить «Безопасный режим», делаем следующее:

  1. Нажмите «Пуск» и перейдите в «Панель управления».
  1. Найдите раздел «Восстановление».
  1. Нажимаем по кнопке «Запуск восстановления системы».
  1. Запустится служба, на одном из шагов нужно будет выбрать точку восстановления – смотрите по дате. Вы также можете установить галочку, чтобы увидеть другие точки. Лучше всего выбирать точку с самой ранней датой.

В самом конце система один раз перезагрузится и постарается восстановить системные файлы на тот период. Восстановление будет идти только на системном диске. Если данный способ не дал результата, то скорее всего есть поломка в загрузочном файле MBR. Не переживайте – сейчас мы его восстановим.

Fix the MBR with Easy Recovery Essentials

Easy Recovery Essentials, our bootable recovery and repair CD/USB, is guaranteed to repair most damages done to the Master boot record (MBR) using its Automated Repair feature for Windows XP, Vista, 7 or 8:

  1. Download Easy Recovery Essentials. Choose your Windows version (XP, Vista, 7 or 8) before downloading.
  2. Burn the image. Follow these instructions on how to burn the bootable ISO image very carefully, as making a bootable CD can be tricky!
  3. Boot Easy Recovery Essentials
  4. Choose Automated Repair option and click Continue

  5. Choose your Windows installation drive’s letter (usually it’s ) and click on Automated Repair
  6. Easy Recovery Essentials will now begin

  7. Once the process is complete, click Restart
  8. Done. Windows XP, Windows Vista, Windows 7 or Windows 8 should properly load now.

You can download Easy Recovery Essentials from here.

Как восстановить Windows 7.

Да, товарищи. Vista я опускаю, ибо а) согласно статистике посещений блога никто ей почти не пользуется и б) надёжной преемницей Vista служит Windows 7. Так что описанное для второй, подойдёт и для Vista. Этот абзац самый большой – здесь я всё разжёвываю, дабы в следующих не повторяться.

  • загрузочник с Windows подключен и успешно загружен
  • в окне установки выбираем Восстановление системы

  • выбираем тип системы (если предлагается), жмём Далее
  • в окне Консоли восстановления выберем Командная строка (Command Promt) 

в консоли от диска Х (именно её по умолчанию сам себе присваивает установщик Windows, чтобы не перемешаться с другими, существующими томами) наберите команды (в зависимости от того, что вам больше подходит):

bootrec /rebuildbcd

Эта команда прошерстит ВСЕ работоспособные загрузочные записи, совместимые с Windows 7 и переформирует список, приведя его в нормальный вид (подходит для мультизагрузочной системы, если на компьютере установлено более ); это самый “бронелобый” из вариантов команды восстановления системы, с помощью которого можно попытаться решить все проблемы махом

bootrec /fixmbr

Эта команда запишет двойника основной загрузочной записи MBR – той, что появилась сразу после установки Windows 7. Применяется, если есть подозрение на повреждение файловой системы диска в таблице разделов. Это именно тот, случай когда команда chkdsk не обнаружила повреждения поверхности диска (плохих секторов), но Windows по-прежнему не загружается:

bootrec /fixboot

Команда пропишет новый загрузочный сектор на ваш диск. Применяется в случае, когда утилитаchkdsk обнаружила и “починила” (или попробовала это сделать) бэд-сектора диска. Часто эти сектора просто затираются в нули без восстановления, и потому приходится вслед за этой командой вводить следующую bootrec /fixmbr.

Таким образом, вы уже обладаете весомым арсеналом утилит и атрибутов к их командам, чтобы почти профессионально подойти к процессу восстановления Windows. То есть:

  • запускаемая из консоли команда chkdsk ваш_диск: /f/r/x/b в самом своём “ремонтном” варианте проверит состояние диска и по возможности исправит ошибки диска (НО НЕ СИСТЕМЫ!)
  • запускаемые выше команды утилиты bootrec.exe позволят поэтапно провести разведку боем с целью восстановить windows в её загрузке. Возможно придётся попробовать все флаги команды, причём не в указанном мной порядке.

В системах UEFI

Описанный выше способ применим к ПК на базе обычного BIOS с дисками MBR, тогда как процедура восстановления загрузчика в системах UEFI несколько отличается. Выполнить все действия здесь можно в той же командной строке, но есть и более простой способ. Воспользуйтесь спасательным диском by Sergei Strelec, ведь в нём имеются все необходимые инструменты для устранения подобного рода неполадок. Загрузив с диска компьютер, перейдите в меню Пуск по цепочке Программы WinPE – Редакторы BCD – EasyUEFI.

В открывшемся окне утилиты выберите опции Manage EFI System Partition – Rebuild EFI System Partition.

Далее укажите диск, на котором нужно восстановить загрузчик, а потом активируйте радиокнопки для системного (с файлами Windows) и служебного EFI-раздела. На заключительном этапе нажмите «Rebuild», закройте приложение и перезагрузите компьютер в штатном режиме.

Если EasyUEFI не справится с задачей, используйте командную строку, предварительно присвоив EFI-тому букву с помощью входящей в состав диска от Стрельца утилиты Bootice. Запустите ее из того же меню, что и EasyUEFI, выберите в окошке ваш жесткий диск и нажмите «Parts Manage».

В открывшейся таблице выберите EFI-раздел (он отформатирован в FAT32 и традиционно имеет размер около 100 Мб), после чего нажатием кнопки «Assign Drive Letter» присвойте ему любую незанятую букву.

Закрыв EasyUEFI, запустите командную строку и выполните две этих команды:

cd /d БУКВА:/efi/microsoft/bootbootrec /rebuildbcd

В результате вы получите список установленных Windows и приглашение внести их в загрузочный реестр. Подтверждаем операцию вводом буквы Y и нажатием Enter. Готово, можете загрузить компьютер в обычном режиме.

Если вдруг загрузка окажется неудачной, и вместо логотипа Windows вы увидите экран BSOD, нажмите сначала F8, а затем Enter, чтобы перезапустить процедуру загрузки.

К слову, диск by Sergei Strelec можно использовать и для восстановления загрузчика на MBR-дисках. Для этого вместо EasyUEFI запускам утилиту EasyBCD, переключаемся в меню «Архивация/Восстановление», отмечаем «Обновить файлы загрузки» и жмем кнопку «Выполнить».

Итог

Восстановление загрузчика Windows 10, как мы видим, вполне решаемая задача, но давайте все-таки допустим, что ни один из этих способов не помог. В этом случае вместо напрашивающейся переустановки захватите с помощью входящей в состав диска by Sergei Strelec утилиты Dism++ Windows в WIM-образ, а затем, полностью удалив все системные разделы, выполните его повторную установку, в процессе которой все служебные разделы с загрузчиками и прочими файлами будут пересозданы с нуля. Такой способ является наиболее эффективным после переустановки или восстановления из полного бэкапа. Но сработает он только при условии, что созданный WIM-образ сам не содержит ошибки, препятствующие нормальной загрузке Windows.

Оцените статью
Рейтинг автора
5
Материал подготовил
Андрей Измаилов
Наш эксперт
Написано статей
116
Добавить комментарий