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 [2024/01/29 18:09] – [Base Apps] yingtechwiki:win10 [2024/04/20 17:58] (current) – [Windows 10 Initial Config] ying
Line 130: 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 295: 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 318: 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 355: 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.1706551767.txt.gz
  • Last modified: 2024/01/29 18:09
  • by ying