Keyboard shortcuts on a RDP session
CTRL+ALT+END : Open the Microsoft Windows NT Security dialog box (CTRL+ALT+DEL)ALT+PAGE UP : Switch between programs from left to right ...
How to change Exchange 2013-2016 urls
$confirmation = Read-Host "Are you Sure You Want To Proceed:"if ($confirmation -eq 'y') proceed$domain = Read-Host "Voer hier domein naam"Get-OutlookAnywhere ...
Connect to Exchange Online (Powershell)
On your local computer, open Windows PowerShell and run the following command.
PowerShell
$UserCredential = Get-Credential
In the Windows PowerShell Credential Request dialog ...
Enable ClickOnce support in Microsoft Edge
In Microsoft Edge, go to edge://flags/#edge-click-once.
If the existing value is set to Default or Disabled in the dropdown list, change it to Enabled.
Scroll down to the ...
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 ...
Crontab
Crontab List active cron jobs crontab -l less /etc/crontab Systemctl restart crond View Cron Jobs ...
Create a website and add a certificate with powershell
Import-Module WebAdministration
# Create the new websiteNew-Website -Name DemoSite -PhysicalPath C:\inetpub\wwwroot\
# Notice all web bindings createdGet-WebBinding
# Find the bindings only on ...
Install LAMP and PHPMYADMIN on Ubuntu 22.04
Step 1: Install Apachesudo apt install apache2 -ysudo systemctl status apache2sudo systemctl enable --now apache2http://server-ip
Step 2: Install MariaDB database serversudo ...
Vergroot de download limit SBS2011 pop3 connector
From the Exchange Powershell run the following This command will display the current sizeGet-ReceiveConnector | select identity, maxmessagesizeThis will set ...
Install NFS Centos 7
NFS Server: server.example.com, IP address: 192.168.2.133
NFS Client: client.example.com, IP address: 192.168.2.134
Yum -y install vim perl mlocate Configure the ...
Install FOG Image Server Centos 7
Continue pre-config
yum install firewalld -y
systemctl start firewalld
systemctl enable firewalld
for service in http https tftp ftp mysql nfs mountd rpc-bind proxy-dhcp ...