This article will tell us how to execute a command and get its output in vb.net with example source code.The command process will be executed silently and the output and the error streams will be captured back into the main program. Here is the example source code to execute the command silently and get its Continue Reading …
Category: VB.net
How to get windows firewall status programmatically in vb.net
I am going to tell you how to get windows firewall status programmatically alongwith the example source code. To achieve this the netsh command is executed and its output is captured. For this the process ExecuteProcessSilentlyAndCaptureOutput is used To see the code for the ExecuteProcessSilentlyAndCaptureOutput first read the following article Execute Process Source Code Get Continue Reading …
Determine the Operating System installation date using wmi in vb.net programmatically
This article will describe how to determine the operating system installation date using wmi with vb.net source code.The wmi object is created and queried for the operating system installation date. Here is the example source code Continue Reading …
Check antivirus installation in windows using wmi in vb.net programmatically
Using wmi in vb.net programmatically,this article will tell you how to check if antivirus is installed or not,the name of the antivirus product and the status of the antivirus, if the antivirus is enabled or disabled and updated or not updated The appendOutput function in the example below appends output to a rich text box,you Continue Reading …