meta data for this page
  •  

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
windows:windows11 [2025/10/16 10:49] – [Installation] 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 =====
Line 17: Line 19:
   * ''Continue with limited setup''   * ''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>