This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
windows [2020/12/30 14:53] valerio created |
windows [2025/02/16 12:38] (current) valerio |
||
|---|---|---|---|
| Line 4: | Line 4: | ||
| [[https://support.microsoft.com/en-us/help/4074588/windows-10-update-kb4074588]] | [[https://support.microsoft.com/en-us/help/4074588/windows-10-update-kb4074588]] | ||
| + | |||
| + | ---- | ||
| + | |||
| + | Per vedere le porte riservate: | ||
| + | <code> | ||
| + | netsh interface ipv4 show excludedportrange protocol=tcp | ||
| + | </code> | ||
| + | ---- | ||
| + | |||
| + | Molte sono riservate da winnat: | ||
| + | <code> | ||
| + | net stop winnat | ||
| + | </code> | ||
| + | |||
| + | [[https://github.com/docker/for-win/issues/3171#issuecomment-739740248]] | ||
| + | |||
| + | ---- | ||
| + | |||
| + | Windows 10/11 Home non ha gpedit.msc, per attivarlo usa questi comandi | ||
| + | <code> | ||
| + | FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F") | ||
| + | </code> | ||
| + | |||
| + | <code> | ||
| + | FOR %F IN ("%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum") DO (DISM /Online /NoRestart /Add-Package:"%F") | ||
| + | </code> | ||
| + | |||
| + | [[https://answers.microsoft.com/en-us/windows/forum/all/how-to-enable-the-gpeditmsc-on-windows-10-and-11/dbc76919-f2b5-4dec-a2b7-bcf545c34d00|Source]] | ||