There is two option: 1.rich rule – firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="192.168.X.X" reject’ 2.First in the chain – firewall-cmd --direct --add-rule ipv4 filter INPUT_direct 0 -s 192.168.X.X/32 -j DROP
Category: Operating Systems
Taskbar will not “disappear” during Remote Desktop sessions anymoreTaskbar will not “disappear” during Remote Desktop sessions anymore
Simple FIX I have notice from time to time when connecting with RDP and set the session to full screen the Taskbar refuse to hide . what works for me
How to return one value from a PowerShell select propertyHow to return one value from a PowerShell select property
When running select from powershell the result will be headers and value, if you what just the value you should use -ExpandProperty switch, for example if you want
fltmgr.sys blue screen error 0x0000003Bfltmgr.sys blue screen error 0x0000003B
0x0000003B error is usually a graphic’s driver (display adapter/video driver), other possibilities include but are not limited to antivirus/antispyware/security programs and even memory (mapping) What work’s for
How To Allow Java On BrowserHow To Allow Java On Browser
The latest versions of java have some security improvements that prevents from old applets to run causing a lot of headaches to work with. In order to allow Jave
Windows File Explorer open SlowWindows File Explorer open Slow
Some time the windows file explorer takes long time to open and to refresh and it is running slowly in general, Some time the problem is because the
Configure Shadow Copy For Windows 10Configure Shadow Copy For Windows 10
Windows 10 lack the feature of schedule shadow copy like in windows 7 and server 2008. But you Still can do it with Win32_ShadowCopy class in WMI. First enable
check if php can send mail on linuxcheck if php can send mail on linux
check if PHP-scripts can send emails: from console or putty session to the server php -a mail ('you@example.com', "Test Postfix", "Test mail from postfix"); exit (); Note: if after running php
How to To restart network interface on linuxHow to To restart network interface on linux
CentOS : systemctl restart network or /etc/init.d/network restart Ubuntu: sudo /etc/init.d/networking restart for specific interface : ifdown eth0 ifup eth0
How to force mount exchange databaseHow to force mount exchange database
Open exchange Powershell : Mount-Database -identity "Your_Database_Name" -Force