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 network install

Featured Replies

With help from others on this forum, I have successfully created an unattended network install system using boot floppy and dos prompts. This has already saved me time - thanks!

There is one additional setting that would make everything go even smoother....

I have three seperate rooms (I work in a school) that require different sets of software. Is there a way to edit the runonceex.cmd file to include if..then type statements which look to the computer name to decide what to add into the registry....

For example...

REM for computers named ICT001 - ICT034

if computername=ICT* then

REG ADD %KEY%\020 /VE /D "Installing some program" /f

REG ADD %KEY%\020 /V 1 /D "V:\someprogram.exe" /f

end if

REM for computer named LRC001 - LRC022

if computername=LRC* then

REG ADD %KEY%\020 /VE /D "Installing some other program" /f

REG ADD %KEY%\020 /V 1 /D "V:\someotherprogram.exe" /f

end if

Before I delve into Google, I was hoping somebody may be able to answer this.

Cheers.

You could try this.

@echo off

if "%ComputerName:~0,3%"=="MAG" (
 echo Installing apps for MAG001 - MAG099
rem  REG ADD %KEY%\020 /VE /D "Installing some program" /f
rem  REG ADD %KEY%\020 /V 1 /D "V:\someprogram.exe" /f
)

if "%ComputerName:~0,3%"=="ICT" (
 echo Installing apps for ICT001 - ICT034
rem  REG ADD %KEY%\020 /VE /D "Installing some program" /f
rem  REG ADD %KEY%\020 /V 1 /D "V:\someprogram.exe" /f
)

For details about how the ~0:3 stuff works, type "SET /?" at a command prompt.

2Dreamtime: this is the solution for schools:

1.) create list of computers with MAC adresses and classroom (e.g. PC1xx is form 1st classrom, PC2xx is from second classroom etc.)

2.) use set2var and install PC with name from beginning

3.) create packages for classrooms and call them by the PC name (e.g. if PC is from 1st classroom (PC1xx is PC name mask), call class1.bat

  • Author

Yep Dahi,

That did it!

Much appreciated.

Soulin, thanks for your solution. It is probably a better system than mine, but the RunOnceEx using if loops will be sufficient for my needs at this time. Cheers.

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.