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.

Colourful Maximised Batch's

Featured Replies

if like me you like pretty colors.. at the top of your script use the color command

color attributes are specified by TWO hex digits -- the first corresponds to the

background; the second the foreground. each digit can be any of the following

values:

   0 = Black       8 = Gray
   1 = Blue        9 = Light Blue
   2 = Green       A = Light Green
   3 = Aqua        B = Light Aqua
   4 = Red         C = Light Red
   5 = Purple      D = Light Purple
   6 = Yellow      E = Light Yellow
   7 = White       F = Bright White

so for bright white text on a light blue background use

COLOR 9F

:: specify columns wide by lines high

MODE CON COLS=x_amount LINES=x_amount

:: to maximise your batch.. call it with

START /MAX /WAIT mycmd.cmd

:: while your at it give it a name in the title bar using

TITLE blimey its a personalised script.. wowee ..numinous.. you rock

:)

heres a for instance.. a 1 line cmd window that displays what its doing rather than what its done

@ECHO OFF
MODE CON COLS=40 LINES=1
COLOR 9F
TITLE Installing
ECHO DirectX 9.0b...............Please Wait
start "DX9" /wait %systemdrive%\install\DirectX9b\dxsetup.exe /opk
ECHO Windows Media Player 9.....Please Wait
start "MP9" /wait %systemdrive%\install\WMP9\MPSetupXP.exe /Q:A /R:N /C:"setup_wm.exe /Q:A /R:N /NoMigrate /DisallowSystemRestore"

hehe nice, if we can be able to change the font too then we could create a matrix style batch script :)

  • Author

ill have a dabble :)

EDIT :: the only way is to somehow get xp install to load ansi.sys

  • Author

ok so 1 line wasnt enough :) stretching to 2

warning to anyone trying this.. prolly best to make sure your scripts work before applying this

Off topic:

What does the "/NoMigrate" in WMP9 do?

@ECHO OFF

MODE CON COLS=40 LINES=1

COLOR 9F

TITLE Installing

ECHO DirectX 9.0b...............Please Wait

start "DX9" /wait %systemdrive%\install\DirectX9b\dxsetup.exe /opk

ECHO Windows Media Player 9.....Please Wait

start "MP9" /wait %systemdrive%\install\WMP9\MPSetupXP.exe /Q:A /R:N /C:"setup_wm.exe /Q:A /R:N /NoMigrate /DisallowSystemRestore"

  • Author

prevents media library migration.. i dont use media library so theres nothing to migrate.. its not an essential switch

I am trying to make bootdisk that doesn't show the loading of aspicd.sys and the other drivers, I don't know if there is a proper way to do it so I thought I could just change the color to black on black.

It wouldn't work cuz I see that it changes also what was on screen before so my professional looking "please wait..." wouldn't remain visible, but just for the heck, is it possible to have background and foreground the same color? when I enter the same digit it looks like the command is ignored.

And any suggestion on how to avoid seeing the load message of the various display.sys, aspi etc drivers, maybe using an alternative method would be very appreciated.

my ignorance has no limit, you can navigate inside my head for days without meeting a notion, it's a very relaxing place...

  • Author

try a 1 line cmd window :) i didnt see a thing.. except a blinking cursor ..thats why i stretched to 2 lines

or direct any output to NUL using " > NUL" at the end of a command line like this

del "%systemdrive%\Documents and Settings\All Users\Start Menu\Windows Catalog.lnk" > NUL

any output sent to NUL dissappears

never tried this in config.sys so it may not work but worth a try

Nice one, Numinous!

Is there also a way to make the fonts appear in bold, underlined, or italic?

:)

:) You could however change font en type in the properties from the command window and make it permanent for all cmd windows

W

  • Author

yes you can.. but that wouldnt apply to your unattended installations cmd windows

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.