How to make the Radmin program run in hidden mode and it would be impossible to see it except in the task manager, the entire Internet climbed found only examples with a calculator and a notepad

' метод wscript run ' Запуск блокнота и передача ему текста ' run_1.vbs Option Explicit dim WshShell ' Создаем ссылку на объект Wscript.Shell set WshShell = WScript.CreateObject("Wscript.Shell") ' Запускаем блокнот и вставляем в него текст сценария WshShell.Run "notepad.exe " & WScript.ScriptFullName,1,true Wscript.Echo "Это был запуск программы блокнот" 

and then he did not fit

 path = "C:\Windows\12_12\" set WshShell = WScript.CreateObject("Wscript.Shell") WshShell.Run path & "Radmin.exe", ,true 

Write what you need to do, or an example of such a launch.

  • Your script is blocked by chrome. Paste it straight into the body of the question. - PashaPash
  • Corrected how you asked - Vladimir
  • one
    Vladimir Martyanov, you need to carefully read the posts. - Vladimir
  • MSDN itself says that the parameter intWindowStyle Integer value indicates the appearance of the program's window. Use of this information. - cpp_user

1 answer 1

If I understand the condition correctly:

 set t=createobject("Wscript.Shell") t.run "notepad.exe",0 

-starting a notepad, which is visible exclusively in the task manager