Search found 11 matches

by Rydell
29 Sep 2013 17:23
Forum: DOS Batch Forum
Topic: FTP - in one batch file?
Replies: 40
Views: 31478

Re: FTP - in one batch file?

then verify it was downloaded(but not its integrity)? If so, the following works for me: IF EXIST "C:\Program Files\MyProgram\MyProgram.exe" echo File Downloaded. IF NOT EXIST "C:\Program Files\MyProgram\MyProgram.exe" echo File Not Downloaded. It could be a zero byte file, so t...
by Rydell
29 Sep 2013 17:20
Forum: DOS Batch Forum
Topic: Batch file / command line disable UAC without restart?
Replies: 6
Views: 13945

Re: Batch file / command line disable UAC without restart?

Would there be a way to make it prompt like a normal installer instead of just giving me access denied errors?
by Rydell
29 Sep 2013 00:39
Forum: DOS Batch Forum
Topic: Looking for light live usb that allows win partition editing
Replies: 1
Views: 2340

Looking for light live usb that allows win partition editing

Hey folks, I'm doing the independent contractor thing and I need to quickly distribute some OS changes to a local businesses network without the luxury of an administrative management role. I'm sort of scouring the web and asking on different forums right now, this needs to be done by tomorrow night...
by Rydell
28 Sep 2013 21:27
Forum: DOS Batch Forum
Topic: FTP - in one batch file?
Replies: 40
Views: 31478

Re: FTP - in one batch file?

Just posting my 2 cents. If I'm understanding correctly, you want your batch to include automatically logging into your server, grab the file you want, then verify it was downloaded(but not its integrity)? If so, the following works for me: @ftp -i -s:"%~f0"&GOTO continue open ftp.myse...
by Rydell
28 Sep 2013 21:14
Forum: DOS Batch Forum
Topic: Batch file / command line disable UAC without restart?
Replies: 6
Views: 13945

Batch file / command line disable UAC without restart?

I have a batch with a menu that performs a series of tasks for peoples Win 7 machines and I'm looking for a command to disable the UAC that doesn't require a restart. The simple line I test this with is: IF NOT EXIST "C:\Program Files\Utilities" mkdir "C:\Program Files\Utilities"...
by Rydell
04 Jun 2013 01:30
Forum: DOS Batch Forum
Topic: Using the @ftp -i -s:"%~f0"&GOTO:EOF command in a batch???
Replies: 5
Views: 7121

Re: Using the @ftp -i -s:"%~f0"&GOTO:EOF command in a batch?

Aacini wrote:Try this:

Code: Select all

@ftp -i -s:"%~f0"&GOTO continue
open ftp.filehostingsite.com
username
password
get file.exe
bye

:continue
echo Here Batch file continues!


w00t! This worked, thanks! It's always something friggin simple.
by Rydell
03 Jun 2013 23:27
Forum: DOS Batch Forum
Topic: Using the @ftp -i -s:"%~f0"&GOTO:EOF command in a batch???
Replies: 5
Views: 7121

Re: Using the @ftp -i -s:"%~f0"&GOTO:EOF command in a batch?

Aye, I got it from here:

http://www.dostips.com/DtTipsFtpBatchScript.php

Do you know of anyway to trick it into not closing?
by Rydell
03 Jun 2013 16:15
Forum: DOS Batch Forum
Topic: Using the @ftp -i -s:"%~f0"&GOTO:EOF command in a batch???
Replies: 5
Views: 7121

Using the @ftp -i -s:"%~f0"&GOTO:EOF command in a batch???

Hey folks, I have a problem with the batch file exiting itself after using this command and then attempting to exit ftp with "bye" or "quit". I'd like it to simply continue onto the next line in the batch like normal. Here's what I got: @ftp -i -s:"%~f0"&GOTO:EOF op...
by Rydell
06 May 2013 19:16
Forum: DOS Batch Forum
Topic: Downloading and installing critical and important updates
Replies: 5
Views: 7249

Re: Downloading and installing critical and important update

It's going to be a part of a batch file that does maintenance on the computer. I'm going to give it to family and friends... much easier than trying to walk them through where to point and click. But it's also going to do other things. It would just be nice to have the ability to update too.
by Rydell
04 May 2013 17:31
Forum: DOS Batch Forum
Topic: Downloading and installing critical and important updates
Replies: 5
Views: 7249

Re: Downloading and installing critical and important update

Aye, Windows Update. How would I implement it into a batch?
by Rydell
02 May 2013 17:49
Forum: DOS Batch Forum
Topic: Downloading and installing critical and important updates
Replies: 5
Views: 7249

Downloading and installing critical and important updates

I'd like to implement something into a batch file I'm making that downloads and installs critical and important updates to the pc it's ran on. If it needs to restart for these updates, it would do that as well. I've read some posts (and googled) about this but couldn't find the answer, or read that ...