How does Win10 hide any program running interface?

  
In Windows systems, the program defaults to have a window display, and the running tasks generally have to react on the taskbar, which is convenient for switching operations. However, sometimes we may not need these information to display, so how to hide the program interface?

Method 1: Use VBScript
1, first to hide the Win32 version of the system For example, the program writes the following code in Notepad:
Dim WShell
Set WShell = CreateObject("WScript.Shell")
WShell.Run "wordpad.exe", 0 "Back 0 means "Hide"
Set WShell = Nothing
Note that the single quotation mark after the third line of the code is a comment symbol in VB, and the following statement has no effect.

2, save the above code as .vbs format, the file name is self-made, as shown below ——

3, double-click the vbs file just saved to make the tablet " ; Stealth & rdquo; run, but we can still find the process in the task manager, as shown below ——

4, if you want to steal the third-party program, you need to modify the code to the soft media cube ( For example, click on the cleanup master file, the code is as follows:
Dim WShell
Set WShell = CreateObject("WScript.Shell")
WShell.Run """" & " ;D:Program Files (x86)RuanmeiPCMastercleanmaster.exe" & """", 0 "If the path contains spaces, you need to put quotes and call symbols before and after the path, in the format of """" " & "Path" & """"
Set WShell = Nothing

5. After saving in the second step, double click to view the effect. The problem is that if the program itself requires administrator privileges and your system has UAC turned on, The request window cannot be hidden, as shown in the following figure ——

But after clicking “ is ”, you will not see the running interface and the taskbar icon, only in the task manager. Find the process, as shown below ——

Copyright © Windows knowledge All Rights Reserved