Skip to content

Instantly share code, notes, and snippets.

@vladislav805
Last active October 24, 2021 18:42
Show Gist options
  • Save vladislav805/a6c32ba90409c04a30a1258fb0b793f6 to your computer and use it in GitHub Desktop.
Save vladislav805/a6c32ba90409c04a30a1258fb0b793f6 to your computer and use it in GitHub Desktop.
Cheatsheet by install and set up windows 10

Windows cheatsheet

Disable fast startup

  1. Right click by "Start";
  2. "Search";
  3. Find Control panel;
  4. Find Power options;
  5. In left side "Choose what the power buttons do";

Disable Photos app, enable legacy Photo viewer

Add reg records:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".tif" /d "PhotoViewer.FileAssoc.Tiff" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".tiff" /d "PhotoViewer.FileAssoc.Tiff" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".jpg" /d "PhotoViewer.FileAssoc.Tiff" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".png" /d "PhotoViewer.FileAssoc.Tiff" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".bmp" /d "PhotoViewer.FileAssoc.Tiff" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Photo Viewer\Capabilities\FileAssociations" /v ".jpeg" /d "PhotoViewer.FileAssoc.Tiff" /f

Perceive time information as UTC (as Linux), not local (timezone)

Add reg record:

reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /d 1 /t REG_DWORD /f

Set virtual memory paging file

  1. Open settings
  2. System -> About;
  3. System info;
  4. Advanced system settings (in left side);
  5. Tab Advanced;
  6. Perfomance -> Settings...;
  7. Tab Advanced;
  8. Virtual memory -> Change...;
  9. Uncheck "Automaticly manage paging file size for all drives";
  10. Select "C:";
  11. Set to "Custom size";
  12. Set initial and maximum size to 8192 MB (8 GB);
  13. Click "Set";
  14. Click "OK";
  15. Confirm alert that changes will apply only after reboot;
  16. Click "OK";
  17. Click "OK";
  18. Restart.

Programs

Etc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment