techwiki:win10

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
techwiki:win10 [2023/07/05 15:50] – [Windows 10 Initial Config] yingtechwiki:win10 [2024/04/20 17:58] (current) – [Windows 10 Initial Config] ying
Line 81: Line 81:
   * Firefox app   * Firefox app
   * hevc codec from windows store, (HEVC Video Extensions from Device Manufacturer) free version by run (win+r)<code>ms-windows-store://pdp/?ProductId=9n4wgh0z6vhq</code>   * hevc codec from windows store, (HEVC Video Extensions from Device Manufacturer) free version by run (win+r)<code>ms-windows-store://pdp/?ProductId=9n4wgh0z6vhq</code>
 +    * update: 2024: 
 +      * if above download not available:
 +        * download with this method: 
 +          * https://www.windowscentral.com/how-open-heic-and-hevc-files-windows-10s-photos-app
 +          * or just download here https://github.com/mrmattipants/Resources
 +        * once you install the AppxBundle file for hevc, you should be able to open
 +        * if still can't open the heic image file, go Setting > App > HEVC app, reset the app data will fix the error \\ {{:techwiki:win10:hevc_install_post_fix_small.png?600|}}
 +      * or just use 3rd party image viewer, like
 +        * https://imageglass.org/
 +        * https://www.xnview.com/en/xnviewmp/
     * or download from https://www.free-codecs.com/hevc_video_extension_download.htm     * or download from https://www.free-codecs.com/hevc_video_extension_download.htm
 ====== Win 10 Fresh Install ====== ====== Win 10 Fresh Install ======
Line 120: Line 130:
     - start menu: unpin tiles     - start menu: unpin tiles
     - change CD driver letter: diskmgmt.msc     - change CD driver letter: diskmgmt.msc
-    - disable Lock Screen totally (only once for admin acc): <code reg win10_lockScreen_off.reg>+    - turn off lock screen picture <code dos> 
 +reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System /v DisableLogonBackgroundImage /t REG_DWORD /d 1 /f 
 +</code> 
 +    - disable Lock Screen change (only once for admin acc): <code reg win10_lockScreen_off.reg>
 Windows Registry Editor Version 5.00 Windows Registry Editor Version 5.00
  
Line 285: Line 298:
     - install license apps and activate     - install license apps and activate
     - back all OS again     - back all OS again
 +
 +ref:
 +  * https://gist.github.com/mackwage/08604751462126599d7e52f233490efe
 ====== Extra Config ====== ====== Extra Config ======
  
Line 308: Line 324:
     * **When use external monitor**, enable laptop close, Control Panel > Power Option > Change current plan setting > Change Advanced power setting > Power button and laptop lid option > (lid close): do nothing     * **When use external monitor**, enable laptop close, Control Panel > Power Option > Change current plan setting > Change Advanced power setting > Power button and laptop lid option > (lid close): do nothing
  
 +
 +====== ssh server and client ======
 +  - setting > system > add optional features
 +  - find openssh client, openssh server, install
 +  - services (services.msc) > openssh server > general - startup type: automatic
 +  - start the service
 +
 +if GUI install fail, try powershell (not cmd) version
 +<code>
 +Get-WindowsCapability -Online | Where-Object Name -like 'OpenSSH*'
 +
 +# Install the OpenSSH Client
 +Add-WindowsCapability -Online -Name OpenSSH.Client~~~~0.0.1.0
 +
 +# Install the OpenSSH Server
 +Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
 +
 +# Start the sshd service
 +Start-Service sshd
 +
 +# OPTIONAL but recommended:
 +Set-Service -Name sshd -StartupType 'Automatic'
 +
 +# Confirm the Firewall rule is configured. It should be created automatically by setup. Run the following to verify
 +if (!(Get-NetFirewallRule -Name "OpenSSH-Server-In-TCP" -ErrorAction SilentlyContinue | Select-Object Name, Enabled)) {
 +    Write-Output "Firewall Rule 'OpenSSH-Server-In-TCP' does not exist, creating it..."
 +    New-NetFirewallRule -Name 'OpenSSH-Server-In-TCP' -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
 +} else {
 +    Write-Output "Firewall rule 'OpenSSH-Server-In-TCP' has been created and exists."
 +}
 +</code>
  
 ====== Last Step - Backup System Image ====== ====== Last Step - Backup System Image ======
Line 345: Line 392:
       * method B: System Property > Startup n Recovery : Setting > System Failure: uncheck automatically restart       * method B: System Property > Startup n Recovery : Setting > System Failure: uncheck automatically restart
         * ref: https://answers.microsoft.com/en-us/windows/forum/all/freeze-after-auto-turn-off-display/4748b7e5-67f9-4f9c-9f4e-b4c34aaf450b         * ref: https://answers.microsoft.com/en-us/windows/forum/all/freeze-after-auto-turn-off-display/4748b7e5-67f9-4f9c-9f4e-b4c34aaf450b
 +
 +  * Problem: ASUS motherboard keep popup Armoury crate service upgrade
 +    * go asus bios > Advanced > tool, change Download and install armoury crate to disable
 +    * go windows and unintall armoury crate
 +    * then, uninstall asus framework service
  • techwiki/win10.1688572201.txt.gz
  • Last modified: 2023/07/05 15:50
  • by ying