Microsoft 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 ...
Microsoft / Exchange 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 ...
Microsoft / Exchange 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 ...
Microsoft 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 ...
Microsoft / Powershell Install IIS and dotnet core with powershell
# Install IIS and dotnet coreInstall-WindowsFeature "Web-Server","Web-Windows-Auth","Web-ASP","Web-Asp-Net","Web-Asp-Net45" -IncludeManagementTools
$maxAttempts = 30$attemptCount = 0$source = "https://download.visualstudio.microsoft.com/download/pr/633b17e5-a489-4da4-9713-5ddedf17a5f0/5c18f4203e837dd90ba3da59eee92b01/dotnet-hosting-2.1.15-win.exe"$file = "C:\Windows\Temp\dotnet-hosting-2.1.15-win.exe"
Do {$attemptCount++Invoke-WebRequest $source -OutFile $file ...
Microsoft / Exchange Check Exchange Server Build Numer
Exchange servers tot versie 2010 >>>Klik hier<<<Exchange servers versie 2013 en nieuwer >>>Klik hier<<<
...
Microsoft 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 ...
VMware Crontab
Crontab List active cron jobs crontab -l less /etc/crontab Systemctl restart crond View Cron Jobs ...
Microsoft / Powershell 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 ...
Ubuntu 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 ...
Microsoft / Exchange 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 ...
CentOS 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 ...
CentOS 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 ...