Back Up the Metabase Using a Password in Windows
You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.
Back Up the Metabase Using a Password in Windows using VBScript, WMI and LDAPExample(s)
Const MD_BACKUP_HIGHEST_VERSION = &HFFFFFFFE Const MD_BACKUP_OVERWRITE = 1 strComputer = "LocalHost" Set objComputer = GetObject("IIS://" & strComputer & "") objComputer.BackupWithPassword "ScriptedBackup", _ MD_BACKUP_HIGHEST_VERSION, MD_BACKUP_OVERWRITE, "ie456@k"