meta data for this page
  •  

Differences

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

Link to this comparison view

Next revision
Previous revision
windows:windows11 [2023/10/26 20:22] – created niziakwindows:windows11 [2026/03/18 20:42] (current) – [guest access] niziak
Line 1: Line 1:
 ====== Windows 11 ====== ====== Windows 11 ======
 +
 +  * ''PDF X: Czytnik PDF i Edytor PDF'' from MS Store
  
 ===== Installation ===== ===== Installation =====
  
 +Force installation on old HW:
 +
 +<code shell>
 +setup.exe /product server
 +</code>
  
 ==== Bypass internet connection ==== ==== Bypass internet connection ====
Line 8: Line 15:
   * Press ''SHIFT+F10'' to start command prompt   * Press ''SHIFT+F10'' to start command prompt
   * type command: ''OOBE\BYPASSNRO''   * type command: ''OOBE\BYPASSNRO''
 +  * installer shows again select the region and keyboard settings
 +  * On ''Let's connect you to a network'' choose ''I don't have internet''
 +  * ''Continue with limited setup''
 +
 +===== Samba =====
 +
 +==== guest access ====
  
 +  * Computer Configuration > Administrative Templates > Network > Lanman Workstation > Enable insecure guest logons
 +  * via Registry Editor by adding the:
 +    * <code>KeyHKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\LanmanWorkstation</code>
 +    * with DWORD property ''AllowInsecureGuestAuth'' and the value 1
 +  * via powershell: <code powershell>md -force HKLM:\SOFTWARE\Policies\Microsoft\Windows\LanmanWorkstation | %{New-ItemProperty -Force $_.PsPath AllowInsecureGuestAuth -Value 1}</code>
 +    * <code powershell>Set-SmbClientConfiguration -EnableInsecureGuestLogons $true</code>