Search found 82 matches

by Matt Williamson
13 Jan 2021 13:36
Forum: DOS Batch Forum
Topic: login to website in script
Replies: 2
Views: 2926

Re: login to website in script

Yes, that is what I figured out earlier. There were only a couple of hits and they just said use telnet which you said was really stupid and I agree.
by Matt Williamson
13 Jan 2021 07:52
Forum: DOS Batch Forum
Topic: login to website in script
Replies: 2
Views: 2926

login to website in script

Since search is broken, I wonder if anyone can help me with this. I have an internal website on my corporate network that I want to automate logging into and searching a specific field, extracting something from it and writing to an excel spreadsheet. It has to be in IE11. The site has a lot of Java...
by Matt Williamson
13 Jan 2021 07:38
Forum: DOS Batch Forum
Topic: Search broken
Replies: 4
Views: 4448

Re: Search broken

Thanks Steffan
by Matt Williamson
12 Jan 2021 13:10
Forum: DOS Batch Forum
Topic: Search broken
Replies: 4
Views: 4448

Search broken

Is it just me or is the search broken for anyone else?
by Matt Williamson
27 Feb 2018 12:31
Forum: DOS Batch Forum
Topic: Store windows positions
Replies: 11
Views: 9220

Re: Store windows positions

I can't get to these from work. I'll have to take home an encrypted drive and grab them from home and hope they aren't blocked when I try to run them. Thanks for your contribution though.
by Matt Williamson
27 Feb 2018 12:30
Forum: DOS Batch Forum
Topic: Store windows positions
Replies: 11
Views: 9220

Re: Store windows positions

gustavo.lago wrote:
27 Feb 2018 11:53
I think that is not possible with DOS Batch.

Maybe this: https://github.com/adamsmith/WindowsLayoutSnapshot
This doesn't work in Windows 10. I tested it and all of the forks. Thanks for your contribution though.
by Matt Williamson
27 Feb 2018 12:29
Forum: DOS Batch Forum
Topic: Store windows positions
Replies: 11
Views: 9220

Re: Store windows positions

That's not possible using Batch. I have a rough idea how to manage it using C and Windows API but I don't want to reinvent the wheel. Try to find an existing 3rd party. Most likely you're not the only one who wants to restore the window positions ... Steffen Hi Steffan Thanks for your reply. I look...
by Matt Williamson
27 Feb 2018 08:44
Forum: DOS Batch Forum
Topic: Store windows positions
Replies: 11
Views: 9220

Store windows positions

I'm not sure if this is possible or has been previously covered. I've done some searching but haven't found anything yet. I have multiple monitors at work. 2 24" and the display from my laptop. I use all 3 of them when I'm working but I have to take my laptop with me when I'm out in the field. When ...
by Matt Williamson
29 Aug 2016 11:15
Forum: DOS Batch Forum
Topic: Add additional text to existing output file.
Replies: 2
Views: 3072

Re: Add additional text to existing output file.

Thank you Steffen. This helped me very much.
by Matt Williamson
29 Aug 2016 07:51
Forum: DOS Batch Forum
Topic: Add additional text to existing output file.
Replies: 2
Views: 3072

Add additional text to existing output file.

Awhile ago, Foxidrive helped me with some code to output some data from a file into another and show it based on a couple of parameters. The following is that code with a few modifications. @echo off setlocal enabledelayedexpansion set "xmlpath=\\server\developer\inetpub\Ftproot\XMLs" if e...
by Matt Williamson
31 May 2016 12:09
Forum: DOS Batch Forum
Topic: Align text in output file
Replies: 13
Views: 12121

Re: Align text in output file

Thank you to everyone who responded. Much appreciated.
by Matt Williamson
26 May 2016 08:28
Forum: DOS Batch Forum
Topic: Align text in output file
Replies: 13
Views: 12121

Re: Align text in output file

The first example was Dave's code on SS64. I'm playing with it now to figure out how it works but I'm not making much headway.
by Matt Williamson
26 May 2016 06:54
Forum: DOS Batch Forum
Topic: Align text in output file
Replies: 13
Views: 12121

Align text in output file

I have the following code that Foxidrive helped me with awhile ago and I want to have the output file right/left aligned. I have found 2 examples so far that seem to fit the bill but I can't figure out how to apply them to my code. Here is my code. @echo off setlocal enabledelayedexpansion set "...
by Matt Williamson
25 May 2016 07:45
Forum: DOS Batch Forum
Topic: Calling functions from a library
Replies: 5
Views: 6687

Re: Calling functions from a library

Thank you everyone that responded. I appreciate it.
by Matt Williamson
24 May 2016 12:48
Forum: DOS Batch Forum
Topic: Calling functions from a library
Replies: 5
Views: 6687

Calling functions from a library

I'm sure this has been discussed before so feel free to link me to topics. I've just been reading for a few hours and I'm not getting anywhere close to finding what I want to do by searching "Batch library" I have a batch file that I store all of my frequently used functions in and I just ...