answersLogoWhite

0

You can use the run as command in the batch file if you are using windows xp and i think with wondows 2000, unfortunatly it is open text so you have to use another programme to do that.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

How do you make a batch file to move files?

in your batch file type: Move (the directory or folder and the file) space (the directory you want it in) example: move "C:\Users\%username%\Desktop\text.txt" "C:\Users\%username% You can change the %username% to your username but %username%is the variable for your username


How do you change username and password on Skype?

It is not possible to change your user name, BUT you may login and take a new username and password. If you know of and are satisfied with you present username, you may change the password quite easily by ticking the 'File column' within the Skype window and going to 'Change My Password'.


How do you use Batch File in Microsoft Excel to change the file names of multiple files?

click file, then preferences, next click multiple then enter


How do you download off web version on minecraft?

1. Download beta(Not in browser, go to minecraft.net then press download beta, then press download, then run the .exe file. 2. Enter your username and password, then press login 3. Update, if it asks you to. 4. Close the game window. The next time you want to play offline, just enter random username and random password, then press play offline.


How do you reset your password on Lama Market?

If you have forgotten the password or user name for your Lama Market account, follow these steps:1. Go to lamamarket site and click on "Login" at the top right of the screen.2. Below the login form, click on the applicable link "Forgot Your Password?" (go to step 3a) or "Forgot Your Username?" (go to step 3b).3a. (if forgot password)Enter the e-mail address for your account. A verification token will be sent to you. Once you have received the token, you will be able to choose a new password for your account.3b. (if forgot username) Enter the e-mail address associated with your User account. Your username will be e-mailed to the e-mail address on file.


What are the enter password for the encrypted file cityville cheat tool?

Twad21sdasij


What is the extension of batch file?

the extension of a batch file is ".bat"


Can a file with a weird extension but with batch file code be read using another batch file?

Nope, the format of a file is a vital part of a successful batch file. Even if a file with an unknown file format contains working batch file code in it, a batch file will still not be able to read it because of its foreign file extension. If you want the batch file to be able to read the foreign file, then you can set it to rename the mutated file to .bat format and then read it for it to work. Example: @Echo off REN File.Foreign File.bat CALL File.bat exit


What is a batch file?

A batch file is the text file that contains a series of commands that MS-DOS carries out. A batch file is created by COPY CON command after specifying a file name by using extension as .BAT in DOS mode.


How can you mask your password when typing in a batch file?

Natively, you can't replace characters typed into a batch file from the keyboard with asterisks or any other character to mask what is being typed. You will have to download a special program and run that alongside CMD.exe in order to have this functionality.


How can you give the password in ms word?

Assuming you mean protecting a file with a password... Open the file, then select File then Properties - in the new window that opens, select the Security tab, and click Protect. Enter the same password in both boxes, and click OK. When you next open the file, you will be prompted for the password. I have used the password function on a number of files and find it a great security measure.


What is the source code for sample login by php language?

This is completely basic login script. you'll definitely have more users(so user database in mySql or a file) and also security and session control stuffs. <?PHP if(isset($_POST['submit'])) { $userName=trim($_POST['userName']); $passWord=$_POST['passWord']; if($userName=="yourName" and $passWord=="yourPassword") { //Contents for logged in user goes here echo 'You are logged in to view protected contents!'; } } echo '<form method="post"> Username : <input type="text" name="userName" /> Password : <input type="password" name="passWord" /> <input type="submit" name="submit" value="Login"> </form>'; ?>