Here’s how to prevent a Windows RDP from being accidentally shut down. 2. Go to “Local Policies -> User Rights Management” 3. Right-click “Shut down the system” and click properties: Remove “Users” to prevent non-admin from performing a shutdown, remove administrators to disable shutdown/restart completely: Restart (or signout) and then sign in again, the user […]
Category: Computer Administration
Disable a server session
Go to IIS (Internet Information Services) -> Select Server -> Right click on Session State -> open Feature -> Select Not Enabled -> Apply hamza
Next Cloud
Enable the HTTP/2 module Enable your sites The configuration for this will be found in /etc/apache2/sites-enabled/000-default-le-ssl.conf. Note: All sites in which you’ve enabled HTTPS, via Let’s Encrypt, will end with le-ssl.conf. and add the following tag after the <VirtualHost *.443> directive tag: Protocols h2 http:/1.1 Save and close that file. Restart Apache2 with the command […]
pfsense
server: local-data: “*kerberos.*tcp.example.com 3600 IN SRV 0 100 88 dc1.example.com” local-data: “*kerberos.*udp.example.com 3600 IN SRV 0 100 88 dc1.example.com” Irfan Anis
Virtual NAS
Irfan Anis
Zabbix
agents to install CentOS/RHEL 7/6 Step 1 – Add Required Repository CentOS/RHEL 7: rpm -Uvh https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm CentOS/RHEL 6: rpm -Uvh https://repo.zabbix.com/zabbix/4.0/rhel/6/x86_64/zabbix-release-4.0-2.el6.noarch.rpm Step 2 – Install Zabbix Agent yum install zabbix zabbix-agent Debian Run Apt update sudo apt update Install Zabbix Agent LTS on Debian 11 using APT sudo apt install zabbix-agent XEN Server yum –enablerepo […]
How To Delete Protected Partitions in Windows
HOW TO REMOVE STUCK PARTITIONS: Run PowerShell (as an administrator) Type DISKPART and press enter Type LIST DISK and press enter Type SELECT DISK <n> and press enter Type LIST PARTITION and press enter Type SELECT PARTITION <n> and press enter Type DELETE PARTITION OVERRIDE and press enter Nehal