Jump to content

Recommended Posts

Posted

Hi All,

 

I work as a IT Tech in a school in Nottinghamshire and have been assigned with the job of finding some helpdesk software for staff to use.

 

I've googled around a bit and have seen a lot out there, would appricate some feedback from people. We even have a little bit of a budget for this so it doesn't have to be 'freebie' software.

 

Anyone within the Nottinghamshire area that has a helpdesk solution in place they can chat to me about or even allow me a quick visit to check to see it in action?

 

Any help would be greatly apprciated.

 

Richard

Posted
We use Spiceworks, its free and is good for a basic helpdesk. We do want to roll-out a helpdesk to other departments in school so we will probably be moving off it.
Posted

We use osticket. It's PHP/SQL based so needs a web server to run on. We have it running on a really old desktop and it runs fine. If you know a bit about PHP you can write your own scripts, for example I have a page that just displays how many open tickets there are that is constantly displayed on a screen in the office.

 

It can also be setup to pull emails from an inbox and create tickets out of those.

Posted
We use Spiceworks, its free and is good for a basic helpdesk. We do want to roll-out a helpdesk to other departments in school so we will probably be moving off it.

Not looked at it in depth but SW now allows you to create multiple departments in the helpdesk if that helps you?

 

edit: Oh another vote for Spiceworks :)

Posted
Not looked at it in depth but SW now allows you to create multiple departments in the helpdesk if that helps you?

 

edit: Oh another vote for Spiceworks :)

 

Can you? Didn't know that.

 

It is however a pain that you can't use ldap for the back end and you cant make it so people cant edit other tickets.

 

Thanks

Posted
Have you got it linked to Active Directory? It is the one thing that is stopping me from using it.

 

I used it with AD for about 4 years - its a faff but totally doable, until I moved to Spiceworks.

 

The beauty of RT is that it is crazily customisable - you can get it doing all sorts of fun things. The downside is the complexity in doing so.

Posted
Another one for Spiceworks here. I use it as an email-only helpdesk. Saves staff having to learn something different (unless, like here, they're a bit pathetic at using email, too).
Posted
I used it with AD for about 4 years - its a faff but totally doable, until I moved to Spiceworks.

 

The beauty of RT is that it is crazily customisable - you can get it doing all sorts of fun things. The downside is the complexity in doing so.

Don't suppose you still have some of the config's for it?

Posted
Don't suppose you still have some of the config's for it?

 

# Any configuration directives you include  here will override
# RT's default configuration file, RT_Config.pm
#
# To include a directive here, just copy the equivalent statement
# from RT_Config.pm and change the value. We've included a single
# sample value below.
#
# This file is actually a perl module, so you can include valid
# perl code, as well.
#
# The converse is also true, if this file isn't valid perl, you're
# going to run into trouble. To check your SiteConfig file, use
# this comamnd:
#
#   perl -c /path/to/your/etc/RT_SiteConfig.pm


$DatabasePassword = 'rt_pass';


$MailCommand = 'sendmailpipe';
$SemdmailArguments = '-oi';


$CorrespondAddress = '[email protected]';
$CommentAddress = '[email protected]';


$Timezone = 'Europe/London';


#Set($LogToSyslog , undef);
#Set($LogToScreen , 'error');
#Set($LogToFile , 'debug');
#Set($LogDir, '/opt/rt3/var/log');
#Set($LogToFileNamed , "rt.log"); #log to rt.log




Set( $rtname, 'site/rt');
Set( $Organization, "ORG");
Set ($WebBaseURL , 'http://SITE');
Set ($WebPath , '/rt');


Set($WebImageURL, $WebPath . "/NoAuth/images/");
Set($LogoURL, $WebImagesURL . "logo.gif");
Set($LogoLinkURL, "http://SITE/rt");
Set($LogoImageURL, $WebImagesURL . "logo.gif");
Set($LogoAltText, "ICT Helpdesk");


#Set(@Plugins,(qw(Extension::QuickDelete)));
Set(@Plugins,'RT::FM','RT::IR','RTx::Statistics', 'RTx::Calendar','RTx::Tags',(qw(RTx::EmailCompletion)),qw(RT::Authen::ExternalAuth));


Set($HomepageComponents, [qw(QuickCreate Quicksearch MyCalendar
    MyAdminQueues MySupportQueues MyReminders RefreshHomepage)]);


# THE EXTERNAL AUTH


Set($WebExternalAuth, 0);
Set($WebExternalAuto, 0);


Set($ExternalAuthPriority, ['My_LDAP']);
Set($ExternalInfoPriority, [ 'My_LDAP']);


Set($ExternalServiceUsesSSLorTLS, 0);


Set($AutoCreateNonExternalUsers, 0);


Set($ExternalSettings, {
'My_LDAP' => {
'type' => 'ldap',
'auth' => 1,
'info' => 1,
'server' => '10.5.143.10',
'user' =>
'CN=Administrator,CN=Users,DC=domain,DC=county,DC=gov,DC=uk',
'pass' => 'Password',
'base' => 'ou=Staff,ou=Managed Users,dc=domain,dc=county,dc=gov,dc=uk',
'filter' => '(objectClass=*)',
'd_filter' => '(userAccountControl:1.2.840.113556.1.4.803:=2)',
'tls' => 0,
'net_ldap_args' => [ version => 3 ],
'attr_match_list' => [ 'Name',
'EmailAddress',
'RealName',
'WorkPhone',
'Address2'
],
'attr_map' => {
'Name' => 'sAMAccountName',
'EmailAddress' => 'mail',
'Organization' => 'physicalDeliveryOfficeName',
'RealName' => 'cn',
'ExternalAuthId' => 'sAMAccountName',
'Gecos' => 'sAMAccountName',
'WorkPhone' => 'telephoneNumber',
'Address1' => 'streetAddress',
'City' => 'l',
'State' => 'st',
'Zip' => 'postalCode',
'Country' => 'co'
}}}
);
1;

 

That's what I used.

  • Thanks 1
Posted
If you want a free one, and have less than 100 users then have a look a SysAid Free Edition We have used SysAid for a number of years and it all works really well. The paid version we use is quite powerful with the added on modules. Not too expensive to buy either.
Posted
I'll add a lonely voice for Request Tracker RT: Request Tracker - Best Practical , it does need some linux skills but is fast and fully configurable.

 

Another vote here for RT its soo flexible and can be made to do alot of things. We have ours monitoring 4 fairly active mailboxes with IT, premises and office staff using it to keep track of jobs and makes it really easy to shift jobs between departments if needed.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...