Batch Script to Open Application

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024

ความคิดเห็น • 32

  • @SG-kz5bq
    @SG-kz5bq 2 ปีที่แล้ว +4

    Hi Rakesh sir,
    I Have started to follow your channel on 2021 and regular follower.I have learned so many topics from this channel.Your way of teaching just awesome sir.When i try to prepare for interview I have referred your interview playlist and gone through all practical exercise. It makes me more confident and knowledge in any scenario or practical based interview questions.
    Finally my dream came true in my RPA career..I got offer letter from reputed product based company and yet to receive another offer from one of the top MNC.I am so happy to share this. You are a great teacher and such a wonderful human being ❤️.Please continue the great work sir.May god bless you sir.

    • @AutomatewithRakesh
      @AutomatewithRakesh  2 ปีที่แล้ว +2

      Hello, Shiyamala Being woken up to such wonderful news! I have been following your remarks and consistent work! See how things looked difficult and impossible one day, but how they have changed for the better for you now. When people succeed in life, it makes me incredibly proud to have had even a small role in their epic journey. Awesome, once more, many congratulations!

    • @SG-kz5bq
      @SG-kz5bq 2 ปีที่แล้ว +1

      @@AutomatewithRakesh Thank you so much for your valuable comments sir ❤️

  • @amrutadinde4742
    @amrutadinde4742 14 วันที่ผ่านมา

    Hello Rakesh,
    I am learning batch scripting using your videos. Currently I am trying to clone git repository to my local machine using script. Before clonning, authorization window will appear and I had to do access authorization manually. I tried with github user name and Private access token but not worked. Can you help me to automate that authorization window automation. Any help will be appreciated.
    Thank you. Your videos are really good.

  • @parvatia544
    @parvatia544 2 ปีที่แล้ว +1

    Windows cannot find paint . May be we have to give the entire path of the application ?
    Tried this with uipath studio path .. Its fun to explore!! I did it

  • @crazyvenky1258
    @crazyvenky1258 ปีที่แล้ว +3

    I need to thank 3 people for this amazing series
    Rakesh bro 💐
    Rose and scripter 🤣🤣

  • @shawnmcmurtrey8090
    @shawnmcmurtrey8090 ปีที่แล้ว

    Do you have a tutorial video available for how to perform a task in that application and then save the changes to a new output file? Thanks!

  • @renaldosusilo2181
    @renaldosusilo2181 23 วันที่ผ่านมา

    Very helpful!

  • @solomong.gebrhana1204
    @solomong.gebrhana1204 8 หลายเดือนก่อน

    Hello, Thanks but How can I open and then check for updates(if there are updates then update the app) and the exit, is there a .bat file for that?

  • @lorrywalavlogs
    @lorrywalavlogs 3 หลายเดือนก่อน

    Hi Rakesh Sir, I need to open a paint window at particular position like x, y cordinates on the screen, please how ?

  • @chrisstromberg6527
    @chrisstromberg6527 3 หลายเดือนก่อน

    This helped, but I had to put "" in front path inorder to get the shortcut to run.

  • @manasmanish2
    @manasmanish2 2 ปีที่แล้ว +1

    Thanks a lot Rakesh ❤️

  • @manashiremath
    @manashiremath ปีที่แล้ว

    what can i do if i want to create a script to open an app if it gets closed automatically?

  • @nims300
    @nims300 4 หลายเดือนก่อน

    Hi..how can add user account control in batch file

  • @AtariWizard
    @AtariWizard 11 หลายเดือนก่อน

    Completed!

  • @datageek9132
    @datageek9132 9 หลายเดือนก่อน

    Im trying to start this program start /d "C:\"Program Files (x86)"\"Fusion 2.2%"\terminal.exe". I keep getting errors

  • @harikrishnan_g
    @harikrishnan_g ปีที่แล้ว

    Thanks, this worked♥

  • @maxmuster7003
    @maxmuster7003 2 ปีที่แล้ว

    If we can open any application, how to open a Linux application, a MacOS application and a C64 application with a batch file?

  • @escapegulag4317
    @escapegulag4317 5 หลายเดือนก่อน

    big coloured mouse cursor is based bro

  • @dineshranganathan6002
    @dineshranganathan6002 8 หลายเดือนก่อน

    How to change ℅windir to C: pressing single key

  • @filmesindia2988
    @filmesindia2988 ปีที่แล้ว

    ANNAYAAA SQL NOT OPEN CHEK BATCH FILE YOUR VIDEDO NOT USE

  • @lawrences5208
    @lawrences5208 ปีที่แล้ว

    💐 🅿🆁🅾🅼🅾🆂🅼

  • @EbinesarJames
    @EbinesarJames ปีที่แล้ว

    Hello Rakesh,
    Unable to open an application
    My path as
    Start /d "c:\program files\Team Viewer\TeamViewer.exe" TeamViewer.exe
    Other apps works

  • @SangNguyen-gq7wq
    @SangNguyen-gq7wq 11 หลายเดือนก่อน

    how to start program.exe as administrator thanks

  • @subhamayakamila2229
    @subhamayakamila2229 ปีที่แล้ว +1

    C:\MorphoRdServiceL0Soft\ConfigSettings.ini create batch file value change communicationmode 0 to 1...

    • @subhamayakamila2229
      @subhamayakamila2229 ปีที่แล้ว

      @echo off
      set "filePath=C:\MorphoRdServiceL0Soft\ConfigSettings"
      set "tempFilePath=%TEMP%\ConfigSettings.tmp"
      REM Check if the file exists
      if not exist "%filePath%" (
      echo ConfigSettings file not found.
      exit /b
      )
      REM Read the file line by line and replace the desired value
      (for /f "usebackq tokens=*" %%a in ("%filePath%") do (
      set "line=%%a"
      setlocal enabledelayedexpansion
      if "!line:CommunicationMode:0=!" neq "!line!" (
      set "line=!line:CommunicationMode:0=CommunicationMode:1!"
      )
      echo !line!
      endlocal
      echo !line!>> "%tempFilePath%"
      )) && (
      REM Replace the original file with the updated contents
      move /y "%tempFilePath%" "%filePath%" >nul
      echo Value of CommunicationMode changed successfully.
      ) || (
      echo Failed to change the value of CommunicationMode.
      )
      REM Cleanup the temporary file if it exists
      if exist "%tempFilePath%" (
      del "%tempFilePath%"
      )

    • @subhamayakamila2229
      @subhamayakamila2229 ปีที่แล้ว

      Not change communicationmode value 0 to 1 kindly check it