User Tools

Site Tools


win10

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
win10 [2023-12-20 21:27:39]
mi
win10 [2024-11-05 15:24:45] (current)
mi [Enable ADMIN$ shares]
Line 104: Line 104:
 "By default, Windows Vista and newer versions of Windows prevent local accounts from accessing administrative shares through the network."​ ([[https://​docs.microsoft.com/​en-us/​troubleshoot/​windows-client/​networking/​cannot-logon-access-administrative-share#​cause|docs.microsoft.com]]) "By default, Windows Vista and newer versions of Windows prevent local accounts from accessing administrative shares through the network."​ ([[https://​docs.microsoft.com/​en-us/​troubleshoot/​windows-client/​networking/​cannot-logon-access-administrative-share#​cause|docs.microsoft.com]])
   reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\system /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1   reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Policies\system /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1
 +
 +===Disable IPv6
 +Not tested yet:
 +
 +From https://​4sysops.com/​archives/​disable-ipv6-in-windows/​
 +
 +  Get-NetAdapterBinding -ComponentID "​ms_tcpip6"​ | where Enabled -eq $true | Disable-NetAdapterBinding -ComponentID "​ms_tcpip6"​
 +
 +or (probably needs restart?):
 +
 +  reg add "​HKLM\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters"​ /v DisabledComponents /t REG_DWORD /d 255 /f
 +
 +or the same in PowerShell:
 +
 +  New-ItemProperty -Path HKLM:​\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\ -Name DisabledComponents -Type DWord -Value 255
 +
 +The Value 32 may be better than 255.
 +
 +Or a .reg file (here with value 32 (hex 20)):
 +
 +<file reg NoIPv6.reg>​Windows Registry Editor Version 5.00
 +
 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters]
 +"​DisabledComponents"​=dword:​00000020
 +</​file>​
 +
 +Or maybe ''​netsh''​ commands as suggested in https://​systemadminspro.com/​how-to-disable-ipv6-on-windows/ ​
 +(needs a restart)
 +
 +<​code>​netsh interface ipv6 set teredo disabled
 +netsh interface ipv6 6to4 set state disabled
 +netsh interface ipv6 isatap set state disabled
 +</​code>​
  
 ==WSL ==WSL
/docs/dokuwiki/data/pages/win10.txt ยท Last modified: 2024-11-05 15:24:45 by mi