How to hide the windows of bat files and ps1 files when running.

Anonymous
2023-11-12T07:20:33.21+00:00

I want to hide the windows when the bat file and ps1 file are running

PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
1,543 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2023-11-12T10:57:07.9233333+00:00

    As indicated

    0 comments No comments

  2. Vahid Ghafarpour 8,310 Reputation points
    2023-11-15T01:43:36.19+00:00

    Thanks for posting your question in the Microsoft Q&A forum.

    I'd try using the START utility.

    https://ss64.com/nt/start.html

    It will start a program, command or batch script that opens in a new/separate Command Prompt window. This allows the batch's cmd window to exit in the background.

    START powershell -file "D:\scripts\Powershell\xxx.ps1"

    And take care of common problems with double quote:

    https://stackoverflow.com/questions/154075/using-the-start-command-with-parameters-passed-to-the-started-program

    0 comments No comments