skip to Main Content

Repair Windows 10+ image

When windows 10 is not functioning properly OPEN CMD AS ADMIN # 1. use the System File Checker (SFC) command tool to repair the current setup sfc /scannow # 2. perform a quick check DISM /Online /Cleanup-Image /CheckHealth # 3.…

Read More

Mount Windows Share on Ubuntu

$ sudo apt-get install cifs-utils $ sudo mount //WINSRV/SHARE -t cifs -o uid=1000,gid=1000,username=winuser /mnt/path where 'winuser' is the windows domain user, and optionally we can supply domain using domain=windomain with options.   Note: to find out linux user's uid and…

Read More

How to export PUTTY Sessions list?

You can export it simply by: regedit /e "%userprofile%\Desktop\putty-sessions.reg" HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions Or, for exporting all settings: regedit /e "%userprofile%\Desktop\putty.reg" HKEY_CURRENT_USER\Software\SimonTatham Note: do not replace SimonTatham with your username. regedit /e will simply export all settings to the file putty-sessions.reg (or putty.reg)…

Read More
Back To Top