KMS client setup keys
Generic Volume License Keys (GVLK)
In the tables that follow, you will find the GVLKs for each version and edition of ...
How to renew RDS grace period on RDS hosts
To renew RDS grace period, you need to find the following registry key and delete it.
“HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM\GracePeriod”
Before you can delete the ...
Tool om log files makkelijk te bekijken
Trace log is een makkelijke tool om de logfiles te bekijken
https://www.microsoft.com/en-us/download/details.aspx?id=50012
...
Install certificate in UTM 9
Maak een cert aan op een linux machine voor de astaro utm
openssl genrsa -aes256 -out <naamkey>.key 2048openssl req -new -key ...
Capture Windows 10 Image using MDT
Preparing Windows 10 Reference Computer for MDT Capture
Before you begin to capture Windows 10 image, you should prepare already deployed ...
Windows update toevoegen in de WIM file met Powershell
Get-WindowsImage -ImagePath C:\WIM\install.wim
Remove-WindowsImage -ImagePath c:\wim\install.wim -index 1
Mount-WindowsImage -ImagePath c:\wim\install.wim -Index 1 -Path C:\Mountdir
Add-WindowsPackage -Path C:\Mountdir -PackagePath C:\MSU\New
Dismount-WindowsImage -Path C:\Mountdir -Save
Set-ExecutionPolicy ...
How to remove Exchange from Active Directory
Remove Exchange Server with ADSI Edit
Log in to the domain controller and navigate to the Start menu. Open Administrative Tools and start ADSIEdit.
Remove Exchange ...
Disk uitbreiden vergroten centos 7
Fdisk /dev/sda
M
(list commandos)
n
p
t
3
(option t ) 8e (voor lvm)
w
Reboot server
Pvcreate /dev/sda3
Vgdisplay
Vgextend centos /dev/sda3
Vgdisplay
Lvdisplay
pvscan
lvextend -L+20G /dev/centos_docker/home
Lvdisplay
Vgdisplay
Df -h
xfs_growfs /dev/centos_docker/home
Df -h
...
Powershell view Certificates
Firstly open PowerShell and run cd Cert: , this will allow you to run the below commands.
Get-ChildItem -path cert:\LocalMachine\My – This will show ...
Enable Win32 long paths
Download and install administrative templates for Windows Server 2016 and 2019 in your Windows Server 2012 R2 Active Directory
Folow these ...
MYSQL / MARIADB commandos
[Inloggen in Mariadb] mysql -u root -p
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON *.* TO 'username'@'localhost' WITH GRANT ...