Category Archives: My Windows

fix drive and scan

DISM /Online /Cleanup-Image /CheckHealthDISM /Online /Cleanup-Image /RestoreHealthsfc /scannow

Posted in command line of windows, My Windows | Comments Off on fix drive and scan

convert EDGE back to IE

You said: how do i load original ie back after windows update, i no like use edge ChatGPT said: Short answer: You can’t get the original Internet Explorer back anymore. Microsoft permanently retired it and removed it through Windows updates (especially on … Continue reading

Posted in tricks & tips, windows | Comments Off on convert EDGE back to IE

Disable TLS 1.0 and TLS 1.1 on Windows Server using CMD as admin

reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server” /v Enabled /t REG_DWORD /d 0 /f reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server” /v DisabledByDefault /t REG_DWORD /d 1 /f reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client” /v Enabled /t REG_DWORD /d 0 /f reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client” /v DisabledByDefault /t … Continue reading

Posted in IIS, My Windows, windows | Comments Off on Disable TLS 1.0 and TLS 1.1 on Windows Server using CMD as admin

cert not store in server certificate

Posted in IIS, SSL, windows | Comments Off on cert not store in server certificate

SSL v3 goes to the dogs – POODLE kills off protocol

Apache To disable SSLv3 on your Apache server you can configure it using the following. SSLProtocol All -SSLv2 -SSLv3 This will give you support for TLSv1.0, TLSv1.1 and TLSv1.2, but explicitly removes support for SSLv2 and SSLv3. Check the config … Continue reading

Posted in apache, My Linux, windows | Comments Off on SSL v3 goes to the dogs – POODLE kills off protocol