Related Articles
Simple Alert Box on Windows Using VBScript
Copy below code in a notepad and save it as alert.vbs (as all files) X=Msgbox(“Your system is Hacked! Please Contact IT Support Immediately.”,0+3,”Alert!”) Now run alert.vbs to show alert box on your windows machine. Change 0+3 to 0+16 to show different alert box.
Firefox Excel Application Issue
If you are not able to download the excel in Firefox and where it is working fine in Chrome and IE then have a look at below code. To work in Firefox Excel Issue Just add below code in headersheader(“Content-type: application/vnd.ms-excel”); See below for full code header(“Content-disposition: attachment;filename=example.xls”);header(“Content-type: application/vnd.ms-excel”);header(“Pragma: public”);header(“Expires: 0”);header(“Cache-Control: must-revalidate, post-check=0, pre-check=0”);header(“Cache-Control: private”, […]
How to see configuration of a Linux system
All configuration files are located in proc files on Linux. To see CPU Info on Linux, see below command cat proc/cpuinfo To see Memory Info on Linux, see below command cat proc/meminfo or free -m or free -g