Untitled Document
IMAGE DOWNLOADED FROM WWW.INTUITIVMEDIA.NET
main about portfolio clients contact
free Asset management, network audit, lan software, video rental, video shop, card reader,retail, clocking system, programmer

Some of the software developed, supported and distributed by FineLine Solutions:

System Information Agent: LAN Software- and Hardware detection software

VideoFine: Modern, low priced, stable SMS enabled Video Rental software

CardRead32: our magnetic Card Reader complete System (hardware and software)

Online calendar booking utility (HTML)

ServerUP monitor utility

 

 
 

 

"Analyzes your network and connects computer information to office locations and telephone numbers of the user. Analysis frequency can be adjusted to be frequent or less frequent or simply let it run once. SIA runs in the foreground or silently in the background"

 

 

"Extract computer information on a large or small LAN ... If you wish to let the user activate the submission, display it in either English or Afrikaans, Dutch or German- or we will customize it for users of any country."

 

 

"Quickly Serach the SIA database for computers running certain software, containing certain motherboards or lacking vital security patches or bugfixes (to name but a few). Front end developed in HTML and allows any user to connect to database from anywhere on a network without setup, depending on the permissions assigned to them. Convert search results to Excel format with the click of a button. Otherwise, enter the list of users or department code and extract full configuration reports.

This software is simple and easy to use, not memory intensive at all, with easy quick setup LAN- wide and talks through most firewall configurations. It is a great package at a great price with an excellent support- and development team backing it. What' s more you are entitled to all future updates which slots into the update future of every client installation- hassle free."

 
 

System Information Agent: LAN Software- and Hardware detection

Away with the old methods of sending a team of technicians around the business network, collecting software and hardware information day after day. Understandably, these technicians become frustrated, bored and prone to making mistakes. SIA provides a very easy and secure way to automatically keep track of computer assets, be it hardware or software. Bigger companies will want to include this information as part of their helpdesk system. Imagine instantly tracking down pc' s with certain vital security patches missing or tracking all PC' s with Orion xt23xf motherboards in order to inform owners of malfunctioning. The information gathered is most certainly turning out to be more vital than ever before, especially on networks where the workload on technicians are very high or where financial planning can sometimes become a huge process. Both the clients and the memory sufficient server modules are installed easily and painlessly. You also receive a server monitor service that notifies you, should your server go down. The server modules runs happily next to other applications, not needing a dedicated server. The client software operates on ALL VERSIONS OF WINDOWS.

We are currently giving away 4 free copies of SIA! Please contact us to see whether you qualify.

Here is a summary of what the SIA agent extracts from computers and submits to your onsite or our offsite database:

  1. Most hardware info (eg Processor name and speed, Memory modules and total memory installed, network card, hard disk total and free space, motherboard model and manufacturer, graphics card, sound card etc)
  2. Most software info (eg Windows version, service packs, security patches, Bios version and date, installed applications, DNS server addresses, Novell usernames, Novell client versions, Novell login context, Domain/ workgroup name, MAC & IP address, host name etc)
  3. Installed application data, which can be filtered as to not invade your network users' privacy.
  4. Installed printers ( local or network).

 

 

 

You can configure from anywhere on your LAN so that your network users can:

  1. keep their location/ phone/ room numbers and even asset information correct and up to date. The data is collected from a range of dropdown menus and text formatted input fields.
  2. users can print, save or email their report information to the helpdesk or head of department as input for reports or you can give them direct read- and write- or just read- access to the data.
  3. Give the head of the departments a break. They work hard enough as it is. Let them quickly and effortlessly draw up reports and do financial planning.
  4. Program can be configured so as not to disturb users and update the database on a frequent or less frequent occurence.

 

 

You, the network administrator, can also configure it to work for you. Here is how:

  1. Change client update- or data exctraction- frequencies on remote PC' s. This luckily doesn' t require the clients to be loaded in memory so don' t worry about wasted memory or runtime errors on client machines.
  2. Change the application filters, so that only certain application information gets entered into the database.
  3. allow only certain users to manually transmit their computer configurations or set the runmode to silent and let all clients submit their configurations automatically and silently Also manually remove userdata and keep the database clean.
  4. Give certain users access to data or draw reports and email it to them in MS Excel format.
  5. Draw your own reports, analyze the network components and make licensing or upgrading decisions which are required financial decisions on a lot of networks.
  6. Distribure information to your software and hardware support personell and allow them to MAKE DECISIONS PROACTIVELY, based on up to date information.
  7. Integrate the RDBMS database into your system and make it work for you.
  8. Manage automatic client updating, once again without clients staying loaded in memory. Update certain incremental files or run a full setup after an update, all invisible on the client maschine.
  9. Install our intranet host monitor and receive warnings immediately after the SIA Server goes down for, some unexplainable reason. ( I promise I won' t say it again Bill- no, just kidding! ) This is such an easy and hassle free installation that serves an importan function in todays modern software systems.

If you require more information, please us. You can find our full contact details on the CONTACTS page.

 

 

 

Other software developed, supported and distributed by FineLine Solutions:

VideoFine: Modern, low priced, stable SMS enabled Video Rental software

CardRead32: our magnetic Card Reader complete System (hardware and software)

Free online calendar booking utility (HTML)

ServerUP monitor utility

 

software developer, programmer, free asset management, tracking, clocking system, card reader, programmer, western cape, south africa
<% Dim objFSO, objCountFile ' object vars for FSO and File Dim strCountFileName ' filename of count text file Dim iCount ' count variable Dim bUseImages ' boolean whether or not to use images Dim I ' standard looping var ' Determine whether we use images or plain text ' You could just set this to True or False instead 'bUseImages = CBool(Request.QueryString("images")) bUseImages = False ' Compute our count file's filename ' This is based on the file from which you call count.php ' It basically takes that name and appends a .cnt so I don't ' accidently overwrite any files. If for some reason you have ' a file named script_name.php.cnt then change this or watch out! strCountFileName = Server.MapPath(Request.ServerVariables("SCRIPT_NAME") & ".cnt") ' Create FileSystemObject to deal with file access Set objFSO = Server.CreateObject("Scripting.FileSystemObject") ' Open the file as a text stream (1 = ForReading, True = Create) Set objCountFile = objFSO.OpenTextFile(strCountFileName, 1, True) ' Read the current count from the file If Not objCountFile.AtEndOfStream Then ' Set value to contents of the file iCount = CLng(objCountFile.ReadAll) Else ' If no file exists or it's empty start at 0 iCount = 0 End If ' Close the file and destroy the object objCountFile.Close Set objCountFile = Nothing iCount = iCount + 1 ' Overwrite existing file and get a text stream to new one Set objCountFile = objFSO.CreateTextFile(strCountFileName, True) ' Write updated count objCountFile.Write iCount ' Close the file and destroy the object objCountFile.Close Set objCountFile = Nothing ' Destroy the FSO object Set objFSO = Nothing If bUseImages Then ' Loop through the count integer showing each digit ' You can grab the images one at a time or get the zip ' http://www.php101.com/samples/download/counter_imgs.zip For I = 1 to Len(iCount) ' Output the IMG tag using the right digit Response.Write "" Next 'I Else ' No image wanted just show the variable 'Response.Write iCount End If %>

programmer, developer, software, western cape, south africa, video rental, video shop software, video rental software, custom, free asset management, tracking, web, site, outsource

software_developer. software developer software_productasset_managemenvideo_softwarean_analyzervideo_shop_softwarevideo_store_software