Results 1 to 6 of 6

Thread: [Bat File] Command to make the CMD window Unvisible

  1. #1

    Thread Starter
    Addicted Member Incures's Avatar
    Join Date
    May 2006
    Location
    south afrika
    Posts
    205

    [Bat File] Command to make the CMD window Unvisible

    Hello everyone,
    Long ago i had command that i wroth in the bat file, that made the CMD window Unvisible.

    I cant remmber what it was...thx.

  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: [Bat File] Command to make the CMD window Unvisible

    It sounds like you are talking about hiding the command text and not the actual window itself? In your bat file the @echo off statement will turn off text display to the command window that the bat file is running. If you want to hide the entire window then shelling it with vb passing the argument vbHide will do it.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3

    Thread Starter
    Addicted Member Incures's Avatar
    Join Date
    May 2006
    Location
    south afrika
    Posts
    205

    Re: [Bat File] Command to make the CMD window Unvisible

    Quote Originally Posted by RobDog888
    It sounds like you are talking about hiding the command text and not the actual window itself? In your bat file the @echo off statement will turn off text display to the command window that the bat file is running. If you want to hide the entire window then shelling it with vb passing the argument vbHide will do it.
    i kind of dident understand u.
    i dont mean to the @echo...
    i mean to make the window him self unvidible.
    ther was sometihng like /m or so

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: [Bat File] Command to make the CMD window Unvisible

    there is no /m commandline switch for cmd.exe

    Starts a new instance of the Windows command interpreter

    CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF]
    [[/S] [/C | /K] string]

    /C Carries out the command specified by string and then terminates
    /K Carries out the command specified by string but remains
    /S Modifies the treatment of string after /C or /K (see below)
    /Q Turns echo off
    /D Disable execution of AutoRun commands from registry (see below)
    /A Causes the output of internal commands to a pipe or file to be ANSI
    /U Causes the output of internal commands to a pipe or file to be
    Unicode
    /T:fg Sets the foreground/background colors (see COLOR /? for more info)
    /E:ON Enable command extensions (see below)
    /E:OFF Disable command extensions (see below)
    /F:ON Enable file and directory name completion characters (see below)
    /F:OFF Disable file and directory name completion characters (see below)
    /V:ON Enable delayed environment variable expansion using ! as the
    delimiter. For example, /V:ON would allow !var! to expand the
    variable var at execution time. The var syntax expands variables
    at input time, which is quite a different thing when inside of a FOR
    loop.
    /V:OFF Disable delayed environment expansion.

    Note that multiple commands separated by the command separator '&&'
    are accepted for string if surrounded by quotes. Also, for compatibility
    reasons, /X is the same as /E:ON, /Y is the same as /E:OFF and /R is the
    same as /C. Any other switches are ignored.

    If /C or /K is specified, then the remainder of the command line after
    the switch is processed as a command line, where the following logic is
    used to process quote (") characters:

    1. If all of the following conditions are met, then quote characters
    on the command line are preserved:

    - no /S switch
    - exactly two quote characters
    - no special characters between the two quote characters,
    where special is one of: &<>()@^|
    - there are one or more whitespace characters between the
    two quote characters
    - the string between the two quote characters is the name
    of an executable file.

    2. Otherwise, old behavior is to see if the first character is
    a quote character and if so, strip the leading character and
    remove the last quote character on the command line, preserving
    any text after the last quote character.

    If /D was NOT specified on the command line, then when CMD.EXE starts, it
    looks for the following REG_SZ/REG_EXPAND_SZ registry variables, and if
    either or both are present, they are executed first.

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun

    and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun

    Command Extensions are enabled by default. You may also disable
    extensions for a particular invocation by using the /E:OFF switch. You
    can enable or disable extensions for all invocations of CMD.EXE on a
    machine and/or user logon session by setting either or both of the
    following REG_DWORD values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\EnableExtensions

    and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\EnableExtensions

    to either 0x1 or 0x0. The user specific setting takes precedence over
    the machine setting. The command line switches take precedence over the
    registry settings.

    The command extensions involve changes and/or additions to the following
    commands:

    DEL or ERASE
    COLOR
    CD or CHDIR
    MD or MKDIR
    PROMPT
    PUSHD
    POPD
    SET
    SETLOCAL
    ENDLOCAL
    IF
    FOR
    CALL
    SHIFT
    GOTO
    START (also includes changes to external command invocation)
    ASSOC
    FTYPE

    To get specific details, type commandname /? to view the specifics.

    Delayed environment variable expansion is NOT enabled by default. You
    can enable or disable delayed environment variable expansion for a
    particular invocation of CMD.EXE with the /V:ON or /V:OFF switch. You
    can enable or disable delayed expansion for all invocations of CMD.EXE on a
    machine and/or user logon session by setting either or both of the
    following REG_DWORD values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\DelayedExpansion

    and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\DelayedExpansion

    to either 0x1 or 0x0. The user specific setting takes precedence over
    the machine setting. The command line switches take precedence over the
    registry settings.

    If delayed environment variable expansion is enabled, then the exclamation
    character can be used to substitute the value of an environment variable
    at execution time.

    You can enable or disable file name completion for a particular
    invocation of CMD.EXE with the /F:ON or /F:OFF switch. You can enable
    or disable completion for all invocations of CMD.EXE on a machine and/or
    user logon session by setting either or both of the following REG_DWORD
    values in the registry using REGEDIT.EXE:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\CompletionChar
    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\PathCompletionChar

    and/or

    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\CompletionChar
    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\PathCompletionChar

    with the hex value of a control character to use for a particular
    function (e.g. 0x4 is Ctrl-D and 0x6 is Ctrl-F). The user specific
    settings take precedence over the machine settings. The command line
    switches take precedence over the registry settings.

    If completion is enabled with the /F:ON switch, the two control
    characters used are Ctrl-D for directory name completion and Ctrl-F for
    file name completion. To disable a particular completion character in
    the registry, use the value for space (0x20) as it is not a valid
    control character.

    Completion is invoked when you type either of the two control
    characters. The completion function takes the path string to the left
    of the cursor appends a wild card character to it if none is already
    present and builds up a list of paths that match. It then displays the
    first matching path. If no paths match, it just beeps and leaves the
    display alone. Thereafter, repeated pressing of the same control
    character will cycle through the list of matching paths. Pressing the
    Shift key with the control character will move through the list
    backwards. If you edit the line in any way and press the control
    character again, the saved list of matching paths is discarded and a new
    one generated. The same occurs if you switch between file and directory
    name completion. The only difference between the two control characters
    is the file completion character matches both file and directory names,
    while the directory completion character only matches directory names.
    If file completion is used on any of the built in directory commands
    (CD, MD or RD) then directory completion is assumed.

    The completion code deals correctly with file names that contain spaces
    or other special characters by placing quotes around the matching path.
    Also, if you back up, then invoke completion from within a line, the
    text to the right of the cursor at the point completion was invoked is
    discarded.

    The special characters that require quotes are:
    <space>
    &()[]{}^=;!'+,`~
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  5. #5

    Thread Starter
    Addicted Member Incures's Avatar
    Join Date
    May 2006
    Location
    south afrika
    Posts
    205

    Re: [Bat File] Command to make the CMD window Unvisible

    i said some think like that...T_T
    mm i cnat find it in here...dam

    my u know?

  6. #6
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: [Bat File] Command to make the CMD window Unvisible

    There is no commandl;ine switch for making the window hidden. You must do it from your execution of the bat file or command console window like I posted earlier.

    Shell "C:\Windows\System32\cmd.exe C:\MyFile.bat", vbHide
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width