Windows 10: Batch File/ Outdated Application

Discus and support Batch File/ Outdated Application in Windows 10 Software and Apps to solve the problem; So I have this old .application file that was originally on the companies computers that was written for Windows 7. What this application did was, when... Discussion in 'Windows 10 Software and Apps' started by FrTSmith, Oct 21, 2020.

  1. FrTSmith Win User

    Batch File/ Outdated Application


    So I have this old .application file that was originally on the companies computers that was written for Windows 7. What this application did was, when ever a fax came in (we have faxes that are sent to a folder in PDF format) it would activate the application and pop open a window to notify the user of the fax. Hopefully that part was explained well enough.

    Is there a type of batch file that I can write to mimic the same function? and would anybody be able to walk me through the code? or point me in the direction of a article/blog or video explaining it. I am working in Windows 10.

    Thank you.
    Respectfully,
    Francis

    :)
     
    FrTSmith, Oct 21, 2020
    #1
  2. oily_17 Win User

    Batch Files Knowledge Base

    Don't use batch files very much but one I find useful is for creating a list of files in a directory.
    Just copy the text below into Notepad and save as Filelist.bat

    dir /a /-p /o:gen >filelist.txt

    When you run it from a folder it will create a Filelist.txt file,in the same folder, that lists all the files in that folder.Useful when you are too lazy to type all the files out yourself.
     
    oily_17, Oct 21, 2020
    #2
  3. Batch Files Knowledge Base

    Very nice and usefull thanks for contributing.
     
    AphexDreamer, Oct 21, 2020
    #3
  4. Steevo Win User

    Batch File/ Outdated Application

    Batch file to ping network

    No, batch files are extremely easy.

    A "If" requires three extra steps.

    Code is not how much you can put in, but how lite can you make it and still perform the functions.

    So

    @ echo off


    ping 1.4.1.4 >a.txt

    findstr /m "Request timed out" a.txt
    if %errorlevel%%==0 (
    echo Save our nets!!!
    )

    pause
     
    Steevo, Oct 21, 2020
    #4
Thema:

Batch File/ Outdated Application

Loading...
  1. Batch File/ Outdated Application - Similar Threads - Batch File Outdated

  2. Batch File

    in Windows 10 Software and Apps
    Batch File: Hi, I am trying to create a batch file to determine whether a user account is signed on.I don't have enough experience to get it to @Echo it worked. Any advice please.Batch file:REM Query whether user SBackup is active@echo onsetlocal enabledelayedexpansionset...
  3. Outdated c++ files

    in Windows 10 Gaming
    Outdated c++ files: Hi, I have no idea if this is the right place to post this but I'm a bit stumped here. I have 3 outdated c++ files; two dated 7/22/2020 and one dated 1/26/2021. I want to remove or update them but have no idea how to update them or if it is safe to remove them. Any help is...
  4. Outdated c++ files

    in Windows 10 Customization
    Outdated c++ files: Hi, I have no idea if this is the right place to post this but I'm a bit stumped here. I have 3 outdated c++ files; two dated 7/22/2020 and one dated 1/26/2021. I want to remove or update them but have no idea how to update them or if it is safe to remove them. Any help is...
  5. Outdated c++ files

    in Windows 10 Software and Apps
    Outdated c++ files: Hi, I have no idea if this is the right place to post this but I'm a bit stumped here. I have 3 outdated c++ files; two dated 7/22/2020 and one dated 1/26/2021. I want to remove or update them but have no idea how to update them or if it is safe to remove them. Any help is...
  6. Batch Files

    in Windows 10 Gaming
    Batch Files: How do i make it that my batch file puts itself in to startup https://answers.microsoft.com/en-us/windows/forum/all/batch-files/6156404d-20d4-4f58-bee5-14629dbf7b10
  7. Batch Files

    in Windows 10 Software and Apps
    Batch Files: How do i make it that my batch file puts itself in to startup https://answers.microsoft.com/en-us/windows/forum/all/batch-files/6156404d-20d4-4f58-bee5-14629dbf7b10
  8. Create batch files with Batch?

    in Windows 10 Software and Apps
    Create batch files with Batch?: How to create Batch and VBS files with Batch? So I write a batch file which I then convert to exe that creates new folders in a certain directory and then creates batch and VBS files with a certain content and saves them in the created folder. So it's similar to a program...
  9. Batch Files

    in Windows 10 Network and Sharing
    Batch Files: I want to make a batch file that will copy a specific folder from my USB stick to a folder on C:\ I want to know if it's possible to make a batch file that will take the folder from my USB drive no matter what the drive's letter is....
  10. Batch File

    in Windows 10 Support
    Batch File: I need a batch file to create a folder with sub folders. The sub folders will be named the current date, they will go in a folder on c drive. For example we can call the folder test and it would be in documents on c drive. Every time we run the batch file it would create a...