ZenIT
Members-
Posts
8 -
Joined
Reputation
10 GoodAbout ZenIT

Personal Information
-
Occupation
Network Manager
-
Location
Derbyshire
-
In this key position, you will work with the Network Manager to ensure that an efficient and effective service and support is provided to students and staff who use the school’s extensive IT systems. We are looking to appoint an efficient, enthusiastic and well-organised person with a passion for problem solving. This is a varied role with no two days being the same, and provides many exciting opportunities for the successful candidate. The ideal candidate will hold a qualification in IT, computer science or have recent industry certifications such as MCSE, CCNA and CompTIA+. Ideally, you will also have experience of management of Microsoft networks and active directory as well as experience in management of switches, wireless APs, firewalls and the Microsoft 365 platform. The school has a good record in supporting the professional development of staff; we will support the right candidate in working towards IT certification. We are lucky to work in modern well-equipped accommodation, with superb facilities, situated on a beautiful site on the edge of the Peak District National Park. We are within easy commuting distance of Manchester, Macclesfield, Sheffield, Chesterfield and East Cheshire. Hours: 37 hours per week, 52 weeks per year Salary: £28,129 - £30,038 Closing date: Friday 21st April 2023 Interview date: w/c Monday 8th May 2023 Job start: as soon as possible. Full details of the post can be found on the school website. Advert - IT Support Engineer.pdf Headteacher Letter - IT Support Engineer.pdf Briefing Pack - IT Support Engineer.pdf Job Application Form - Derbyshire County Council.pdf
-
There are two errors in my original post that were introduced by vBulletin while I was previewing my post. There are spaces between INBOX_DIR= and "S:\YourPathGoesHere\ExamsIN" which shouldn't be there and will result in MSIEXEC syntax help window popping up and failed installation. The correct batch file code should look something like this: @ECHO OFF REM Map appropriate drives if they are not present in the installation environment. Installation will fail if MSIEXEC can't access those drives. IF NOT EXIST W:\ (NET USE W: "\\YourUNCPathToW:Folder" /persistent:no >NUL: 2>&1) IF NOT EXIST S:\ (NET USE S: "\\YourUNCPathToS:Folder" /persistent:no >NUL: 2>&1) REM Run installation START "A2C Transport App Installation" /WAIT /B MSIEXEC /I "\\YourUNCPathToInstallerFile\A2C Transport Application.msi" /QB-! USE_CUSTOM_APPDATA="1" APPDATA_DIR="W:\YourPathGoesHere\A2C\Appdata\" DO_INBOX_OUTBOX="1" INBOX_DIR="S:\YourPathGoesHere\ExamsIN\" OUTBOX_DIR="S:\YourPathGoesHere\ExamsOUT\" You need to create and map your own W:\ and S:\ folders (or whichever letters you have available). If you create those folders somewhere on the internal network (maybe a server or a storage) that is permanently available to the users that are going to be running A2C software then you could deploy A2C software to several computers and users would be able to run the software from any of those computers (but most likely not simultaneously!). The folders need to be mapped for A2C users with the same drive letters that you specified as properties on the command line and mapped during installation. Certificates and keys are stored in APPDATA_DIR (which you specify during installation). If APPDATA_DIR is in some network folder then those certs and keys won't have to be downloaded/supplied on each individual computer with A2C software installed.
-
There are two errors in my original post that were introduced by vBulletin while I was previewing my post. There are spaces between INBOX_DIR= and "S:\YourPathGoesHere\ExamsIN" which shouldn't be there and that's why you are getting MSIEXEC syntax help window. The correct batch file code should look something like this: @ECHO OFF REM Map appropriate drives if they are not present in the installation environment. Installation will fail if MSIEXEC can't access those drives. IF NOT EXIST W:\ (NET USE W: "\\YourUNCPathToW:Folder" /persistent:no >NUL: 2>&1) IF NOT EXIST S:\ (NET USE S: "\\YourUNCPathToS:Folder" /persistent:no >NUL: 2>&1) REM Run installation START "A2C Transport App Installation" /WAIT /B MSIEXEC /I "\\YourUNCPathToInstallerFile\A2C Transport Application.msi" /QB-! USE_CUSTOM_APPDATA="1" APPDATA_DIR="W:\YourPathGoesHere\A2C\Appdata\" DO_INBOX_OUTBOX="1" INBOX_DIR="S:\YourPathGoesHere\ExamsIN\" OUTBOX_DIR="S:\YourPathGoesHere\ExamsOUT\" You need to create and map your own W:\ and S:\ (or whichever letters you have available) folders. If you create those folders somewhere on the internal network (maybe a server or a storage) that is permanently available to the users that are going to be running A2C software then you could deploy A2C software to several separate computers and users would be able to run the software from any of those computers (but most likely not simultaneously!). The folders need to be mapped for A2C users with the same drive letters that you specified as properties on the command line and mapped during installation.
-
Software doesn't start if APPDATA_DIR, INBOX_DIR, OUTBOX_DIR are UNC paths and errors with: "...System.Data.SQLite.SQLiteException (0x800007FF): unable to open database file at System.Data.SQLite.SQLite3...". The default installation path is: C:\Program Files (x86)\A2C Transport Application A2C Transport App stores settings in XML file: C:\Program Files (x86)\A2C Transport Application\jcq.a2c.client.gui.exe.config You need to specify those folders as mapped drives or local paths (with a drive letter assigned to that directory/partition/disk, etc.) something like that in the config file: ... The app needs to write to those folders so user running it needs to have modify permissions on those folders (and subfolders) and at least traverse permissions on all the folders above those three. The MSI should accept those properties at the command line: USE_CUSTOM_APPDATA="1" APPDATA_DIR="W:\YourPathGoesHere\A2C\Appdata\" DO_INBOX_OUTBOX="1" INBOX_DIR= "S:\YourPathGoesHere\ExamsIN\" OUTBOX_DIR="S:\YourPathGoesHere\ExamsOUT\" The command line could look like this (Run it from elevated command prompt): MSIEXEC /I "\\YourUNCPathToInstallerFile\A2C Transport Application.msi" /QB-! USE_CUSTOM_APPDATA="1" APPDATA_DIR="W:\YourPathGoesHere\A2C\Appdata\" DO_INBOX_OUTBOX="1" INBOX_DIR= "S:\YourPathGoesHere\ExamsIN\" OUTBOX_DIR="S:\YourPathGoesHere\ExamsOUT\" Or you could create a transform file (MST) with all those properties and use it to modify original MSI during installation.
-
The other thing to try is to use mapped drives for folders that are not local instead of UNC paths. Software doesn't start if APPDATA_DIR, INBOX_DIR, OUTBOX_DIR are UNC paths and errors with: "...System.Data.SQLite.SQLiteException (0x800007FF): unable to open database file at System.Data.SQLite.SQLite3...". The default installation path is: C:\Program Files (x86)\A2C Transport Application A2C Transport App stores settings in XML file: C:\Program Files (x86)\A2C Transport Application\jcq.a2c.client.gui.exe.config You need to specify those folders as mapped drives or local paths (with a drive letter assigned to that directory/partition/disk, etc.) something like that in the config file: ... The app needs to write to those folders so user running it needs to have modify permissions on those folders (and subfolders) and at least traverse permissions on all the folders above those three. The MSI should accept those properties at the command line: USE_CUSTOM_APPDATA="1" APPDATA_DIR="W:\YourPathGoesHere\A2C\Appdata\" DO_INBOX_OUTBOX="1" INBOX_DIR= "S:\YourPathGoesHere\ExamsIN\" OUTBOX_DIR="S:\YourPathGoesHere\ExamsOUT\" The command line could look like this (Run it from elevated command prompt): MSIEXEC /I "\\YourUNCPathToInstallerFile\A2C Transport Application.msi" /QB-! USE_CUSTOM_APPDATA="1" APPDATA_DIR="W:\YourPathGoesHere\A2C\Appdata\" DO_INBOX_OUTBOX="1" INBOX_DIR= "S:\YourPathGoesHere\ExamsIN\" OUTBOX_DIR="S:\YourPathGoesHere\ExamsOUT\" Or you could create a transform file (MST) with all those properties and use it to modify original MSI during installation.
-
We are looking to appoint a highly technical, efficient, enthusiastic and well organized person with a passion for problem solving. This is a varied role with no two days being the same and provides many exciting opportunities for the successful candidate. The ideal candidate will need to hold a qualification in IT Computer Science or recent industry certifications such as MCSE, CCNA and CompTIA+. You will also have experience of management of Microsoft networks and Active Directory as well as experience of management of switches, wireless APs, firewalls and Microsoft 365 platform. Full details of the post can be found on the school website. Advert - IT Support Engineer.pdf Briefing Pack - IT Support Engineer.pdf Headteacher Letter - IT Support Engineer.pdf Job Application Form - Derbyshire County Council.pdf
-
We are seeking an enthusiastic, highly committed and innovative professional with excellent communication and interpersonal skills. This post would suit an experienced candidate. We are lucky to work in modern well-equipped accommodation, with superb facilities, situated on a beautiful site on the edge of the Peak District National Park. We are within easy commuting distance of Manchester, Sheffield, Chesterfield, Macclesfield and East Cheshire. Full details of the post can be found on the school website. Alternatively, please email completed application form to Diane Hibbert, Personnel Administrator. Hours: 37 hours per week, 52 weeks per year Salary: £25,753 - £27,629 Closing date: Thursday 3rd December 2020 Job start: as soon as possible. The school is committed to safeguarding and promoting the welfare of children and expects all staff to share this commitment. This post is subject to an enhanced DBS clearance. Advert - IT Support Engineer.pdf Job Application Form - Derbyshire County Council.doc Job Application Form - Derbyshire County Council.pdf Briefing Pack - IT Support Engineer.pdf
-
Hello everybody I'm network manager in a high school in Derbyshire. I've been a member for a long time but never introduced myself or posted anything. I mainly used this forum to find information about your real life experience with different software suites, providers, suppliers, etc. I hope to get involved a bit more in sharing my experience with you.
- 4,289 replies
-
- 1
-
-
- assistance
- background
-
(and 2 more)
Tagged with:
