Jump to content

Jonesminor

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by Jonesminor

  1. Why? We have a few servers, switches, SAN etc with static IPs but rely on DHCP for everything else. It's worked reliably thus far. Our other printers work fine with host names. The MFD devices were configured in Papercut by host name so I don't see why there should have been an issue. DHCP takes care of updating DNS. --
  2. Hi all, may be of use to someone in the future.. We normally leverage DHCP & DNS wherever possible but with the MFDs connected to Papercut, we've had to switch to static IPs. Since they arrived we had the odd instance of a device showing a connection error but it got to the point where 2 or 3 devices became disconnected every day. I'm not sure what the root cause is.. I trust our DHCP and DNS config; I could ping the hostname and clients could print direct but Papercut thought the devices were disconnected. Switching to static IPs seems to have improved matters!? Thanks. --
  3. Quick update.. We now have the iOptions interface on the Develop/Konica machines - cost was £850 for 7 devices and included additional memory for each device. The major improvement over the previous papercut interface for us is that the list of 'follow me' print jobs are listed as soon as you log in, without having to select a department. Apart from a few teething troubles the machines seem ok and we're saving money. Print volume is down and the weekly reports automatically emailed to department heads seems to have helped to. Seb1780 - we were quoted £327 for an embedded papercut license and this included 3 years support. --
  4. Our solution is quite convoluted but works well and is part of school policy for managing behaviour. Using PHP we pull out the timetable from SIMS and present this on a webpage to staff as a bit of a class toolkit. One of the tools, next to each students name is an 'On Call' button. Clicking this does various things, one is send several emails, another is pass arguments to, and execute a batch file. Using PHP, after much trial and error we settled on psexec to run the batch file. In PHP $command = "psexec -accepteula -d oncall.bat $staff $room $student"; exec($command); In batch file.. set student=%3 set room=%2 set room=%room:_= % set student=%student:_= % msg /time:600 /server:admin-13 * "OnCall Request: Incident involving %student% in %room%. Request by %1 (%date% %time%)" sleep 4 msg /time:600 /server:admin-13 * "OnCall Request: Incident involving %student% in %room%. Request by %1 (%date% %time%)" echo %1 %2 %3 %date% %time%>>log.txt This pops up a message on pc 13 with name of child, staff and room involved and repeats just in case. In our case we actually send the message to 6 PCs and fire off an email too. The admin staff use radios to contact the designated on-call SLT bod. Only problems we have are staff who 'forget' radios and un-official room changes so on-call bod is directed to the wrong room. To get the msg command to work, on the target workstation,n we had to add a value, AllowRemoteRPC as REG_DWORD, value 1 to HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server --
  5. re auto discover.. how is your DNS configured for accessing exchange? In powershell.. Get-ActiveSyncVirtualDirectory | fl internalurl,externalurl Get-AutoDiscoverVirtualDirectory | fl internalurl,externalurl Get-ECPVirtualDirectory | fl internalurl,externalurl Get-OabVirtualDirectory | fl internalurl,externalurl Get-WebServicesVirtualDirectory | fl internalurl,externalurl Make sure these are correct and can be resolved internally. --
  6. Hi all, to update.. The supplier have been back in and installed the card readers. The machines also now display info about empty paper, jams and incorrect paper sizes. It's possible this was happening before but these were either timing out or being cancelled by another user. We were advised our machines would need a memory upgrade for iOptions so we've ordered that and the iOptions interface. Thanks.
  7. Thanks all for the info. Paid_Peanuts - sounds interesting. I would be interested to see a pic of the iOptions screen and do you know a rough cost? Pete / Techmonkey, agree the 'Auto charge to single account' works better but many of our users currently print for more than dept and so for them we use the 'show standard account popup'. I haven't contacted Papercut yet as everything is mostly working. The supplier is coming in this week but I like to be prepared to avoid the fob off. I'll post back any progress. Thanks again. --
  8. Hi all, As a cost cutting exercise, both in terms of leasing and consumables, over the Christmas break we ditched our Ricoh kit and installed 8 new Konica Copiers and upgraded Papercut NG to MF. Everything is working of a fashion and the reporting is excellent but the integration of Papercut with the copiers is horrible to use. Lots of niggles but the two main issues (so far) are.. 1) We're set for department printing, not charging individual users. It's cumbersome to login to a copier. Far too many steps / key presses required. Each user in Papercut is assigned a default department and this is recognised on the Papercut client on the PC but not on the copier.. it has to be selected every time. Card readers are on order that work with our ID badges but this will only solve part of the problem. 2) We have a virtual 'Follow me print & release' queue and physical queues on PCs sited near a copier. When printing direct to a copier, there is no indication on the copier screen of what's happening. For example, on the old Ricoh, if there was a job sent in US Letter instead of A4, it was easy to fix, now only the login screen is displayed. Such jobs disappear into the ether but the dept is charged. Does anyone have experience of Konica / Papercut integration? Does Papercut integrate with other kit any better? Are there better solutions out there? Many thanks in advance. --
  9. Thanks for that. I had another go, same result. Yes, installed 2013 SP1 before the upgrade, only on the test server. Installed ok. I'll have abash with a new R2 VM and fresh install of 2013 SP1. Thanks. --
  10. Has anyone upgraded Server 2012 to R2 with Exchange 2013 SP1 installed? If so, did all go smoothly? Tried this on a test server with a couple of databases and mailboxes. I stopped Exchange services before running the upgrade (perhaps I should have disabled services also?). No AV or DAG to worry about. Post upgrade to R2 I was unable to mount any of the databases; they were showing 'dirty shutdown'. Esentutl /r fixed one empty database, no help with the other 2.. various errors about missing logs and checkpoints. Using the /p switch, the database returns to clean shutdown, mounts then immediately dismounts and goes back to dirty shutdown. I'm going to have another go but would welcome any tips if I'm missing something. Thanks. --
  11. Are the old and new email address the same? --
  12. May help someone in the future.. IE11 failing to install on Windows 7 via WSUS - error 80070005 Error was caused by Sophos automatically adding IE 11 to the list of blocked browsers in App Control policy! --
  13. I'm about to undertake the same task, albeit to a new server. I believe the migration utility will install SQL2012 express or you can install the full version it yourself. I'm going for the latter. I've installed SQL2012 on the new box and selected only the database engine, full text search and management tools. Only problem I came across with the installation was the need for .Net 3 to be installed beforehand. I installed a named instance, SIMS2012 with mixed mode authentication and set a password for the sa login and this instance is on a separate disk to the os and shared SQL components. On the Windows firewall, I've opened port 1433 TCP and 1434 UDP and added the .exe for the sql browser and sql server. Management Studio connects ok from a remote pc. Next step for us is to install SIMS on the new server once capita send me a link to the ISO for the latest installer. You won't need to do this as you're upgrading. I seem to recall the redirection feature didn't work the last time we tried this and we had to manually edit the sims and fms connect.ini files and reconfigure the Document Storage folder. Obviously make sure you have good backups before you start! Good luck. --
  14. I couldn't get ghost to work reliably so took the plunge with ADK (Windows Assessment & Deployment Kit). From this, I've used DISM and Diskpart successfully to image Windows 8 with UEFI. When creating the partitions on the target machine, I had to convert the disk to GPT for UEFI to work. Our Diskpart commands below.. select disk 0 clean convert gpt create partition efi size=100 format quick fs=fat32 assign create partition msr size=128 create partition primary format quick fs=ntfs assign list vol exit The list vol before exit is handy for displaying current volumes before imaging. More here.. Sample: Configure UEFI/GPT-Based Hard Drive Partitions by Using Windows PE and DiskPart -- JB
  15. Many thanks! I shall speak to our supplier re the datacenter option.
  16. Please could someone suggest the best way of licensing our servers, the OS in particular? We switched to EES in 2012, I suspect from a Schools Agreement. Previously, the latest server releases would magically appear on the VLSC but I believe we now have to license servers separately. We're testing Server 2012 but will probably wait for R2 before going live. We have 10 physical servers, 5 of which are running VMware ESXi, the other 5 2008 R2. There are 15 virtual servers running 2008 R2. We run ISA, Exchange and SharePoint virtually and we have separate licenses for these. If possible, we'd pay annually with access to all the latest Server OS releases. Thanks in advance. --
  17. Hi Nick, Turned on logging for FSRM.. someting was trying to write a temp.ini file? All working now, thanks. --
  18. Nick, What is the file type that is used to test write ability? I suspect it's to do with File Screens on the 2003 box. Thanks.
  19. Hi Nick, Mappings below.. %homedir% I've installed Firebug and can view the debug info. Not sure which action I should be looking for. I've tried to compare a working and non working logon and cannot see any differences.. nothing that jumps out anyway. Thanks.
  20. Should also have mentioned that the students with the problem CAN delete files and folders even though they cannot upload. Thanks.
  21. Runing HAP+ v8.7 on 2008 R2 member server. Year 7 home folders are hosted on a 2008R2 member server. Years 8~11 on a 2003 member server. Year 7, everything working ok. Years 8~11 the Upload & New Folder buttons disappear after the page loads. Share & NTFS permissions are the same for all students; they have Change share permission and Modify NTFS. I've tried tweaking the permissions and disabling the Read/Write checks. Hope someone can help!
  22. Sorry, should have mentioned this is for our students using webmail only. If using Outlook, the OAB comes into play.
  23. I changed the msexchquerybasedn attribute to something other than the default, in our case the DN of the OU where our students reside. This basically gives us an empty GAL for students. In 2008 R2 (and possibly 2008, don't know never used it) you can do this in AD users and computers, open the properties of a user and select the Attribute Editor tab. You can also do it on mass using powershell or look for a neat tool AD Modify which is a must have for tweaking exchange. You need the later version for exchange 2010. --
  24. dsmod group with -addmbr and -rmmbr dsmod group "CN=Group, OU=GroupLivesHere, OU=ParentOU, DC=your, DC=domainname" -addmbr "CN=Domain Users, CN=Users, DC=your, DC=domainname" --
  25. You're welcome. We had some problems a while back with unexpected filtering results and need an easier way of checking categories than the web based lookup tool or trawling thorugh testlogserver results. I found this on the websense site. https://www.websense.com/SupportPortal/SupportKBs/1749.aspx Cheers. --
×
×
  • Create New...