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 ...
Proxmox How To Disable Proxmox VE Subscription Notification
To disable the Proxmox subscription notification, access the server's console via SSH, (On Version 9.0.10 tested )back up the proxmoxlib.js file, cd ...
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 ...
Microsoft How to Find Computer Locking Active Directory Account
Find Locking Computer Using Event Logs
Login to the Domain Controller where authentication took place.
Open “Event Viewer“.
Expand “Windows Logs” then choose ...
Microsoft / ADFS 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 ...
CentOS Copy with SCP
On the host where the cron job is ssh-keygen -t rsa -b 4096 No password Cd ~/.ssh 760708 -rw-------. ...
Microsoft Forceer de installatie van het MSU-pakket
Wanneer u een MSU-bestand probeert te installeren, ontvangt u het volgende foutbericht:
• De update is niet van toepassing op uw ...
Microsoft / Powershell Create a file
# Create-NewFile.ps1
# Full path of the file$file = 'c:\temp\important_file.txt'
#If the file does not exist, create it.if (-not(Test-Path -Path $file -PathType ...
Microsoft / Powershell Add content to a file
# Update-FileContents.ps1
#Full path of the file$file = 'c:\temp\important_file.txt'
# If the file exists, append a new GUID value in the file.if ...