Windows: Difference between revisions
Line 59: | Line 59: | ||
* Go under <code>Windows Logs</code>-<code>System</code>. | * Go under <code>Windows Logs</code>-<code>System</code>. | ||
* Filter with Event sources: User32 | * Filter with Event sources: User32 | ||
==Windows Update== | |||
===Prevent Auto-restarts=== | |||
Auto-restarts are pretty annoying. They happen even if you're doing something such as training a model. | |||
See the long complaint thread at [https://answers.microsoft.com/en-us/windows/forum/all/disable-windows-10-automatic-restart-after-updates/16f1826d-a796-4de8-ac99-1d625420d265?auth=1 https://answers.microsoft.com/en-us/windows/forum/all/disable-windows-10-automatic-restart-after-updates/16f1826d-a796-4de8-ac99-1d625420d265?auth=1]. | |||
# Run <code>gpedit.msc</code> | |||
# In the Local Group Policy Editor, go to | |||
#:<pre>Computer Configuration -> Administrative Templates-> Windows Components-> Windows Update</pre> | |||
# Double-click on “No auto-restart with automatic installations of scheduled updates”. | |||
# Select "Enabled", and then click "OK". | |||
;Notes | |||
* I'm not 100% sure if this works. | |||
* Group policies are only available on Windows 10 Pro. |
Revision as of 05:08, 14 June 2020
Bash
- Git for Windows - this is a modified version of MSYS2
- MSYS2
- Cygwin
- Windows Subsystem for Linux - WSL2 is a full linux VM
Blue Screen
How to troubleshoot BSOD (Blue Screen of Death).
- When windows encounters a BSOD, it will create a minidump (.dmp) file in
C:\Windows\Minidump
. - Copy out this dump file to somewhere like your desktop.
- There are various software to open the minidump files such as WinDbg Preview and BlueScreenView,
WinDbg Preview
How to use WinDbg preview
- Open your minidump
- Type
!analyze -v
Hosts file
Wikipedia: hosts (file)
%SystemRoot%\System32\drivers\etc\hosts
Changing IDE/RAID to AHCI
Reference
You should be using ACHI instead of IDE or RAID.
- Run
bcdedit /set {current} safeboot minimal
in a cmd prompt with admin - Change to ACHI in UEFI
- Run
bcdedit /deletevalue {current} safeboot
- Reasons not to use Intel Raid
- It is a fake raid managed by the Intel driver.
- It will not be recognized in Linux. It is better to use software RAID on both Windows and Linux.
- See Archwiki: RAID
- You typically run into problems when changing motherboards, and sometimes even just after updating the bios.
- On consumer Intel boards (Z370, Z390), your M.2 slots are wired to your chipset which only has a PCIe x4 connction to your CPU.
- This means you won't receive a significant performance boost if you use RAID 0 on 2 higher-end NVMe SSDs.
Application Management
Chocolatey
Chocolatey is an open source package manager for windows.
Install Chocolatey by following the directions on https://chocolatey.org/install.
# Installs ffmpeg choco install ffmpeg # Upgrade all choco upgrade all # See installed packages choco list --localonly
Event Viewer
See Reason for last Restart
- Go under
Windows Logs
-System
. - Filter with Event sources: User32
Windows Update
Prevent Auto-restarts
Auto-restarts are pretty annoying. They happen even if you're doing something such as training a model.
See the long complaint thread at https://answers.microsoft.com/en-us/windows/forum/all/disable-windows-10-automatic-restart-after-updates/16f1826d-a796-4de8-ac99-1d625420d265?auth=1.
- Run
gpedit.msc
- In the Local Group Policy Editor, go to
Computer Configuration -> Administrative Templates-> Windows Components-> Windows Update
- Double-click on “No auto-restart with automatic installations of scheduled updates”.
- Select "Enabled", and then click "OK".
- Notes
- I'm not 100% sure if this works.
- Group policies are only available on Windows 10 Pro.