Category: Windows


Windows 10: Entering Safe Mode without access to Startup Settings


In some cases, the Startup Settings option does not display. Open Windows in Safe Mode using Command Prompt.

  1. Turn on your computer and repeatedly press the esc key until the Startup Menu opens.
  2. Begin a System Recovery by pressing F11. If prompted, select your keyboard layout.
  3. The Choose an option screen displays. Click Troubleshoot.
  4. Click Advanced options.
  5. Click Command Prompt to open the Command Prompt window. You might need to select your account and enter your password to continue.
  6. Command Prompt selected in the Advanced options screen
  7. Enter the command for the Safe Mode option you want. Enter the information exactly.
    • Enable Safe Mode – Type:bcdedit /set {default} safeboot minimal and press Enter.
    • Enable Safe Mode with Networking – Type: bcdedit /set {default} safeboot network and press Enter. 
    • Enable Safe Mode with Command Prompt – Type:bcdedit /set {default} safeboot minimal and press Enter, and then type:bcdedit /set {default} safebootalternateshell yes and press Enter.The operation completed successfully displays when you have entered the command correctly. Safe Mode enabled from the Command Prompt
  8. Close the Command Prompt window by clicking the X in the upper right corner.
  9. The Choose an option screen displays. Select Continue and sign in to Windows with your account name and password.NOTE: You need to enter your Windows account name and password to log on in Safe Mode. You cannot log on using another method, such as a Personal Identification Number (PIN) or a fingerprint reader.The computer opens the desktop in Safe Mode.
Read More »

Remote shutdown or reboot Windows 10 PC


  1. Run CMD as Administrator
  2. Type: net use \\ComputerName or \\ipaddress and use login and password of remote pc
  3. Type shutdown -r -f -m \\ComputerName -t 0 or \\ipaddress
net use \\192.168.0.1
The password or user name is invalid for \\192.168.0.1.

Enter the user name for '192.168.99.161': username
Enter the password for 192.168.99.161:
The command completed successfully.
shutdown -r -f -m \\192.168.99.1 -t 0
shutdown -f -r -m \\computername -t 0


Настройки сетевых параметров windows из командной строки


 

Настраиваем IP адрес и остальные параметры TCP/IP

Первым делом нужно узнать имя интерфейса.

netsh interface ip show config

Допустим наш интерфейс называется Подключение по локальой сети

Настроим статический адрес  192.168.1.100 с маской 255.255.255.0 и шлюзом 192.168.1.1

netsh interface ip set address name="Подключение по локальой сети" static 192.168.1.100 255.255.255.0 192.168.1.1 1

 

Или же настроим получение адреса по DHCP. При том если до этого были настроены адреса статикой, то по DHCP придёт только ip адрес. DNS останутся статическими

netsh interface ip set address "Подключение по локальой сети" dhcp

Настройка статического DNS (192.168.1.204):

netsh interface ip set dns "Подключение по локальой сети" static 192.168.1.204

Настройка динамических DNS:

netsh interface ip set dns "Local Area Connection" dhcp

 


MS Office документы отображать отдельными кнопками на панели задач


Что бы документы отображались отдельными кнопками на панели задач нужно открыть настройки Word или Excel.
Файл – Параметры – Дополнительно – Экран – Включить флажок “Показывать все окна на панели задач”

Windows 10 English UK language


После обновления появился English UK language и не удаляется.

Удалить можно следующим способом:

Read More »


Windows 10 Windows 8 RDP CredSSP Encryption Oracle Remediation Error Fix


После обновлений Windows10 при попытке подключиться к Windows Server 2012 или 2016 c Windows 10 выходит эта ошибка

This could be due to CredSSP Encryption Oracle Remediation

Помогает изменить ключ в реестре или добавить при его отсутствии по пути:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters] “AllowEncryptionOracle”=dword:00000002

Перезагрузка не требуется.

Так же можно удалить обновление KB4103727

Или можно скачать файл реестра, распаковать и запустить.


Порты для ввода в домен компьютера из-вне сети


Для того, что бы из другой подсети ввести компьютер в домен необходимо на обоих фаерволах открыть порты:

UPD: 53,389,445,88
TCP: 445,88,389,135,49152-65535,139


Затребованный пакет безопасности не существует


При попытке подключиться по RDP с Windows XP SP3 к терминальному серверу на Windows 2008 R2 выходит сообщение: “Затребованный пакет безопасности не существует”

Что бы это вылечить надо сделать следующее:

 

  1. Click Start, click Run, type regedit, and then press ENTER.
  2. In the navigation pane, locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
  3. In the details pane, right-click Security Packages, and then click Modify.
  4. In the Value data box, type tspkg. Leave any data that is specific to other SSPs, and then click OK.
  5. In the navigation pane, locate and then click the following registry subkey:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders
  6. In the details pane, right-click SecurityProviders, and then click Modify.
  7. In the Value data box, type credssp.dll. Leave any data that is specific to other SSPs, and then click OK.
  8. Exit Registry Editor.
  9. Restart the computer.

 

 


How to delete hiberfil.sys and disable hibernate / как отключить гибернизацию и удалить hiberfil.sys


Удалить файл hiberfil.sys можно простым способом: отключить гибернизацию.

Для этого надо открыть cmd под повышенными правами и выполнить команду

powercfg.exe -h off

Перезагрузка не требуется.

В данном примере освободили 8,8 гб места


Remote Desktop Service and DNS Resolver service


После удаления антивирусом файла ctfmon.dll из c:\windows\system32 и перезагрузки сервера служба Remote Desktop Services не запускается, так как не запускается дочерняя служба DNS Resolver.

Оказалось, что ctfmon.dll это зловредный файл, который был частью зловредной службы DNS Resolver.

При попытке запустить службу вываливается ошибка

Read More »