Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Unattended Switches for Netzero client?

Featured Replies

Hello All,

I use Netzero for backup dial-up connection, and would like to include the client in my unattended installs. Here's what I've got so far:

ECHO Installing NetZero 7.0 Client...

ECHO Please wait...

start /wait %systemdrive%\Apps\Netzero.exe /S

ECHO.

ECHO Killing Netzero.exe process

taskkill.exe /F /IM exec.exe

It works ok except that the installer opens a pop-up alert box warning to "close all browser windows before proceeding" which has to closed before batch can continue; what I'd like to know is how to disable it...


maybe close.vbs?

close.vbs

Set WshShell = WScript.CreateObject("WScript.Shell")

WScript.Sleep 1000
WshShell.Sendkeys "%{F4}"

do this:

ECHO Installing NetZero 7.0 Client...

ECHO Please wait...

start /wait %systemdrive%\Apps\Netzero.exe /S

start /wait %systemdrive%\Apps\close.vbs

ECHO.

ECHO Killing Netzero.exe process

taskkill.exe /F /IM exec.exe

of course if you put close.vbs in \$OEM$\$$\System32 you'd just need to do

start /wait close.vbs

Also - install this before any antivirus software - otherwise the vbs script will probably be blocked.

  • Author

Thanks Mate,

Unfortunately it doesn't work as intended, rather it "corrupts" the application install.

Also, it can't be run with a start /wait previous--it won't kick off until after the /wait is reconciled, so you have to click on the alert box anyway.

Ah, well...some things just have to be manually installed, I guess.

  • Author

Hey,

Great, finally got it to work...

Install.cmd:

---

ECHO .Installing NetZero free internet access client...

start %systemdrive%\INSTALL\Netzero.exe /S

ECHO Completing Installation...

start %systemdrive%\INSTALL\close.vbs

ECHO. Closing Netzero Client...

start %systemdrive%\INSTALL\close.vbs

ECHO .Killing Netzero application...

TASKKILL.EXE /F /IM exec.exe

---

close.vbs:

---

Set WshShell=WScript.CreateObject("WScript.Shell")

WScript.Sleep 1000

WshShell.Sendkeys"~"

---

Seems obvious, now that you've shown me how to use a VBS.

Alternately, I suppose I could have done this:

close.vbs:

---

Set WshShell=WScript.CreateObject("WScript.Shell")

WScript.Sleep 1000

WshShell.Sendkeys"~"

WScript.Sleep 5000

WshShell.Sendkeys"%{F4}"

---

Unfortunately, it seems kinda risky in an unattended setup.

Thanks again!

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.