managing
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1673
Managing Gigabytes for Java 2.0
Managing Gigabytes for Java is a free full-text indexing system for large document collections written in Java. more>> <<less
Download (2.2MB)
Added: 2007-07-07 License: LGPL (GNU Lesser General Public License) Price:
845 downloads
Open Blue Lab 1.1.13 (Stocks Managing for Industry)
Open Blue Lab is a modular ERP, built on a plugin architecture. more>>
Open Blue Lab is a modular ERP, built on a plugin architecture. Each business domain (such as Groupware, Financial, HCM, PLM, or SCM) is separated into subdomains which are implemented through plugins.
This architecture permits you to choose only the components that suit your needs. Each plugin is certified Zero Code, configurable through a GUI, and may be adapted through the UML models provided.
Enhancements:
- An "entries list" action has been added.
- Applied on a class object, it will display the incoming flow concerning that object.
- For example, applied on a supplier, it will display the list of incoming flows that were coming from this supplier.
<<lessThis architecture permits you to choose only the components that suit your needs. Each plugin is certified Zero Code, configurable through a GUI, and may be adapted through the UML models provided.
Enhancements:
- An "entries list" action has been added.
- Applied on a class object, it will display the incoming flow concerning that object.
- For example, applied on a supplier, it will display the list of incoming flows that were coming from this supplier.
Download (0.17MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
815 downloads
Managed Services 1.0
Managed Service screen saver for businesses that want to rent hardware software. EtomicMails services act as the ultimate managed service for your or... more>> <<less
Download (1132KB)
Added: 2009-04-13 License: Freeware Price: Free
193 downloads
NTK manager 1.0
NTK manager provides a project and employees manager. more>>
NTK manager provides a project and employees manager.
NTK manager is a client/server application for managing employees and the projects they work on in a fast and efficient manner.
<<lessNTK manager is a client/server application for managing employees and the projects they work on in a fast and efficient manner.
Download (MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1005 downloads
App::Manager 0.03
App::Manager is a Perl module for installing, managing and uninstalling software packages. more>>
App::Manager is a Perl module for installing, managing and uninstalling software packages.
SYNOPSIS
use App::Manager; # use appman instead
<<lessSYNOPSIS
use App::Manager; # use appman instead
Download (0.017MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1023 downloads
VideoManager 0.5
VideoManager is a PyGTk application to manage your movies. more>>
VideoManager is a PyGTk application to manage your movies.
An application for managing your movie collection. VideoManager is a free software for managing movies collections. Detailed information on each item can be automatically retrieved from the internet and movies can be sorted by category, year or producer.
Currently this program is only available in French.
You can help by translating the project : http://www.codingteam.net/videomanager-trad.html
Currently available in Ubuntu Feisty Universe and Arch Linux AUR.
<<lessAn application for managing your movie collection. VideoManager is a free software for managing movies collections. Detailed information on each item can be automatically retrieved from the internet and movies can be sorted by category, year or producer.
Currently this program is only available in French.
You can help by translating the project : http://www.codingteam.net/videomanager-trad.html
Currently available in Ubuntu Feisty Universe and Arch Linux AUR.
Download (0.082MB)
Added: 2007-05-10 License: GPL (GNU General Public License) Price:
936 downloads
Sys::Manage::Cmd 0.56
Sys::Manage::Cmd - Systems management command volley. more>>
Sys::Manage::Cmd - Systems management command volley.
SYNOPSIS
Command line script
use Sys::Manage::Cmd;
my $s =Sys::Manage::Cmd->new();
# Script associations (see also embedded in source):
$s->{-assoc}->{.ftp}=sub{[ftp,-n,-s:loginfile,!elem!,[0]]};
# Target collections:
$s->{-target}->{all} =[1,2,3,4,5,6];
# Target branches:
$s->{-branch}->{1} =[1,2];
$s->{-branch}->{2} =[3,4];
$s->{-branch}->{3} =[5,6];
# Command-line setup / loop:
$s->set([@ARGV]);
# Command assignments:
#$s->set(-k=>assign, -o=>b, -i=>0, -ping=>1);
#$s->execute(-a=>assignment name, -t=>[targets], -cline=>[command line]);
#...
# Command line execution:
$s->set(-k=>cmd, -o=>b, -i=>0, -ping=>0);
$s->execute([@ARGV]);
Command line
script -option -option... target command-line
script -option... -ttarget... command-line
Examples of command line
script all dir !elem!
script -ob -tall dir !elem!
script -rPrevId -tall dir !elem!
script -aTest -tall dir !elem!
script -l10 -tall dir !elem!
Options of command line
(see also -cline and -i, -k, -l, -o, -r, -t, -u, -x, -v, -g)
-kNameSpace - kind (namespace) of command
-rCommandId - redo command id (used also inside -l); or switch (for -a)
-aAssignName - assignment name, to use as command id
-lPauseSecs - loop with pause before each subsequent redo
-lg... - ... for pings usuccessful only
-lv, -lw... - ... console verbose or windowed subsequent turns
-o(s|c|b) - order of execution:
sequental
concurrent
branched (concurrent branches)
-tTargetName - target, may be several -t, instead of positional argument
-xTargetExcl - exclusion from target list, may be several -x
-uUser:pswd - user name and password for target
-g - ping target before command, also use -gPingTimeout
-gx - exclude unsuccessful targets sequentially
-i - ignore exit code
-v(0|1|2) - verbosity level
-vc... - ... cmdfile rows include
-vt... - ... date-time include
Embedded commands
(see also -cline and -assoc)
script.ext - interpreting of scripts alike .pl, .bat, .ftp, .rdo.*
rcmd, rdo, - commands to remote nodes using
fput, fget, Sys::Manage::Conn
mput, mget (!elem!, !user!, !pswd! substitutions not needed)
cmdfile - evaluate command lines file or Perl script
!elem!, < - target element and source file substitutions
!user!, !pswd! - user name and password substitutions
!log! - log filesystem name substitution
Embedding command line
(see also ENVIRONMENT and SLOTS)
if (!defined($ENV{SMELEM}) # command volley:
|| ($ENV{SMELEM} eq )) {
system($^X, script, -k0, target, $0)
} elsif (!$ENV{SMDIR}) {
die "Execute this script on Manager!"
} elsif ($ENV{SMDIR}) {
die "Execute this script on Agent!"
} else { # command script:
....
1 # success
}
<<lessSYNOPSIS
Command line script
use Sys::Manage::Cmd;
my $s =Sys::Manage::Cmd->new();
# Script associations (see also embedded in source):
$s->{-assoc}->{.ftp}=sub{[ftp,-n,-s:loginfile,!elem!,[0]]};
# Target collections:
$s->{-target}->{all} =[1,2,3,4,5,6];
# Target branches:
$s->{-branch}->{1} =[1,2];
$s->{-branch}->{2} =[3,4];
$s->{-branch}->{3} =[5,6];
# Command-line setup / loop:
$s->set([@ARGV]);
# Command assignments:
#$s->set(-k=>assign, -o=>b, -i=>0, -ping=>1);
#$s->execute(-a=>assignment name, -t=>[targets], -cline=>[command line]);
#...
# Command line execution:
$s->set(-k=>cmd, -o=>b, -i=>0, -ping=>0);
$s->execute([@ARGV]);
Command line
script -option -option... target command-line
script -option... -ttarget... command-line
Examples of command line
script all dir !elem!
script -ob -tall dir !elem!
script -rPrevId -tall dir !elem!
script -aTest -tall dir !elem!
script -l10 -tall dir !elem!
Options of command line
(see also -cline and -i, -k, -l, -o, -r, -t, -u, -x, -v, -g)
-kNameSpace - kind (namespace) of command
-rCommandId - redo command id (used also inside -l); or switch (for -a)
-aAssignName - assignment name, to use as command id
-lPauseSecs - loop with pause before each subsequent redo
-lg... - ... for pings usuccessful only
-lv, -lw... - ... console verbose or windowed subsequent turns
-o(s|c|b) - order of execution:
sequental
concurrent
branched (concurrent branches)
-tTargetName - target, may be several -t, instead of positional argument
-xTargetExcl - exclusion from target list, may be several -x
-uUser:pswd - user name and password for target
-g - ping target before command, also use -gPingTimeout
-gx - exclude unsuccessful targets sequentially
-i - ignore exit code
-v(0|1|2) - verbosity level
-vc... - ... cmdfile rows include
-vt... - ... date-time include
Embedded commands
(see also -cline and -assoc)
script.ext - interpreting of scripts alike .pl, .bat, .ftp, .rdo.*
rcmd, rdo, - commands to remote nodes using
fput, fget, Sys::Manage::Conn
mput, mget (!elem!, !user!, !pswd! substitutions not needed)
cmdfile - evaluate command lines file or Perl script
!elem!, < - target element and source file substitutions
!user!, !pswd! - user name and password substitutions
!log! - log filesystem name substitution
Embedding command line
(see also ENVIRONMENT and SLOTS)
if (!defined($ENV{SMELEM}) # command volley:
|| ($ENV{SMELEM} eq )) {
system($^X, script, -k0, target, $0)
} elsif (!$ENV{SMDIR}) {
die "Execute this script on Manager!"
} elsif ($ENV{SMDIR}) {
die "Execute this script on Agent!"
} else { # command script:
....
1 # success
}
Download (0.060MB)
Added: 2007-07-24 License: Perl Artistic License Price:
824 downloads
ASN RADIUS Admin 0.5
ARAs goal is to create simple but convenient solution for managing the FreeRADIUS server. more>>
ARAs goal is to create simple but convenient solution for managing the FreeRADIUS server.
ARA is PHP web-app operating on FreeRADIUS storage (currently only MySQL database). Look on its overview and decide is it right tool for you.
Enhancements:
- Visual polishing and end-user experience improvements.
- An easy system to integrate RADIUS users private information.
<<lessARA is PHP web-app operating on FreeRADIUS storage (currently only MySQL database). Look on its overview and decide is it right tool for you.
Enhancements:
- Visual polishing and end-user experience improvements.
- An easy system to integrate RADIUS users private information.
Download (0.040MB)
Added: 2006-11-29 License: GPL (GNU General Public License) Price:
1068 downloads
easy emailsManager 0.0.1
easy emailsManager (eEM) is a Web-based multi-user application for managing email. more>>
easy emailsManager (eEM) is a Web-based multi-user application for managing email.
easy emailsManager can manage multiple email accounts with different protocols (IMAP, POP3, NNTP) and share selected email with other users (of your own group, for example).
Main features:
- User, Group and Permission Management
- Emails Management
- German and English
- Editable Navigation tree
- Mandators (experimental)
- Extensible by plugins (experimental)
<<lesseasy emailsManager can manage multiple email accounts with different protocols (IMAP, POP3, NNTP) and share selected email with other users (of your own group, for example).
Main features:
- User, Group and Permission Management
- Emails Management
- German and English
- Editable Navigation tree
- Mandators (experimental)
- Extensible by plugins (experimental)
Download (2.5MB)
Added: 2006-03-10 License: MPL (Mozilla Public License) Price:
1325 downloads
Nag H3 2.1.3
Nag is a Web-based application which provides a simple, clean interface for managing online task lists. more>>
Nag is a Web-based application built upon the Horde Application Framework which provides a simple, clean interface for managing online task lists (i.e., TODO lists).
Nag H3 includes strong integration with the other Horde applications and offers shared task lists.
<<lessNag H3 includes strong integration with the other Horde applications and offers shared task lists.
Download (1.0MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
953 downloads
Cache::Memcached::Managed 0.16
Cache::Memcached::Managed is a Perl module that provides an API for managing cached information. more>>
Cache::Memcached::Managed is a Perl module that provides an API for managing cached information.
SYNOPSIS
use Cache::Memcached::Managed;
my $cache = Cache::Memcached::Managed->new( 127.0.0.1:12345 );
$cache->set( $value );
$cache->set( $value,$id );
$cache->set( value => $value,
id => $id,
key => $key,
version => 1.1,
namespace => foo,
expiration => 1D, );
my $value = $cache->get( $id );
my $value = $cache->get( id => $id,
key => $key );
<<lessSYNOPSIS
use Cache::Memcached::Managed;
my $cache = Cache::Memcached::Managed->new( 127.0.0.1:12345 );
$cache->set( $value );
$cache->set( $value,$id );
$cache->set( value => $value,
id => $id,
key => $key,
version => 1.1,
namespace => foo,
expiration => 1D, );
my $value = $cache->get( $id );
my $value = $cache->get( id => $id,
key => $key );
Download (0.038MB)
Added: 2007-03-08 License: Perl Artistic License Price:
960 downloads
gnome-kernel-manager 0.0.1
gnome-kernel-manager is a tool for managing kernel modules and more. more>>
gnome-kernel-manager is a tool for managing kernel modules and more.
gnome-kernel-manager is a gui for managing the kernel modules, .... Only Linux kernel is supported.
Main features:
- Shows the list of loaded modules.
- Shows the list of all installed modules.
- Shows information about modules.
- Supports (un)loading modules.
<<lessgnome-kernel-manager is a gui for managing the kernel modules, .... Only Linux kernel is supported.
Main features:
- Shows the list of loaded modules.
- Shows the list of all installed modules.
- Shows information about modules.
- Supports (un)loading modules.
Download (0.27MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
824 downloads
easy contactsManager 0.0.3
easy contactsManager [eCM] is an internet application for managing contacts. more>>
easy contactsManager project is an internet application for managing contacts.
These contacts can be organized in a lot a different ways (for example folders, categories, ...) and be accessed by different users who belong to different groups.
Main features:
- User, Group and Permission Management
- Notes and Folders Management
- wysiwyg editor
- German and English
- Eventmanager (experimental)
- Editable Navigation tree
- Workflow (experimental)
- Categories (experimental)
- Mandators (experimental)
- Extensible by plugins (experimental)
<<lessThese contacts can be organized in a lot a different ways (for example folders, categories, ...) and be accessed by different users who belong to different groups.
Main features:
- User, Group and Permission Management
- Notes and Folders Management
- wysiwyg editor
- German and English
- Eventmanager (experimental)
- Editable Navigation tree
- Workflow (experimental)
- Categories (experimental)
- Mandators (experimental)
- Extensible by plugins (experimental)
Download (2.5MB)
Added: 2006-02-28 License: MPL (Mozilla Public License) Price:
1333 downloads
IMAP utils 0.3
IMAP utils software contains a set of simple utilities for managing IMAP emails. more>>
IMAP utils software contains a set of simple utilities for managing IMAP emails.
imap-purge
Purges old read and unread mails from folders.
imap-folders
Creates folders on IMAP.
imap-stats
Shows summary about unread and unseen mails.
Enhancements:
- Several new scripts for reading and storing messages were added.
<<lessimap-purge
Purges old read and unread mails from folders.
imap-folders
Creates folders on IMAP.
imap-stats
Shows summary about unread and unseen mails.
Enhancements:
- Several new scripts for reading and storing messages were added.
Download (0.010MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
817 downloads
queue-admin 1.0
queue-admin provides a shell script for managing the mail queue of the qmail MTA. more>>
queue-admin provides a shell script for managing the mail queue of the qmail MTA.
queue-admin is a bash2 shell script for managing the mail queue of the qmail MTA.
It can provide a summarized list of the messages in the queue, optionally filtered by number or by whether a message is local or remote.
The messages themselves can be listed, viewed, or deleted by the same criteria.
It can also search for expressions within the messages, and can return the entire email or only the line where the expression was found.
The output is colorized.
<<lessqueue-admin is a bash2 shell script for managing the mail queue of the qmail MTA.
It can provide a summarized list of the messages in the queue, optionally filtered by number or by whether a message is local or remote.
The messages themselves can be listed, viewed, or deleted by the same criteria.
It can also search for expressions within the messages, and can return the entire email or only the line where the expression was found.
The output is colorized.
Download (0.002MB)
Added: 2007-04-10 License: GPL (GNU General Public License) Price:
931 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above managing search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed