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