有什么方法可以使 .vbs 文件只读,这样就没有人可以阅读内容或更改内容?但只能双击该文件开始执行。我将设置一个 Main.vbs,我将在其中放入以下内容
Dim oShell : Set oShell = WScript.CreateObject ("WScript.Shell")
oShell.run "A.VBS", 1, True
oShell.run "B.VBS", 1, True
oShell.run "C.VBS", 1, True
oShell.run "D.VBS", 1, True
用户只需单击 main.vbs 即可开始执行。我想要读/写保护的所有 .vbs。我的想法在实践中可行吗?
谢谢,