Registrations to Open-AudIT forums are now closed. To ask any new questions please visit Opmantek Community Questions.

Open-AudIT

What's on your network?
It is currently Fri Mar 29, 2024 12:18 am

All times are UTC + 10 hours




Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 51 posts ]  Go to page Previous  1, 2, 3, 4
Author Message
 Post subject: Re: OAv2
PostPosted: Fri Feb 05, 2010 11:17 pm 
Offline
Newbie

Joined: Wed Feb 06, 2008 3:06 am
Posts: 38
[quote]Can I ask why you use CSV export ?

I built a lot of my own queries based on our task at hand. Being able to bring a report into excel and work off of it was invaluable.
example: We migrated DNS servers. I created a query that listed computer name, IP address, DNS1-3, and WINS1-2. I could export to CSV, identify the ones that needed manual correction, and delegate lists to employees for remediation.

[quote]If anyone wants to contribute a logo, feel free.
My wife is a Graphic Designer. I've been searching for some way that we can contribute to this software. I think we just found it. :D

_________________
[size=85]OA Server: W2k3/IIS/PHP5/MySQL
Currently auditing 558 servers, 138 Workstations
LDAP=AD, Audit interval ~ once/month[/size]


Top
 Profile  
Reply with quote  
 Post subject: Re: OAv2
PostPosted: Sat Feb 06, 2010 6:44 am 
Offline
Site Admin
User avatar

Joined: Mon Jun 07, 2004 11:48 am
Posts: 1964
Location: Brisbane, Australia
[quote]I built a lot of my own queries based on our task at hand. Being able to bring a report into excel and work off of it was invaluable.
example: We migrated DNS servers. I created a query that listed computer name, IP address, DNS1-3, and WINS1-2. I could export to CSV, identify the ones that needed manual correction, and delegate lists to employees for remediation.

I wonder how close OAv2 will work for you "out of the box"... Groups have some things I haven't made a front end for, as yet. One of them is the ability to specify (on a per Group basis) which columns you would like to display on the "List" type pages. It would be easy to create a Group containing every device (or every Windows system), that displays those columns (DNS1, 2, WINs, etc).
[quote]My wife is a Graphic Designer. I've been searching for some way that we can contribute to this software. I think we just found it.
Sweet - I'd prefer it in SVG format (if possible). Post it here and we can all take a look !!!

_________________
Support and Development hours available from [url=https://opmantek.com]Opmantek[/url].
Please consider a purchase to help make Open-AudIT better for everyone.


Top
 Profile  
Reply with quote  
 Post subject: Re: OAv2
PostPosted: Sun Feb 07, 2010 2:24 am 
Offline
Newbie

Joined: Sun Feb 07, 2010 2:08 am
Posts: 1
Location: USA - Louisiana
Hi Mark, I'm Lacey...the wife and Graphic Designer. I tried to send you a PM so this thread wouldn't get too off topic. Just wanted to introduce myself and create a direct point of contact in case you need it. :mrgreen:


Top
 Profile  
Reply with quote  
 Post subject: Re: OAv2
PostPosted: Sun Mar 14, 2010 7:44 am 
Offline
Newbie

Joined: Thu Feb 11, 2010 2:41 am
Posts: 19
Great work so far.
Here are some things I'd like to see...

1. I think that it'd be beneficial to have a better donation mechanism. Something like a graph that shows a target goal and brief explanation of the goal. List top contributors etc, put this information on the main page so that it can't be missed.

2. Regarding OAV2 I have tested it out and like how you have leveraged jquery. Having used jquery in OAV1 to make ajax enabled tabular data as opposed to HTML tables I think that OAV2 can benefit from leveraging jquery + extjs to provide newer modern front end.

Let me show you an example:
I used jquery + jqgrid [url]http://trirand.com/blog/jqgrid/jqgrid.html[/url] but extjs [url]http://www.extjs.com/[/url] offers more functionality such as exporting to csv. ExtJS & JQGRID have an Open Source License.
You can easily search/re-order columns, resize columns, have multiple grid, have actions such as populate a second grid upon clicking on a cell on the first grid. As you can see you can also have footer data. It's Excel on steroids, I think a full blown implementation of this would blow out the current front end that you have for OAV2 now. Plus you can use JQUERY Themeroller.... If you want I can provide more functionality samples. Hope that this example can give you some ideas. And if I can make myself useful don't hesitate to let me know.


Attachments:
File comment: Screenshot of Jquery + Jqgrid
Screenshot A grid built using Jquery + Jqgrid + PHP

sample.png
sample.png [ 57.35 KiB | Viewed 7139 times ]
File comment: this is the javascript required to build a Grid + Subgrid, I did not supply the PHP as it's not really relevant.
store_master_detail.js [3.81 KiB]
Downloaded 446 times
Top
 Profile  
Reply with quote  
 Post subject: Re: OAv2
PostPosted: Tue Mar 23, 2010 1:32 am 
Offline
Newbie

Joined: Sat Nov 17, 2007 1:02 am
Posts: 29
Location: Belgium
Hi wnyhelpdesk, i like that revolutionairy style !!

_________________
[size=85]OS : Windows XP with XAMPP install
Auditing: 120 Desktops/Laptops (mixed 200 and XP), +10 Windows Servers (mixed 2000 and 2003)
Multiple printers (MFP), switches
LDAP: AD[/size]


Top
 Profile  
Reply with quote  
 Post subject: Re: OAv2
PostPosted: Thu Sep 16, 2010 8:51 pm 
Offline
Newbie

Joined: Fri Jul 02, 2010 4:00 am
Posts: 2
Good afternoon,

I am using Openaudit and it Works very well . I am interested in making several changes, but when I verify the structure of the application I get confused, I want to create an option for audit.vbs so that it verifies the profiles that are in “documents and settings” and at the same time creates a list and adds it to the PC information. I have almost finished it but I have used the same table from pagefile.

How I can get the created list to be saved on a new table?

Thank you very much for your attention.

audit.vbs

''''''''''''''''''''''''''''''''''''
' Pagefile information '
''''''''''''''''''''''''''''''''''''
comment = "Pagefile Info"
Echo(comment)
On Error Resume Next

Set colItems = objWMIService.ExecQuery("Select * from Win32_PageFile",,48)
For Each objItem in colItems
form_input = "pagefile^^^" & clean(objItem.Name) & "^^^" & clean(objItem.InitialSize) & "^^^" & clean(objItem.MaximumSize) & "^^^"
entry form_input,comment,objTextFile,oAdd,oComment
form_input = ""
Next

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Const USER_PROFILE = &H28&
Dim objFolder, numSize

Set WSHNetwork = WScript.CreateObject ("WScript.Network")
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace(USER_PROFILE)
Set objFolderItem = objFolder.Self

Carpeta = "c:\Documents and Settings"

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.GetFolder(Carpeta)
Set colSubfolders = objFolder.Subfolders
for Each objsubFolder in colSubfolders
FileSize = int(objsubFolder.Size/1048576)
MaxFileSize = int(objsubFolder.Size/1048576)
form_input = "pagefile^^^" & objsubFolder.Name & "^^^" & FileSize & "^^^" & MaxFileSize & "^^^"
entry form_input,comment,objTextFile,oAdd,oComment
form_input = ""
Next


'''''''''''''''''''''''''''''''''''''''''
' Motherboard information '
'''''''''''''''''''''''''''''''''''''''''
comment = "Motherboard Info"
Echo(comment)
On Error Resume Next

Set colItems = objWMIService.ExecQuery("Select * from Win32_BaseBoard",,48)
For Each objItem in colItems
Manufacturer = clean(objItem.Manufacturer)
Product = clean(objItem.Product)
Next
' Counting CPU sockets
Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_Processor",,48)
SocketDesignation = ""
CpuSockets = 0
For Each objItem In colItems
If Instr(SocketDesignation, objItem.SocketDesignation) = 0 Then
CpuSockets = CpuSockets + 1
SocketDesignation = SocketDesignation & objItem.SocketDesignation
End If
Next
' Counting RAM slots
Set colItems = objWMIService.ExecQuery("Select MemoryDevices FROM Win32_PhysicalMemoryArray ",,48)
For Each objItem in colItems
MemorySlots = objItem.MemoryDevices
Next

form_input = "motherboard^^^" & Manufacturer & "^^^" & Product & "^^^" & CpuSockets & "^^^" & MemorySlots & "^^^"
entry form_input,comment,objTextFile,oAdd,oComment
form_input = ""


system_viewdef_os.php

"perfiles"=>array(
"headline"=>__("Perfiles"),
"sql"=>"SELECT * FROM pagefile WHERE pagefile_uuid = '".$_REQUEST["pc"]."' AND pagefile_name NOT LIKE '%pagefile.sys%' AND pagefile_timestamp = '".$GLOBAL["system_timestamp"]."' ORDER BY pagefile_name",
"image"=>"images/shared_drive_l.png",
"table_layout"=>"horizontal",
"fields"=>array("10"=>array("name"=>"pagefile_name", "head"=>__("Name"),),
"20"=>array("name"=>"pagefile_initial_size", "head"=>__("Initial Size"),),
"30"=>array("name"=>"pagefile_max_size", "head"=>__("Maximum Size"),),
),
),


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 51 posts ]  Go to page Previous  1, 2, 3, 4

All times are UTC + 10 hours


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group