Search found 1165 matches

by ShadowThief
22 Feb 2015 04:05
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 16435

Re: Get JAVA system.out.println in bat?

I didn't have a question. I was answering a question that was addressed to you . This might be confusing. Concerning the screenshot: I saw that the request its wrong: I has to be "Bitte das verschlüsselte Password zum Ent schlüsseln eingeben" In english: pls give the encrypted password for...
by ShadowThief
21 Feb 2015 10:29
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 16435

Re: Get JAVA system.out.println in bat?

The link can be opened fine. We just needed sample output.

Image
by ShadowThief
21 Feb 2015 08:02
Forum: DOS Batch Forum
Topic: Get JAVA system.out.println in bat?
Replies: 17
Views: 16435

Re: Get JAVA system.out.println in bat?

dropbox.com, not .net

And just put the file in the Public folder and click the Share button. You'll get a link that anybody can use to download the file.
by ShadowThief
20 Feb 2015 03:04
Forum: DOS Batch Forum
Topic: Question about performing "chkdsk" from batch at next reboot
Replies: 11
Views: 11835

Re: Question about performing "chkdsk" from batch at next re

You can pass a y to a command like this:

Code: Select all

echo y|chkdisk: /F /V /R /X >D:\tmp\chkdskreport.log
by ShadowThief
18 Feb 2015 23:45
Forum: DOS Batch Forum
Topic: Anagrams Generator
Replies: 7
Views: 5836

Re: Anagrams Generator

Love is there as a side effect of running the entire post through Google Translate. Ame is Portuguese for love, apparently. Thanks, that explains that well. I'm still curious about m. Maybe that was a translation error too. Google Translate says that's exactly what happened, though I can't fathom w...
by ShadowThief
18 Feb 2015 21:52
Forum: DOS Batch Forum
Topic: mailsend script for FreeFileSync
Replies: 72
Views: 56079

Re: mailsend script for FreeFileSync

Replace the set /p first_line line with ( set /p ignore= set /p first_line= )<"C:\FFS\LastSyncs.log" EDIT: And now that I'm not posting from my phone... @echo off timeout /t 5 set subject=[Failed] The search terms were not found ( set /p ignore= set /p first_line= )<"C:\FFS\LastSyncs....
by ShadowThief
18 Feb 2015 21:32
Forum: DOS Batch Forum
Topic: Anagrams Generator
Replies: 7
Views: 5836

Re: Anagrams Generator

Love is there as a side effect of running the entire post through Google Translate.

Ame is Portuguese for love, apparently.
by ShadowThief
16 Feb 2015 10:08
Forum: DOS Batch Forum
Topic: Command Redirection to Output File.
Replies: 2
Views: 4000

Re: Command Redirection to Output File.

%state% == alive The spaces are breaking your code. Batch takes spaces as literal values, so you're checking to see if the value of %state% with a space on the end is equal to a space followed by the word "alive," which it can never be. Remove the spaces and wrap both values in some chara...
by ShadowThief
15 Feb 2015 00:34
Forum: DOS Batch Forum
Topic: Help Needed in Text File
Replies: 6
Views: 5364

Re: Help Needed in Text File

However, if you think there might be instances of "core", "CORE", "CoRe", or some other weird casing going on in the files, you can try

Code: Select all

findstr /m /s /i "core" C:\Sample\*.txt>>output.txt
by ShadowThief
15 Feb 2015 00:29
Forum: DOS Batch Forum
Topic: Help Needed in Text File
Replies: 6
Views: 5364

Re: Help Needed in Text File

If you get no output from that command, then there are no files that contain the word "Core"
by ShadowThief
14 Feb 2015 21:30
Forum: DOS Batch Forum
Topic: Process files one by one
Replies: 16
Views: 11427

Re: Process files one by one

If you like this, you should wait until somebody like Squashman, Aacini, or dbenham comes in here and corrects my code Is the 4-at-a-time thing for speed issues or do the programs have a limit to how many instances can be run at a time? Because this will run truepng on all files, wait for all instan...
by ShadowThief
14 Feb 2015 20:36
Forum: DOS Batch Forum
Topic: Process files one by one
Replies: 16
Views: 11427

Re: Process files one by one

Here is fine. For some reason I was under the impression that the script would wait for the ping to finish, but I didn't take into account that one process that was running long could still be active (when I tested with pings of varying lengths, my testing had the long ping after the short ping, so ...
by ShadowThief
14 Feb 2015 20:00
Forum: DOS Batch Forum
Topic: Process files one by one
Replies: 16
Views: 11427

Re: Process files one by one

I edited my SO post and it should work now, unless truepng does something stupid like delete the folder after processes or something.
by ShadowThief
14 Feb 2015 19:25
Forum: DOS Batch Forum
Topic: Process files one by one
Replies: 16
Views: 11427

Re: Process files one by one

Dude, I responded to your post on Stack Overflow almost 20 minutes ago.