我们在使用Win10电脑的过程中,运行中的程序都会在任务栏中显示,以便我们进行切换操作。很多时候我们并不需要这些信息显示出来,那么要如何隐藏这些运行的程序界面呢?下面小编给大家提供两种操作方法,我们一起看看。
方法一:使用VBScript
1、首先以隐藏系统自带的Win32版《写字板》程序为例,在记事本中写入如下代码:
01Dim WShell02Set WShell = CreateObject("WScript.Shell")03WShell.Run "wordpad.exe", 004Set WShell = Nothing复制代码Dim WShellSet WShell = CreateObject("WScript.Shell")WShell.Run "wordpad.exe", 0Set WShell = Nothing
相关文章