Main > Free Download Search >

Free 11.0 software for windows

11.0

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 96
CPAU 1.11.0

CPAU 1.11.0


A command line tool for starting process in alternate security context. more>>
A command line tool for starting process in alternate security context. CPAU application was designed to be a command line tool for starting process in alternate security context.
Basically this is a runas replacement. Also allows you to create job files and encode the id, password, and command line in a file so it can be used by normal users.
<<less
Download (204KB)
Added: 2007-08-22 License: Freeware Price:
819 downloads
TCC/LE 11.0

TCC/LE 11.0


TCC/LE is a powerful replacement for CMD.EXE, the Windows command processor. It makes your command prompt far more flexible and much easier to use, supports existing CMD.EXE commands and batch files and adds thousands of new features. more>>
If you are frustrated by the limitations of the Windows command prompt, TCC/LE is the one tool you truly need. By adding thousands of features that Microsoft omitted, TCC/LE makes the command line easy to use, giving you more power and flexibility than you ever imagined. TCC/LE replaces CMD.EXE, the Windows command processor, and adds features such as extensive context-sensitive online help, plugins, aliases for commonly used commands, a powerful command line editor, history recall, filename completion (even across a network), popup command and directory history windows, and extended directory searches that can take you to any directory on your system by entering only part of its name. TCC/LE expands the Windows file handling commands, giving you the ability to copy, move, delete, or list multiple files with a single command . You can select or exclude files from any command by their date, time, size, and extended wildcards for extraordinary flexibility. Batch file users will be amazed at the power and speed TCC/LE adds to Windows batch files, with an array of new batch commands. The extended batch language in TCC/LE includes subroutines, DO statements, IF THEN ELSE statements, SWITCH statements, error handling, more than 110 internal commands and over 240 internal variables. If you dont like the default behavior, TCC/LE allows you to adjust its configuration either through interactive dialogs or on the command line. And if you want even more power, try our Take Command professional version, which adds FTP and HTTP support, an interactive batch debugger, and more than 50 additional internal commands and 150 additional internal variables and variable functions.

System Requirements: 128Mb RAM, 10MB free disk space

<<less
Download (2.87MB)
Added: 2009-11-03 License: Freeware Price: $0
downloads
Amaya 11.0.1

Amaya 11.0.1


Amaya is a Web editor, i.e. a tool used to create and update documents directly on the Web. more>> <<less
Download (11.00MB)
Added: 2008-12-26 License: Freeware Price:
220 downloads
aTunes 1.11.0

aTunes 1.11.0


Manage your large music collection with this iTunes alternative. more>>

aTunes 1.11.0 is the right choice if you want to manage your large music collection with this iTunes alternative.It is a fully-featured audio player and manager, with ripping and encoding tools included. aTunes is coded in Java programming language (Java 5), using Swing, making it a highly portable piece of software.

Enhancements :

  • Unspecified updates, enhancements, or bug fixes.
<<less
Download (14.7KB)
Added: 2008-11-29 License: Freeware Price:
832 downloads
Puzzle 2.11.0

Puzzle 2.11.0


play a sliding puzzle game online more>> This is the classic sliding puzzle game, also known as Fifteen. In this game you move the tiles around until you recover the original picture. Theres only one empty space and you can only move a tile into this empty space. You can also choose your own picture when playing.<<less
Download (340k)
Added: 2008-11-07 License: Freeware Price:
417 downloads
BackEdit 11.0

BackEdit 11.0


BackEdit - Scriptable programmers editor with syntax highlighting; database editor, xml edit more>> <<less
Download (1.21MB)
Added: 2006-07-14 License: Freeware Price:
1234 downloads
cc65 2.11.0.1

cc65 2.11.0.1


A complete cross development package for 65(C)02 systems, including a powerful macro assembler, a C compiler, linker, librarian more>>
A complete cross development package for 65(C)02 systems, including a powerful macro assembler, a C compiler, linker, librarian cc65 is based on a C compiler that was originally adapted for the Atari 8bit computers by John R. Dunning. The original C compiler is a Small C descendant but has several extensions, and some of the limits of the original Small C compiler are gone.
The complete package consists of the compiler, an assembler, a librarian, a linker, and a C library for the Atari. There are some packages on the net that claim to be adapted as a crosscompiler for DOS or Unix, but was not able to get them working correctly.
Because I wanted a C compiler for my CBM machines, I took the Atari compiler and started a rewrite. Until today, I have rewritten large parts of the compiler, all of the library, completely replaced the assembler, the linker and the librarian, and added a frontend to simplify use. All changes have been done with portability in mind, so porting to new 6502 architectures should be quite easy.
The compiler is almost ISO C compatible, so you should be able to translate many sources from other systems.
There may be other target system dependent limitations. One example is file I/O, which is not implemented on all platforms. This is no technical limitation (as with the stuff mentioned above) but does just mean that no one cared enough to write the actual code.
The compiler is only one of the tools available in this package. The assembler suite (assembler, linker, archiver) is a complete development environment for itself, that may be used to write programs for any 6502 machine. C code and assembler code may be used together and may call each other.
The assembler is a one pass macroassembler and is able to output code for the 6502, 65SC816 and the 65SC02. It has a lot of nifty features like include files, macros, conditional assembly, nested lexical levels (that is, local symbols), and more.
The assembler creates object files containing relocatable code. These files must be run through a linker to create the final program.
The linker has a flexible output format and is able to support ROMable code (different load and run addresses for data), banked systems (segments may share the same run address), systems with multiple ROMs, unlimited segments, more than one BSS segment and lots of other things.
The archiver is used to create libraries containing objects files. This simplifies code management. The linker will extract only those modules from a library that are actually needed.
To simplifiy use, there is also a frontend to the tools contained in the cc65 package. The frontend is named cl65. It knows how to build binaries from a list of C files, assembler files, object files and libraries. For smaller projects, just one invocation of the cl65 utility is needed to build a binary from several source files and libraries.
The runtime library and the standard C library have been designed with portability in mind. Changes for any 6502 system shouldnt be necessary. If you have a system not listed below, all you need is a new startup code.
Direct library support (that is, startup/initialization code) and support libraries for other features are available for:
- Commodore C64
- GEOS operating system for the Commodore C64
- Commodore C128
- Commodore C16, C116 and Plus/4
- Commodore P500
- Commodore 600/700 family of computers
- Apple ][
- Atari 8bit machines
- Oric Atmos
- Nintendo Entertainment System (NES)
- Supervision Game Console
- Atari Lynx Console
Main features:
- The compiler allows single line comments that start with //. This feature is disabled in strict ANSI mode.
- The compiler allows unnamed parameters in parameter lists. The compiler will not issue warnings about unused parameters that dont have a name. This feature is disabled in strict ANSI mode.
- The compiler has some additional keywords that are needed for special features. In strict ANSI mode, the additional keywords start with two underscores.
- The volatile modifier has no effect.
- The datatypes float and double are not available.
- The compiler does not support bit fields.
- C functions may not return structs and structs may not be passed as parameters by value. Struct assignment is possible.
- There are some limitation on the size of local variables. Not all operations are available if the size of local variables exceeds 256 bytes.
- Part of the C library is available only with fastcall calling conventions (see below). This means, that you may not mix pointers to those functions with pointers to user written functions.
<<less
Download (680KB)
Added: 2007-08-02 License: Freeware Price:
817 downloads
OverApps 1.11.0

OverApps 1.11.0


Overapps is a free open source instant intranet software for Windows. more>>
OverApps is a Free Open Source Instant Intranet Software for Windows. Download the latest version of our intranet Suite. This software is designed for Microsoft Windows and ASP (Active server pages) environment and delivered in VBScript source. Available Applications : Shared Diary, Members Directory, address book, Web directory, Calendar, Project manager, bulletin board and more
<<less
Download (493K)
Added: 2001-11-21 License: Freeware Price: $0.00
2899 downloads
Seeker 3.11.0.1

Seeker 3.11.0.1


Seeker functions as a file management software which includes an ultra-fast file search engine on top of a powerful file search algorithm. more>>

Seeker 3.11.0.1 functions as a file management software which includes an ultra-fast file search engine on top of a powerful file search algorithm. Searching for files or inside of files Seeker can handle it. Seeker not only searches for files or inside files, Seeker lets you replace text inside of files. Regular expression support and command line parameter support makes Seeker a complete search and replace solution. All results from Seeker can be viewed in one of four advanced reporting modes; Detailed file list, Structured report, Summary report, and Summary report with file list. Don't miss out on the top Search and Replace application around.

Major Features:

  1. Search for files based on a file name mask, date restriction, or size restriction
  2. Replace text inside of files
  3. Command line parameter support
  4. Regular expression support
  5. Preview all search results in a convenient highlight view mode
  6. Special File Handlers to search inside of files using their native application
  7. Save and recall search settings through configuration files
  8. Powerful reporting with four different modes
  9. The utility is fast.
Enhancements: Fixed issue with sorting on filesizes
<<less
Download (2.3MB)
Added: 2009-10-09 License: Freeware Price: FREE
downloads
DNS Updater 11.0

DNS Updater 11.0


Host your own photo server, Web site, FTP server, mail server, or game servers. more>>

DNS Updater 11.0 is a versatile program which enables you to host your own photo server, Web site, FTP server, mail server, or game servers. Address.NET's dynamic DNS client/server technology to fix static domain name to a dynamic or static IP address allowing Internet users with Cable, DSL and dialup Internet connections to host their own photo server, Web site, FTP server, mail server, game servers, or any other TCP/IP service from a PC at your home or office. Users can use their own domain name or one provided by Address.net including the popular address.net domain.

<<less
Download (2MB)
Added: 2005-06-11 License: Freeware Price:
340 downloads
MrImage 0.11.0.0

MrImage 0.11.0.0


MrImage is a win32 raster image editing application more>>
MrImage is a win32 raster photo editing software being stronger than MSPaint but still very easy to use.
The prorgam is written in C++ using MFC and is based on CxImage.
Main features:
- Supported file formats: BMP, GIF, ICO, CUR, JBG, JPG, JPC, JP2, PCX, PGX, PNG, PNM, RAS, TGA, TIF, WBMP, WMF.
- Pencil, Eraser, Brush, Flood Fill, Dropper (Color Selector)
- Line, Ellipse, Filled Ellipse, Rectangle, Filled Rectangle
- Crop, Flip, Mirror, Negative, Convert to Grayscale, Resize
- Rotate Left, Rotate Right, Rotate to any angle
- Skew
- Text Tool
- Contrast - Darker, Lighter
- Brightness - Darker, Lighter
- Feather Tool
- Jitter Tool
- Contour Tool
- Red-Eye Removal
- Blur, Emboss, Soften, Sharpen
- Rectangular Selection
- Elliptical Selection
- Free-Form Selection
- Image Attributes
- Select All, Select None
- Nudge Selection: left, right, top, bottom
- Apply To Selection - When checked, transforms and filters are applied to the current selection instead of the entire image
- Undo/Redo
- Zoom In, Zoom Out, View 1:1
- Splitter Windows/New Window
- Cut/Copy/Paste
- Paste as New Image
- Print\Print Preview
- Ability to set transparent color
- Dockable/Floating Toolbars
- Dockable Multi-tabbed Color Picker
- Foreground/Background Color Switcher w/ Color Properties
- Cursor Position displays in statusbar
- Resize Canvas - expands the borders
- Remembers application window state
- Remembers size and state of Toolbars
- Remembers size and state of color picker
- Remembers Active Tab of ColorPicker
- Remembers last selected File Open filter
- Remembers the check state of the "Apply To Selection" button
- Remembers the last angle in the Rotate dialog
- Remembers the last pixel width in the Feather dialog
<<less
Download (1.27MB)
Added: 2006-06-30 License: Freeware Price:
1213 downloads
Select Menu 11.0

Select Menu 11.0


Illustrator plugin to select object types more>> Plugin adds 18 additional object types under the "Select" menu of Adobe illustrator 10.<<less
Download (32k)
Added: 2008-11-11 License: Freeware Price:
353 downloads
ChemDraw Control 11.0

ChemDraw Control 11.0


An easy to use addon for your Firefox browser. more>> An easy to use addon for your Firefox browser.

ChemDraw Control has advanced chemical tools.
System requirements:
- Firefox 1.5 - 3.1a1pre

<<less
Download (4.1MB)
Added: 2008-09-29 License: Freeware Price: FREE
556 downloads
MetatOGGer 3.11.0.0

MetatOGGer 3.11.0.0


MetatOGGer is designed with an intuitive and modular interface with which you can work ergonomically. more>>

MetatOGGer 3.11.0.0 is designed with an intuitive and modular interface with which you can work ergonomically. This makes it easy to use powerfully customizable functions, such as tagging from filename, tagging manually, or from different databases, with an unprecedent amount of options for user defined tags.

MetatOGGer will also organize/rename your music on your drive, allow you to listen to it while working, so download it (<<less

Download (5MB)
Added: 2009-12-04 License: Freeware Price: Notavailable
downloads
IntelliProtector 1.11.0

IntelliProtector 1.11.0


IntelliProtector is the most economical, yet feature-rich solution for software activation, security and license monitoring. It will help you increase your profits by protecting against losses from software piracy and intellectual property theft. more>> <<less
Download (19.02MB)
Added: 2009-01-14 License: Freeware Price: $0
290 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5