Forum     

Go Back   Digit Technology Discussion Forum > Bandwidth Wastage > Chit-Chat
Register FAQ Calendar Mark Forums Read

Chit-Chat General discussions about anything that doesn't fit into the other sections to be had here


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 05-04-2009, 02:46 PM   #1 (permalink)
Right Off the Assembly Line
 
Join Date: Mar 2009
Posts: 4
Default Need a lilttle help using the command prompt!


Does anyone know how to auto compete a script using the command prompt in windows?

After i type a command line in Command prompt it asks me
"Are you sure you want to continue <Y/N>:"
How can i auto type yes, Which is the autocommand line for "Y"?
drzpapi1985 is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 05-04-2009, 03:44 PM   #2 (permalink)
lost in my world
 
yippee's Avatar
 
Join Date: Mar 2009
Posts: 90
Default Re: Need a lilttle help using the command prompt!

search for batch scripting in google.....
yippee is offline  
Old 05-04-2009, 08:04 PM   #3 (permalink)
Right Off the Assembly Line
 
Join Date: Mar 2009
Posts: 4
Default Re: Need a lilttle help using the command prompt!

I did do many searches but i just cant seem to find the answer for my question either on Google or on Yahoo..
drzpapi1985 is offline  
Old 05-04-2009, 08:18 PM   #4 (permalink)
lost in my world
 
yippee's Avatar
 
Join Date: Mar 2009
Posts: 90
Default Re: Need a lilttle help using the command prompt!

here you go....
Quote:
/y (=yes)
source
yippee is offline  
Old 05-04-2009, 09:17 PM   #5 (permalink)
Right Off the Assembly Line
 
Join Date: Mar 2009
Posts: 4
Default Re: Need a lilttle help using the command prompt!

Thanks buddy but that command doesnt work for me... This is the batch file i tried to run:

vsp1cln.exe

/y (=yes)

Exit

vsp1cln.exe cleans about 200mbs from updates.
What i want is make vista sp1 permanent with just one batch file.
drzpapi1985 is offline  
Old 05-04-2009, 09:19 PM   #6 (permalink)
Davislav Ivanuiz!!!
 
Kl@w-24's Avatar
 
Join Date: Apr 2004
Location: Pune
Posts: 1,396
Default Re: Need a lilttle help using the command prompt!

Umm... Try this:

Code:
vsp1cln.exe /y
exit
Dunno if it'll work, just following the standard procedure.
__________________
I was here when the forum's swear filter kept bleeping out the word 'FUNK'. :crazy::censored::eeksign:

www.abhi247.com | The Photohblog A Little Lunacy! [v3]

Flickr!
Kl@w-24 is online now  
Old 05-04-2009, 09:22 PM   #7 (permalink)
lost in my world
 
yippee's Avatar
 
Join Date: Mar 2009
Posts: 90
Default Re: Need a lilttle help using the command prompt!

Quote:
Originally Posted by Kl@w-24 View Post
Umm... Try this:

Code:
vsp1cln.exe /y
exit
Dunno if it'll work, just following the standard procedure.
that one is correct
yippee is offline  
Old 05-04-2009, 09:33 PM   #8 (permalink)
Right Off the Assembly Line
 
Join Date: Mar 2009
Posts: 4
Default Re: Need a lilttle help using the command prompt!

I tried that command line before but when i double click on the batch file it just opens and closes very quickly, so i dont think it did what it was suppose to..
drzpapi1985 is offline  
Old 05-04-2009, 09:39 PM   #9 (permalink)
Davislav Ivanuiz!!!
 
Kl@w-24's Avatar
 
Join Date: Apr 2004
Location: Pune
Posts: 1,396
Default Re: Need a lilttle help using the command prompt!

Alright then, open up your command prompt and type the path to 'vsp1cln.exe' into it, or simply drag the executable into the cmd window. Then, give a space and type /? after it and hit enter. That should give you the parameters that the executable can take. The command should look something like this:

Code:
<path to executable>\vsp1cln.exe /?
__________________
I was here when the forum's swear filter kept bleeping out the word 'FUNK'. :crazy::censored::eeksign:

www.abhi247.com | The Photohblog A Little Lunacy! [v3]

Flickr!
Kl@w-24 is online now  
Old 05-04-2009, 10:58 PM   #10 (permalink)
Right Off the Assembly Line
 
Join Date: Mar 2009
Posts: 4
Default Re: Need a lilttle help using the command prompt!

Ok, this is what i typed on the command prompt!
<C:\Windows\System32>\vsp1cln.exe /?
but it says Access Denied.

I even tried by running the command prompt as the administrator but no luck.
drzpapi1985 is offline  
Old 05-04-2009, 10:59 PM   #11 (permalink)
Davislav Ivanuiz!!!
 
Kl@w-24's Avatar
 
Join Date: Apr 2004
Location: Pune
Posts: 1,396
Default Re: Need a lilttle help using the command prompt!

^ ^ ^ remove the < and >. It should look like this:

Code:
C:\Windows\System32\vsp1cln.exe /?
__________________
I was here when the forum's swear filter kept bleeping out the word 'FUNK'. :crazy::censored::eeksign:

www.abhi247.com | The Photohblog A Little Lunacy! [v3]

Flickr!
Kl@w-24 is online now  
Old 05-04-2009, 11:04 PM   #12 (permalink)
Sami Hyypiä, LFC legend
 
Liverpool_fan's Avatar
 
Join Date: Jun 2007
Location: Нью-Дели
Posts: 2,138
Default Re: Need a lilttle help using the command prompt!

IIRC, you have to use redirection for your keyboard input to a file, but I don't remember the command. Let me search for it....
-----------------------------------------
Posted again:
-----------------------------------------
I think this will work.I don't remember/know whether it will work without creating the file.
Try this:
Create a text file file1.txt and have the data in it as 'Y'. (without the quotes)
Make sure you have the file in the same directory as the program.
Now type:
Code:
vsp1cln.exe < file1.txt
Save it as a batch file. Does that work?

Keep in mind this is an incredibly hackish(read:lame) way to do this, if it works that is...
__________________
Experience true education in Computer Science - http://www.udacity.com | http://www.coursera.org

Spoiler:
Read before asking / messaging any moderator for any query: FAQ + answers for new members

Read all the sticky threads before asking any type of query. Most basic questions are answered in those.
Don't use forum for chatting. Visit http://webchat.freenode.net/?channels=krow, enter nick and connect.

Last edited by Liverpool_fan; 05-04-2009 at 11:14 PM. Reason: Automerged Doublepost
Liverpool_fan is offline  
Old 05-04-2009, 11:21 PM   #13 (permalink)
Right Off the Assembly Line
 
Join Date: Mar 2009
Posts: 4
Default Re: Need a lilttle help using the command prompt!

C:\Windows\System32\vsp1cln.exe /?
does not work for me, it shows "the parameter is incorrect" and i'm sure that the vsp1cln.exe file is located in the the system32 folder.

Liverpool_fan
I followed every one of your steps but it doesnt work for me also...

I guess this isnt possible.

Last edited by drzpapi1985; 06-04-2009 at 07:44 PM.
drzpapi1985 is offline  
Old 09-04-2009, 01:12 AM   #14 (permalink)
Right Off the Assembly Line
 
Join Date: Mar 2009
Posts: 4
Default Re: Need a lilttle help using the command prompt!

Never mind guys thanks for all your help anyways... I just found out which is the correct command line.
vsp1cln.exe /quiet

drzpapi1985 is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
Latest Threads
- by trublu
- by soumya
- by Tenida
- by tv6952

Advertisement




All times are GMT +5.5. The time now is 05:52 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2