answersLogoWhite

0


Best Answer

The answer is Input Pending

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When a batch is already uploaded to the PDC and it is located in what folder?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

When a batch is uploaded it is moved from the Release Pending queue to what folder?

Release pending


How do you use batch files to copy files from the same folder as the batch file?

Create a command script (or batch file) with the following commands: @echo off copy *.* <folder> Replace <folder> with the desired folder (may be relative to the current folder, or an explicit, fully-qualified folder). Note that the batch file will also be copied. You may alter the wildcard in order to limit which files you wish to copy, or use a series of copy commands to copy individual files, including wildcards where required.


What function would a QC Operator use to stop a batch from being uploaded to the RMS?

unrelease


How To create Directory Using Batch File?

You can make a folder with batch by using the command: md Foldername Example: @echo off md WikiAnswers exit The batch file would make a folder named WikiAnswers, and it would appear on your desktop


Which input role allows you to direct a batch to the QC folder?

Scan Operator


How can you send a email with a batch file?

You can use Telnet. See the active experts guide at the link below. Also you could use a 3rd party tool such as Blat. Blat allows email to be sent from a command line so it can be integrated into a batch file with ease. See the link below.


How do you uninstall apache tomcat 5.5.23?

Just delete the folder, there is no need to uninstall. If you installed the service, you can remove that first by running the "service-remove.cmd" which is located in the BIN folder. This batch file just runs the following command line to remove the service: tomcat5.exe" //DS//Tomcat5


How do you run a batch file automatically at start up?

Probably trying to make a virus. It's simple: Drag the batch file you want to start on startup into the startup folder in All Programs.


How do you make a shortcut for a word on a batch file on notepad like percent random percent?

Use the SET command. For example: SET folder = C:\some_folder CD %folder% DIR *.*


How do you add any file in to startup list with batch file?

You'll need to use the copy command and copy files you want to add in startup into the statup folder via the batch file, but you need to list the file(s) you want to copy and map the location of the startup folder depending on your computer type.


How do you make a batch file run on startup?

Place a shortcut to the batch file in the Start-up folder in the start menu. Note that each user has their own Start-up folder but there's also an all-users start-up folder (the Start-up folder in the start menu is a virtual folder showing the aggregate of both folders). Right-clicking the Start-up folder in the start menu will allow you to "Open" or "Open All Users", where the former applies only to the current user. The user's startup folder can be found in: "c:\users\<username>\appdata\roaming\microsoft\windows\start menu\programs\start-up" Any shortcut placed in this folder will be executed each time you log on, but not for anyone else. The all-users folder is: "c:\programdata\microsoft\windows\start menu\programs\start-up" Any shortcut placed in this folder will be executed regardless of which user logs on. Note that although you can place binary executables, scripts or batch files in the start menu, it's best to use shortcuts and place the executable itself in an appropriate folder of the program files folder.


How do you run an .exe from batch file?

Yes, To run a file in batch, do one of the following: If it is in the same folder, start filename.exe If it is in another folder, start C:\%filepath%\.exe ex: start C:\Windows\system32\cmd.exe