business process analysis
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3511
Web Business Pro 4a
Web Business Pro is a Web application designed for everyday business activities. more>>
Web Business Pro is a Web application designed for everyday business activities. The project includes support for customer lists, inventory, receipt printing, and accounting. Fully featured search functions and filters make it easy to find what you need quickly.
<<less Download (1.3MB)
Added: 2007-07-22 License: LGPL (GNU Lesser General Public License) Price:
828 downloads
Business Process Visual ARCHITECT 2.1
Business Process Visual ARCHITECT is a full-featured business process modeler. more>>
Business Process Visual ARCHITECT is a full-featured business process modeler that supports the latest OMG Business Process Modeling Notation (BPMN).
Business Process Visual ARCHITECT provides an easy-to-use diagramming environment for you to model your business process, and is a proven solution for bridging the gap between business analysts and IT professionals.
Main features:
- Frictionless business modeling environment
- On-the-fly syntax check and correction according to BPMN specification
- Advanced printing facility for outputting large business process diagram
- Share business process diagram among your company with Teamwork Server
- Incorporate user-defined images to the business process diagram to increase the readability.
Enhancements:
- Branch and tag capabilities were added to the VP Teamwork Server, including Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- There were also a number of enhancements for various other features.
<<lessBusiness Process Visual ARCHITECT provides an easy-to-use diagramming environment for you to model your business process, and is a proven solution for bridging the gap between business analysts and IT professionals.
Main features:
- Frictionless business modeling environment
- On-the-fly syntax check and correction according to BPMN specification
- Advanced printing facility for outputting large business process diagram
- Share business process diagram among your company with Teamwork Server
- Incorporate user-defined images to the business process diagram to increase the readability.
Enhancements:
- Branch and tag capabilities were added to the VP Teamwork Server, including Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- There were also a number of enhancements for various other features.
Download (94.9MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
522 downloads
Sequence Analysis 1.6.0
Sequence Analysis project is a collage of coding projects. more>>
Sequence Analysis project is a collage of coding projects which I have written over the past several years for various clients in my work as a bioinformatics consultant.
These clients have graciously allowed me to release these works into the public domain as freeware for Macintosh OS X in order to promote the platform and to encourage migration from Classic.
The upper window panel can hold several sequences, which are both editable and selectable. The tabs in the lower analysis panel try to keep up with the current sequence selection to provide immediate feedback. The selection is used in some modules as only the portion being analyzed for other modules i.e. Digest is used to determine if enzymes cut in the in or outside of the selection.
Most commonly available sequence formats have been reverse engineered. You can also access a sequences from the NCBI via its GID or UID. This currently cannot be done from behind a firewall.
Most of the analyses are simple enough that they are obvious to use, Composition, pI. Others could stand some documenation i.e. Pairwise and Primer Design. The Publish tab uses a string to control the layout. Click on the Legend button for some help.
<<lessThese clients have graciously allowed me to release these works into the public domain as freeware for Macintosh OS X in order to promote the platform and to encourage migration from Classic.
The upper window panel can hold several sequences, which are both editable and selectable. The tabs in the lower analysis panel try to keep up with the current sequence selection to provide immediate feedback. The selection is used in some modules as only the portion being analyzed for other modules i.e. Digest is used to determine if enzymes cut in the in or outside of the selection.
Most commonly available sequence formats have been reverse engineered. You can also access a sequences from the NCBI via its GID or UID. This currently cannot be done from behind a firewall.
Most of the analyses are simple enough that they are obvious to use, Composition, pI. Others could stand some documenation i.e. Pairwise and Primer Design. The Publish tab uses a string to control the layout. Click on the Legend button for some help.
Download (2.3MB)
Added: 2006-01-18 License: Freeware Price:
1377 downloads
bibEC Process Card 1.3.12
bibEC Process Card is a multiple gateway credit card payment processor. more>>
bibEC Process Card is a multiple gateway credit card payment processor.
This class is meant to process credit card payments via one of multiple payment gateways that are supported.
Currently the class supports the following payment gateways: Plug and Pay, Authorize.net, ViaKlix, and paynet . Changing between payment gateways is mostly a matter of changing the class constructor parameter.
The class provides a payment gateway independent API with functions for:
- Logging the payment activity
- Set the payment gateway authentication credentials
- Set the paying customer details
- Set the ship to details
- Set the credit card details
- Set the valuta
- Specify the order details
- Submit the payment processing request and retrieving the results
The payment submission is done securely when possible using PHP SSL socket connections or the Curl extension for PHP or the Curl command line.
<<lessThis class is meant to process credit card payments via one of multiple payment gateways that are supported.
Currently the class supports the following payment gateways: Plug and Pay, Authorize.net, ViaKlix, and paynet . Changing between payment gateways is mostly a matter of changing the class constructor parameter.
The class provides a payment gateway independent API with functions for:
- Logging the payment activity
- Set the payment gateway authentication credentials
- Set the paying customer details
- Set the ship to details
- Set the credit card details
- Set the valuta
- Specify the order details
- Submit the payment processing request and retrieving the results
The payment submission is done securely when possible using PHP SSL socket connections or the Curl extension for PHP or the Curl command line.
Download (MB)
Added: 2007-06-15 License: Freeware Price:
861 downloads
Internet Business Services 1.0
Do internet telephones sound too good to be true? Well that was exactly what I was thinking, so I decided to delve into the world of Internet telephon... more>> <<less
Download (421KB)
Added: 2009-04-18 License: Freeware Price: Free
190 downloads
Business::PayPal::SDK 0.14
Business::PayPal::SDK is an interface to paypals SDKs. more>>
Business::PayPal::SDK is an interface to paypals SDKs.
SYNOPSIS
use Business::PayPal::SDK;
my $pp = new Business::PayPal::SDK(
{
paypal_apiid => "sdk-seller_api1.sdk.com",
paypal_apipw => "12345678",
paypal_cert => "paypal_java_sdk/samples/Cert/sdk-seller.p12",
paypal_certpw => "password",
paypal_env => "sandbox",
java_sdk_dir => "/path/to/paypals/java/sdk",
}
);
my $res = $pp->SetExpressCheckout(
{
OrderTotal => 10.00,
ReturnURL => http:://mydomain.com/myreturn,
CancelURL => http:://mydomain.com/mycancel,
}
);
print $res->{token};
Business::PayPal::SDK is a perl interface to the SDK provided by paypal (http://www.paypal.com/sdk). You can use this module to implement paypal pro and paypal express transactions in perl. On the back end this modules uses Inline::Java to interface directly with the paypals java sdk. Consequently you will need to get a J2SDK and Inline::Java installed. This was done for 2 reasons. 1) Speed of development, didnt have to deal with all the SOAP stuff. 2) Easier maintanance regarding future changes. That is to say, I only have to make sure I keep this compatiable with paypals SDK, not thier underlying protocol changes.
This document assumes you have an understanding of the java SDK and API provided by PayPal.
All methods take a single hashref as an argument. All methods return a hashref, or undef if there is an internal failure of some sort. Check $ret->{ack} to see if the call to PayPal was successful. If $ret->{ack} is not Success than you can check the $res->{ErrorCodes}, this will be an hashref with the key being the error code from paypal and the value is the getLongMessage from the error. Check $obj->error for description of failure.
<<lessSYNOPSIS
use Business::PayPal::SDK;
my $pp = new Business::PayPal::SDK(
{
paypal_apiid => "sdk-seller_api1.sdk.com",
paypal_apipw => "12345678",
paypal_cert => "paypal_java_sdk/samples/Cert/sdk-seller.p12",
paypal_certpw => "password",
paypal_env => "sandbox",
java_sdk_dir => "/path/to/paypals/java/sdk",
}
);
my $res = $pp->SetExpressCheckout(
{
OrderTotal => 10.00,
ReturnURL => http:://mydomain.com/myreturn,
CancelURL => http:://mydomain.com/mycancel,
}
);
print $res->{token};
Business::PayPal::SDK is a perl interface to the SDK provided by paypal (http://www.paypal.com/sdk). You can use this module to implement paypal pro and paypal express transactions in perl. On the back end this modules uses Inline::Java to interface directly with the paypals java sdk. Consequently you will need to get a J2SDK and Inline::Java installed. This was done for 2 reasons. 1) Speed of development, didnt have to deal with all the SOAP stuff. 2) Easier maintanance regarding future changes. That is to say, I only have to make sure I keep this compatiable with paypals SDK, not thier underlying protocol changes.
This document assumes you have an understanding of the java SDK and API provided by PayPal.
All methods take a single hashref as an argument. All methods return a hashref, or undef if there is an internal failure of some sort. Check $ret->{ack} to see if the call to PayPal was successful. If $ret->{ack} is not Success than you can check the $res->{ErrorCodes}, this will be an hashref with the key being the error code from paypal and the value is the getLongMessage from the error. Check $obj->error for description of failure.
Download (0.009MB)
Added: 2007-06-07 License: Perl Artistic License Price:
871 downloads
Business::Associates 1.00
Business::Associates is a library to handle the new XML interface for the Amazon.com Associates program. more>>
Business::Associates is a library to handle the new XML interface for the Amazon.com Associates program.
This package replaces the Amazon Recommends (tm) links to provide a powerful and simple to use interface that allows you to embed complex, highly targeted ads on your web site (or other documents).
This modules supports many new features that are not available with the standard interfaces. For example, multi-mode searches, i.e. the ability to search across multiple product categories (dvd+video+music+...) is fully supported.
See also http://cybaea.com/Associates.html for more information and example screen shots.
Currently, only the Amazon.com Associates program is supported.
<<lessThis package replaces the Amazon Recommends (tm) links to provide a powerful and simple to use interface that allows you to embed complex, highly targeted ads on your web site (or other documents).
This modules supports many new features that are not available with the standard interfaces. For example, multi-mode searches, i.e. the ability to search across multiple product categories (dvd+video+music+...) is fully supported.
See also http://cybaea.com/Associates.html for more information and example screen shots.
Currently, only the Amazon.com Associates program is supported.
Download (0.045MB)
Added: 2006-09-11 License: Perl Artistic License Price:
1138 downloads
Process Raw Images 0.2
Process Raw Images is a service menu for processing many raw images at once. Supports output to Jpeg, Png and Tiff. more>>
Process Raw Images is a service menu for processing many raw images at once. Supports output to Jpeg, Png and Tiff.
<<less Download (0.006MB)
Added: 2007-02-05 License: GPL (GNU General Public License) Price:
996 downloads
Business::PayBox 1.0.1
Business::PayBox is a OO wrapper for Paybox Java Localhost Listener (LHL). more>>
Business::PayBox is a OO wrapper for Paybox Java Localhost Listener (LHL).
SYNOPSIS
To create object:
use Business::PayBox;
$PB = Business::PayBox->new(MRID => +490001234567);
or
$PB = Business::PayBox->new(MRID => +490001234567, server => 192.168.1.1, port => 61);
To do a payment:
$result = $PB->do_test_payment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
or
$result = $PB->dopayment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
This is an OO wrapper for the PAYBOX - Integrated Solution. You must install Localhostlistener LHL (which comes as Java-Jar) to use this module. After you succeed with this you can process payments as described above.
CONSTRUCTOR
new($key => $value, ...)
Call to initialize object. Valid Parameters are:
Mandatory:
MRID => Merchant ID
Others:
server => IP address or name of LHL server. (defaults to localhost)
port => Port of LHL server. (defaults to port 60)
CMID => Customer ID (defaults to 0)
AUTT => Transaction Type
LANG => Language (defaults to DE)
PYMD => Zahlungsziel (defaults to 1)
LCMT => Localtime stamp (defaults to localtime)
<<lessSYNOPSIS
To create object:
use Business::PayBox;
$PB = Business::PayBox->new(MRID => +490001234567);
or
$PB = Business::PayBox->new(MRID => +490001234567, server => 192.168.1.1, port => 61);
To do a payment:
$result = $PB->do_test_payment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
or
$result = $PB->dopayment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
This is an OO wrapper for the PAYBOX - Integrated Solution. You must install Localhostlistener LHL (which comes as Java-Jar) to use this module. After you succeed with this you can process payments as described above.
CONSTRUCTOR
new($key => $value, ...)
Call to initialize object. Valid Parameters are:
Mandatory:
MRID => Merchant ID
Others:
server => IP address or name of LHL server. (defaults to localhost)
port => Port of LHL server. (defaults to port 60)
CMID => Customer ID (defaults to 0)
AUTT => Transaction Type
LANG => Language (defaults to DE)
PYMD => Zahlungsziel (defaults to 1)
LCMT => Localtime stamp (defaults to localtime)
Download (0.003MB)
Added: 2007-06-05 License: Perl Artistic License Price:
872 downloads
Net::Analysis 0.04
Net::Analysis are modules for analysing network traffic. more>>
Net::Analysis are modules for analysing network traffic.
SYNOPSIS
Using an existing analyser:
$ perl -MNet::Analysis -e main help
$ perl -MNet::Analysis -e main TCP,v=1 dump.tcp - basic TCP info
$ perl -MNet::Analysis -e main HTTP,v=1 dump.tcp - HTTP stuff
$ perl -MNet::Analysis -e main Example2,regex=img dump.tcp - run an example
Writing your own analyser:
package MyExample;
use base qw(Net::Analysis::Listener::Base);
# Listen to events from other modules
sub tcp_monologue {
my ($self, $args) = @_;
my ($mono) = $args->{monologue};
my $t = $mono->t_elapsed()->as_number();
my $l = $mono->length();
# Emit your own event
$self->emit(name => example_event,
args => { kb_sec => ($t) ? $l/($t*1024) : N/A }
);
}
# Process your own event
sub example_event {
my ($self, $args) = @_;
printf "Bandwidth: %10.2f KB/secn", $args->{kb_sec};
}
1;
__top
ABSTRACT
Net::Analysis is a suite of modules that parse tcpdump files, reconstruct TCP sessions from the packets, and provide a very lightweight framework for writing protocol anaylsers.
__top
I wanted a batch version of Ethereal in Perl, so I could:
- sift through parsed protocols with structured filters
- write custom reports that mixed events from multiple protocols
So here it is. Net::Analysis is a stack of protocol handlers that emit, and listen for, events.
<<lessSYNOPSIS
Using an existing analyser:
$ perl -MNet::Analysis -e main help
$ perl -MNet::Analysis -e main TCP,v=1 dump.tcp - basic TCP info
$ perl -MNet::Analysis -e main HTTP,v=1 dump.tcp - HTTP stuff
$ perl -MNet::Analysis -e main Example2,regex=img dump.tcp - run an example
Writing your own analyser:
package MyExample;
use base qw(Net::Analysis::Listener::Base);
# Listen to events from other modules
sub tcp_monologue {
my ($self, $args) = @_;
my ($mono) = $args->{monologue};
my $t = $mono->t_elapsed()->as_number();
my $l = $mono->length();
# Emit your own event
$self->emit(name => example_event,
args => { kb_sec => ($t) ? $l/($t*1024) : N/A }
);
}
# Process your own event
sub example_event {
my ($self, $args) = @_;
printf "Bandwidth: %10.2f KB/secn", $args->{kb_sec};
}
1;
__top
ABSTRACT
Net::Analysis is a suite of modules that parse tcpdump files, reconstruct TCP sessions from the packets, and provide a very lightweight framework for writing protocol anaylsers.
__top
I wanted a batch version of Ethereal in Perl, so I could:
- sift through parsed protocols with structured filters
- write custom reports that mixed events from multiple protocols
So here it is. Net::Analysis is a stack of protocol handlers that emit, and listen for, events.
Download (0.30MB)
Added: 2006-07-27 License: Perl Artistic License Price:
1185 downloads
The Open For Business Project 3.0.0
The Open For Business Project is a J2EE-based enterprise automation tools and applications. more>>
The Open For Business Project is an open source enterprise automation software project licensed under the MIT Open Source License.
By open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Business / E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.
Main features:
- advanced e-commerce
- catalog management
- promotion & pricing management
- order management (sales & purchase)
- customer management (part of general party management)
- warehouse management
- fulfillment (auto stock moves, batched pick, pack & ship)
- accounting (invoice, payment & billing accounts)
- manufacturing management
- general work effort management (events, tasks, projects, requests, etc)
- content management (for product content, web sites, general content, blogging, forums, etc)
- and much more all in an open source package!
<<lessBy open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Business / E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.
Main features:
- advanced e-commerce
- catalog management
- promotion & pricing management
- order management (sales & purchase)
- customer management (part of general party management)
- warehouse management
- fulfillment (auto stock moves, batched pick, pack & ship)
- accounting (invoice, payment & billing accounts)
- manufacturing management
- general work effort management (events, tasks, projects, requests, etc)
- content management (for product content, web sites, general content, blogging, forums, etc)
- and much more all in an open source package!
Download (28.51MB)
Added: 2005-04-28 License: MIT/X Consortium License Price:
1642 downloads
Business::GestPayCrypt 0.41
Business::GestPayCrypt is a Perl interface to the Italian online payment system GestPay. more>>
Business::GestPayCrypt is a Perl interface to the Italian online payment system GestPay.
SYNOPSIS
#
# Request
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetCurrency($Currency);
$obj->SetAmount($Amount);
$obj->SetShopTransactionID($ShopTransationID);
$obj->SetLanguage($Language);
$obj->Encrypt();
if ( $obj->GetErrorCode() ) {
print Error: , $obj->GetErrorCode(), ,
$objCrypt->GetErrorDescription();
} else {
my $a = $obj->GetShopLogin();
my $b = $obj->GetEncryptedString();
print qq~
~;
}
#
# Response
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetEncryptedString($b);
$obj->Decrypt();
if ( $objCrypt->GetErrorCode() ) {
print Error: , $obj->GetErrorCode() , ,
$objCrypt->GetErrorDescription();
} else {
print ShopLogin : , $obj->GetShopLogin(), "n";
print Currency :, $obj->GetCurrency(), "n";
print Amount : , $obj->GetAmount(), "n";
print ShopTransactionID : , $obj->GetShopTransactionID(), "n";
print BuyerName : , $obj->GetBuyerName(), "n";
print BuyerEmail : , $obj->GetBuyerEmail(), "n";
print TransactionResult : , $obj->GetTransactionResult(), "n";
print AuthorizationCode : , $obj->GetAuthorizationCode(), "n";
print BankTransactionID : , $obj->GetBankTransactionID(), "n";
print ErrorCode : , $obj->GetErrorCode(), "n";
print ErrorDescription : , $obj->GetErrorDescription(), "n";
print AlertCode : , $obj->GetAlertCode(), "n";
print AlertDescription : , $obj->GetAlertDescription(), "n";
print CustomInfo : , $obj->GetCustomInfo(), "n";
}
<<lessSYNOPSIS
#
# Request
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetCurrency($Currency);
$obj->SetAmount($Amount);
$obj->SetShopTransactionID($ShopTransationID);
$obj->SetLanguage($Language);
$obj->Encrypt();
if ( $obj->GetErrorCode() ) {
print Error: , $obj->GetErrorCode(), ,
$objCrypt->GetErrorDescription();
} else {
my $a = $obj->GetShopLogin();
my $b = $obj->GetEncryptedString();
print qq~
~;
}
#
# Response
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetEncryptedString($b);
$obj->Decrypt();
if ( $objCrypt->GetErrorCode() ) {
print Error: , $obj->GetErrorCode() , ,
$objCrypt->GetErrorDescription();
} else {
print ShopLogin : , $obj->GetShopLogin(), "n";
print Currency :, $obj->GetCurrency(), "n";
print Amount : , $obj->GetAmount(), "n";
print ShopTransactionID : , $obj->GetShopTransactionID(), "n";
print BuyerName : , $obj->GetBuyerName(), "n";
print BuyerEmail : , $obj->GetBuyerEmail(), "n";
print TransactionResult : , $obj->GetTransactionResult(), "n";
print AuthorizationCode : , $obj->GetAuthorizationCode(), "n";
print BankTransactionID : , $obj->GetBankTransactionID(), "n";
print ErrorCode : , $obj->GetErrorCode(), "n";
print ErrorDescription : , $obj->GetErrorDescription(), "n";
print AlertCode : , $obj->GetAlertCode(), "n";
print AlertDescription : , $obj->GetAlertDescription(), "n";
print CustomInfo : , $obj->GetCustomInfo(), "n";
}
Download (0.007MB)
Added: 2007-08-01 License: Perl Artistic License Price:
815 downloads
Auction Business Manager 1.0
Auction Business Manager is a tool that helps you keep track of income and expenses for your online auctions, e.g. with eBay. more>>
Auction Business Manager is a tool that helps you keep track of income and expenses for your online auctions, e.g. with eBay.
Auction Business Manager also color codes your listings so that you can easily see who you need to ship packages to and who still needs to pay.
There is a statistics page that tells you, by month, what your expenses were, what your income was, and how much profit you made, so its easy to see how well your business is growing.
Main features:
- Easy installation - just unzip, upload, install a single table into your MySQL database and youre ready to rock!
- Simple, intuitive interface - Auction Business Manager is structured so that its very easy to make changes to and update your listings.
- Ongoing Balance Sheet - Worried that you might be spending more than youre making? No problem, just keep track with Auction Business Manager, and compare how youre doing from month to month.
- Its Online - Once you install Auction Business Manager on your hosting account, you can access it from any computer.
- Password Protected - Auction Business Manager uses a simple login system to keep unwanted visitors and meddlers out.
<<lessAuction Business Manager also color codes your listings so that you can easily see who you need to ship packages to and who still needs to pay.
There is a statistics page that tells you, by month, what your expenses were, what your income was, and how much profit you made, so its easy to see how well your business is growing.
Main features:
- Easy installation - just unzip, upload, install a single table into your MySQL database and youre ready to rock!
- Simple, intuitive interface - Auction Business Manager is structured so that its very easy to make changes to and update your listings.
- Ongoing Balance Sheet - Worried that you might be spending more than youre making? No problem, just keep track with Auction Business Manager, and compare how youre doing from month to month.
- Its Online - Once you install Auction Business Manager on your hosting account, you can access it from any computer.
- Password Protected - Auction Business Manager uses a simple login system to keep unwanted visitors and meddlers out.
Download (0.012MB)
Added: 2006-02-09 License: Freeware Price:
1352 downloads
Pizza Business 1.0-beta9
Pizza Business project is a game in which you can create your own pizza business. more>>
Pizza Business project is a game in which you can create your own pizza business.
Pizza Business is a platform-independent restaurant simulation game written in object-oriented C++. It utilizes the WxWindows library.
Enhancements:
- Corrected date errors in this Changelog file (it said "2002" instead of "2003" on recent releases) -tsarkon
- Save/Load feature has been buggy. This have been fixed in this version. -ares32585
- The binary file has been moved to the bin directory (Makefile controlled) -tsarkon
- Partial implementation of Linux UI installation script -tsarkon
<<lessPizza Business is a platform-independent restaurant simulation game written in object-oriented C++. It utilizes the WxWindows library.
Enhancements:
- Corrected date errors in this Changelog file (it said "2002" instead of "2003" on recent releases) -tsarkon
- Save/Load feature has been buggy. This have been fixed in this version. -ares32585
- The binary file has been moved to the bin directory (Makefile controlled) -tsarkon
- Partial implementation of Linux UI installation script -tsarkon
Download (1.6MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1093 downloads
Directory Analysis Tool 0.0.2
Directory Analysis Tool is used to analyze LDAP directories and report on their contents. more>>
Directory Analysis Tool is used to analyze LDAP directories and report on their contents.
Useful if you want to find inactive accounts, people who havent changed passwords, or who has administrator privileges.
<<lessUseful if you want to find inactive accounts, people who havent changed passwords, or who has administrator privileges.
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1219 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 business process analysis 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