Advanced Batch Converter V7 9 Final Downloadsarah Smith



First off, this is a single windows .bat file that I have written to do advanced batch scripting the easy way, meaning it's mostly a series of functions you can call from the script or within other functions for extremely modular code. Before you get all bent out of shape by my choice of words ('easy, modular'), when I say this is advanced I mean for Windows .bat files, one of the worlds worst scripting languages, but it works on all windows versions so it's ideal for things like autorun, autoplay, custom startups, usb drives, etc.. If you are looking for information on how to use and program windows .bat files to do anything cool, this is the right place! I tried my best to mimic linux shell-scripting, so it's likely different than other batch files you have seen.

» Advanced Batch Converter v7.02 » OX PDF Merger v2.1.2.24 » Apex MPEG VCD DVD Converter v8.45 » Internet Download Manager v6.12.25 » Boilsoft Video Converter v3.02.3 » VSO ConvertXtoDVD v4.1.20.0 » EMCO Network Malware Cleaner v4.7.15.115 » Company of Heroes: Tales of Valor » Medal of Honor » Desktop Poet for Windows v1.0.1. Rename on import, convert, or tag hundreds of files at a time with sophisticated batch processing, or use powerful search features to instantly find and retrieve your images. Edit your images in Capture One with its state-of-the-art editing tools and keep track of your changes with version control, while folder watching keeps your catalogs up.

Batch File IDE and Script Source

My favorite tool (and I've tried sooo many) for editing most Windows files and especially .bat files is the free and open-source Notepad++. Set that up and you will have a color-syntax-highlighted editor for Batch Scripting that works very very well.

The next thing to do is download the source code, which includes comments and formatting I had to remove for this online article. Then rename from .txt to .bat and open in your IDE/text-editor of choice.

Quick Batch File Example

This is a simple batch file named ping-check.bat that I use when rebooting remote servers. The reboot is issued from an SSH session and causes the server to go down and then come back up. When the server goes down the network goes down too so I fire this script up to continually ping the remote server until it responds, at which point I can ssh back in.

One of the first hacks for batch files is line 1, the PUSHD command cd's the scripts working environment to the directory of the script itself.

Super-hero like even

Just added this as an after thought, moving the main example further down this page. This is an easier file to understand the scope of. It effectively creates SSH-encrypted SOCK5 tunnels that stay connected and auto-reconnect if the link goes down. I wanted to try and write a pure batch method to do that. I wrote this to run automatically from a USB key so that I could keep my tools with me portably. The thing of this script that is the most revolutionary is the method it uses to create auto-reconnecting SSH-encrypted SOCKS5 tunnels using the windows SYSTEM account to do it all in the background with plink.exe. The hack to run it as a system account is by using the built-in AT command to run interactively, which lets you interactively do whatever you want as the builtin NT AUTHORITY/SYSTEM account. The other part I am proud of with this is how lean I got the code, specifically how lean the function is that creates the at job to run every 5 minutes, while still doing connection-testing, all by parsing the cmd.exe processors builtin in DATE and TIME variables. Do a google search for 'windows batch file date and time' and you will appreciate just how lean this sucker is.

Advanced batch converter v7 9 final download sarah smith married

Almost forgot, check out the ways to keep a plink.exe (putty.exe for cmd.exe) SOCKS5 tunnel hidden and safe and continuously connected to a remote server in minimal lines od code. This was a fun one to work on! Enjoy (and remember this is just the warm-up example to glance at).

Advanced Batch File

This is the main batch file example which you can download here. Other than some minor changes this is the actual script I use at work when I logon to my PC. The first thing it does is mount an encrypted TrueCrypt Drive where all of my files and settings are located. It also starts a putty session named '1' that I configured to start a few encrypted tunnels and socks proxies so that my email Thunderbird and Website IDE Dreamweaver and other network apps can communicate 100% encrypted and my real location becomes hidden (thanks socks!).

I might come back later and add comments if I get any kind of response for this article, and because it's such a unique and low-traffic topic, I will try to answer any questions added with the comment form.

Starting the Script

The first line is of my own design and is perhaps the coolest hack in the script. I use this 1 line to start pretty much all of my .bat files.

SCRIPT VARIABLES

These are all local to this script thanks to the SETLOCAL above, so they won't exist outside the scripts execution environment.

MAIN PROGRAM EXECUTION

This is where the main code starts, note how small it is thanks to the use of functions (labels/call/goto). Read the comments in this area (start with :: or REM ) to see the extent of this script. The gold is in the functions.

Exit Script

This is the last line executed in the Main, it forces the script to exit cleanly at this point, otherwise the functions below would all get executed. This is what allows the use of all the functions below. I end all my scripts MAIN with this.

SCRIPT FUNCTIONS

Now then, onto the MEAT of the script, all the functions. These functions are designed for global use in other batch files, so that the only modification when you make a new batch is the above variables and main execution.. If you know much about batch files you will realize that creating these functions was a very painful process in some cases.. I freakin hate windows! Anyway, enjoy!

CRYPTMOUNT - mounts a truecrypt container and returns to CALLer. On fail, quit

RUNONE - Starts one instance of executable after verifying it exists and is not already running.

Advanced batch converter v7 9 final download sarah smith attorney

ADMINRUNONE - Runs %1 with admin rights IF neccessary

CHECKUSERVALID - checks that defined username equals %ADMINUSER% or %RUNUSER%, then returns to CALLer

SETPROMPT - sets prompt, then returns to CALLer

BEEP - beeps once, then returns to CALLer

The character after the echo is the actual BEL char, so unless you have my source file, you will need to copy a literal BEL char here to make it beep.

MSETCOLOR - SET colors for screen, then returns to CALLer

MSETCONSOLE - sets the cols and lines of current screen buffer, then returns to CALLer

PARAMTEST - tests params, then returns to CALLer

PARAMTESTHELP - show params help, then returns to CALLer

EXAMINEFILE - FINDs useful strings in file, then returns to CALLer

ADMINSHELL - sets prompt, then returns to CALLer

EXISTORQUIT - checks %~1 exists, IF it does returns to CALLer, otherwise, quit

RR - IF file %1 EXISTs then :MT 'Removing %1' then :MF, then ( or IF %1 not EXISTs) returns to CALLer

LOCKDOWN - locks workstation, then returns to CALLer (pointless)

Advanced Batch Converter V7 9 Final Downloadsarah Smith

SHUTDOWNIN - initiates shutdown, then returns to CALLer (pointless)

LISTSERVICES - lists services, then returns to CALLer

TASKS - Advanced Tasklisting

Advanced Batch Converter V7 9 Final Download Sarah Smith Instagram

SPEAK - Speak text

MF - SLEEPs for 1 second, then prints out completed message, followed by 2 blank lines, then returns to CALLer

Advanced Batch Converter V7 9 Final Download Sarah Smith Facebook

MM - prints blank line, L1, changes title of the interpreter window to %~1, prints >>> %~1..., L2, blank line, then returns to CALLer

MT - prints blank line, L1, changes title of the interpreter window to %~1, prints >>> %~1..., L2, blank line, then returns to CALLer

MP - Print Output, then returns to CALLer

MP3 - ECHO %~1, speak %~1 with nircmd.exe, then returns to CALLer

MDYE - exit script with message %~1, then returns to CALLer

MKILL - exit cmd processor with message %~1

EOF: Thoughts

Advanced Batch Converter V7 9 Final Download Sarah Smith Attorney

So what did you think? I have around 20 batch scripts that utilize these and other functions to do all sorts of cool things. One takes a screenshot of my desktop every 10 minutes and saves it for a real-cool archive of my activity. Another lets me edit a boot.ini file with 1 command.. And another runs when I insert a USB drive to automatically mount a truecrypt volume and create SSH tunnels in the background by using Plink, AT, and the runas.exe command.

If you want to program, please use linux... If you need to write a Windows batch file, I hope this helps.


Advanced Batch Converter 7.3 Full Version

Advanced Batch Converter does exactly what its title suggests, allowing you to easily convert multiple graphics files at the click of a button. More than that, you can also edit images directly in Advanced Batch Converter, to produce a variety of effects (resize, rotate, flip, mirror, crop, filters, watermarks, morphing effects, color enhancements etc).
The program supports 44 file formats to which you can convert: bmp, dib, rle, gif, jpg, jpeg, tif, tiff, png, pcx, pcc, dcx, tga, wmf, emf, ico, pbm, jng, jp2, j2k, ps, eps, pdf, wbmp, psd, wap, raw, pcd, cin, dot, dpx, fits, fpx, hdf, miff, pict, sgi, sun, vicar, viff, hdp, wdp, xbm and xpm.
The original file can be in practically any current file format, as Advanced Batch Converter has support for over 180 file types: bmp, rle, dib, rl4, rl8, sys, gif, giff, jpg, jpeg, jpe, jif, jfif, jfi, thm, j, png, jng, mng, tif, tiff, fax, g3f, g3n, tim, g3, xif, tga, targa, tar, afi, pix, bpx, psd, pdd, pcd, wmf, emf, psp, pcc, pcx, scr, dcx, jp2, j2k, jpc, jpx, j2c, pic, cel, icb, vda, win, vst, tpic, tpi, cut, pal, rgb, rgba, sgi, bw, int, inta, iri, iris, rla, rpf, ppm, pbm, pgm, pxm, rppm, rpgm, rpbm, rpxm, rpnm, rpp, rpg, rpb, rpx, rpn, ico, cur, ani, eps, 411, wbmp, wbm, wap, crw, cr2, nef, raw, pef, raf, x3f, bay, orf, srf, mrw, dng, dcr, dicom, dcm, dic, jbg, jbig, jbi, bie, avs, cin, dot, dpx, fits, fit, fpx, hdf, mat, miff, mif, mtv, palm, pal, pcl, pict, pix, pwp, sun, svg, ttf, vicar, vic, viff, vif, xbm, xcf, arw, bmq, cs1, dc2, erf, fff, hdr, ia, k25, kc2, kdc, mdc, mos, pxn, rdc, sr2, hdp, wdp, sti, xpm, pdf, eps, ps, ai, ps2, ps3, eps2, eps3, epsi, epsf, epi, ept, avi, mpeg, mpe, mpg and wmv.
The actual conversion process is extremely fast, with the whole process being over in the blink of an eye.
The user interface couldn't be any easier, making use of icons wherever possible and keeping buttons to a minimum. This results in an uncluttered layout that allows the user to concentrate on the job at hand, rather than working out what everything does.
All images can be viewed directly inside the program, with various details about the image being displayed, such as file size, image size and image name. Images can also be printed directly from within Advanced Batch Converter.
SmithAlong with the ability to batch convert you can, of course, carry out single conversions. It also includes full support for carrying out conversions (batch or otherwise) through the use of Command Line input. This enables you to carry out conversions without the use of the GUI, and to execute these from within other programs.
Image conversion is becoming increasingly essential in today's multimedia world, and this is a powerful and cheap option to carry out the task.
Download:Batch
TusFiles
Download Advanced Batch Converter 7.3.rar (6.780 KB)
Download Key Advanced Batch Converter.rar (225 KB)

Share :

FacebookGoogle+Twitter