Announcement

Collapse
No announcement yet.

How to prevent nvflash64 to auto close window?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to prevent nvflash64 to auto close window?

    I want to do command "nvflash64 --version"

    but this stupid window is always auto close so i cannot read what is output.

    anybody know solution or i must go to dos?

    next question is why i cannot flash different vendor bios even when i have patched nvflash
    Last edited by ktmmotocross; 06-01-2023, 02:40 AM.

    #2
    Re: How to prevent nvflash64 to auto close window?

    Such behaviour may happen while typing the command in the non-Administrator cmdline window.
    Then nvflash is opened in NEW administrator window that closes immediately after execution.

    There is 2 ways to workaround this:
    • via .bat file:
      1. use notepad++ or similar to create helper.bat file in the folder near nvflash64.exe
      2. add there a command you want and then a pause command in 2nd line, like
        Code:
        nvflash64 --version
        pause
      3. right click this bat-file and select run it as administrator
    • via cmd line opened as administrator:
      1. put nvflash in a folder with simple name in the drive C:, like C:\tools
      2. Locate cmd.exe in start menu. Right-click it and run as administrator. It will open admin command prompt.
      3. go to ypur folder with command
        Code:
        cd c:\tools
      4. run any nvflash64 commands from there. The window should staty in place after execution

    Comment

    Working...
    X