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
windows:server16 [2026/06/08 22:14] – removed - external edit (Unknown date) 127.0.0.1windows:server16 [2026/06/08 22:14] (current) – ↷ Page moved from os:windows:server16 to windows:server16 kilroy
Line 1: Line 1:
 +====== Server 2016/2019 ======
 +
 +<code bash>
 +sconfig
 +# -> set windows updates to manual
 +
 +Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
 +
 +choco install -y ChocolateyGUI
 +choco install -y virtio-drivers notepadplusplus totalcommander x64dbg.portable mingw python ruby
 +</code>
 +
 +===== Windbg preview =====
 +
 +<code>
 +https://store.rg-adguard.net/
 +Add-AppxPackage -Path <Appx_file>
 +</code>
 +
 +===== Disable Automatic Shutdown for Trial Server =====
 +
 +<code bash>
 +psexec -i -s cmd.exe
 +#whoami
 +#services.msc -> disable Windows License Monitoring Service WLMS
 +sc config WLMS start= disabled
 +#-> restart
 +</code>
 +
 +