Friday, December 15, 2017

Computer Build References

These are some places to look before building a computer from parts:

https://pcpartpicker.com/
http://www.logicalincrements.com/

Tuesday, October 3, 2017

Windows Defender and Windows Server 2016

I had failed a lot in my attempts to stop Windows Defender on Windows Server 2016, but I think this might have finally worked for me:

In powershell type the command:

Uninstall-WindowsFeature -Name Windows-Defender

Wednesday, September 13, 2017

cygwin terminal cls command

The cls command that Windows can do in a cmd window is useful in many cases.
Here is how to add it to cygwin.

Put this somewhere in your ~/.bashrc file:

alias cls='printf "\033c"'


Wednesday, June 7, 2017

Restart Chrome and restore all tabs

Sometimes I need to restart all of Chrome.
It looks like the graphics driver dies and restarts, after which some Chrome windows have broken frames where I cannot click on minimize and such.

Do this to kill all chrome processes at once, after which - so far - it has offered to reopen my tabs on restart.

In a CMD shell:
taskkill /IM chrome.exe /F

Tuesday, June 6, 2017