howartp
Members-
Posts
3,884 -
Joined
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by howartp
-
We use Joomag. Both myself and my technician (who does the web / VLE stuff) absolutely hate it but Deputy Head (branding etc) insists. We both immediately use the "download PDF" link we provide alongside whenever we have to view one :-)
-
If I'm understanding your desired logic, I'd make use of Target.Column and Target.Row instead of intersect() and KeyCells. Then I'd maintain a currentRow variable which holds the row number of the last row that's been filled in. In rough code it would be: sub worksheet_change(target) { If target.row > currentRow { currentRow = target.row range(target.row,1) = sHostname } } I'm on my phone so you'll need to define sHostname etc as you have above.
-
Hi. See attached for a trip report I did last week for exactly the same purpose! When running it, it asks for the SHORT code of the User Defined Group - which must match exactly. Peter Trip info for students by UDF.zip
- 1 reply
-
- reporting in sims
- user defined groups
-
(and 1 more)
Tagged with:
-
What are you trying to achieve and what is your actual question? We do use staff codes for all staff, and they (by default) get uploaded by MIS:Sync. We've just switched cashless system to NRS and now use the misid for ParentPay instead - I had to send them a list of staff codes, MIS ID, Forename and Surname and they manually switched over the existing accounts. Peter
-
We use Intake201* for everything administrative within the department here. I don't think we do anything with display names, they just duplicate if it happens.
-
[ipad] Sharing files from iPad to Windows.
howartp replied to Koldov's topic in Mobile Devices & Tablets
Another vote for FoldR. Not the cheapest solution, particularly if site license, but we've used it for 4-5 years now and won't be leaving any time soon. Web browser access from home PCs or any device that doesn't have the app installed is another benefit. -
Good. They're also "compatible" with Inventry, but you can't use the existing Inventry card readers or wall-mounted quickscans, and you have to manually re-register any new card you issue.
-
Be careful with what NRS say is compatible with their software, and what is actually compatible with how any common sense user expects it to work. I'm not saying it's not compatible, but just make sure you check the workflow of how users use whatever integration you're expecting. We integrate NRS with three products, and working very well, but TASC isn't one of them.
-
We've got same problem with AirWatch at moment. iPad enrols/pulls profiles/etc ok on technicians home wifi but not in school behind Smoothwall. Will be hitting it with a stick troubleshooting this week.
- 7 replies
-
- deployment
- ipads
-
(and 2 more)
Tagged with:
-
That's also what we were quoted for in a cashless tender two months ago.
-
We've had the same since Spring 17 release, if not Autumn release. I didn't notice the patches referred to above so I've not installed any; we're on Summer now and still problem.
-
I can't believe you asked this today - I was going to ask exactly the same question! Even better - we already have an account manager with them! Excellent 2 minutes work crossed off my list.
-
We're pretty much the same as JThompson.
-
Paxton Net2 Pro - any known annoyances/design issues from an IT POV?
howartp replied to pete's topic in Physical Security
We've just integrated NRS with Papercut and (about to do) Paxton and Inventry. Loving the process of reprinting cards and it updating all the databases. -
As Steve says, your code was messed up and thus confusing. What are you trying to achieve in layman's terms? Your original script you posted did this: 1) Copied 2 newest files from Scripts to Test 2) Deleted any files in Scripts older than 365 days 3) Copied all txt files from Scripts to Test What do you want it to do then one of us can fix it for you.
-
Can you post a sample of your before and after tables?
-
Ours is immediate on RM CC4.
-
WinWord tends to be the popular choice amongst my staff.
-
Things you haven't said/thought in quite some time...
howartp replied to Dos_Box's topic in General Chat
I must now enter the confirmation ID in the boxes on screen, starting with Block A... When I have finished, I must press the hash key. (Cashless Catering till that's gotta be 10 years old, XP Embedded, just decided it wasn't activated - we're changing suppliers at half term so I reckon it's got wind of this on the grapevine!) -
I'm not sure this is possible. You can use the command line to populate custom user properties that you can then include in the popup, so you could theoretically query the DB every half hour or so and set a property, but it wouldn't always be up to date at the time of print.
-
This is mine which I used last week. ################################################################################### # # $BasePath is the folder in which you want to create a class set # # Copy the FolderMakerBat.bat and FolderMaker.PS1 files to the $BasePath # # Set $BasePath in the script below - Don't forget the \ on the end # # Example $BasePath = "\\server\Share\PAHTest\" # # By default, $AccessMode is "Normal" which gives each student # modify rights to their own folder. They cannot access each others folders. # # If you want students to access (read) each others folders, as well as modify their own, # set $AccessMode to "Public" # # If you want the student to only be able to write (not modify) their folder # set $AccessMode to "WriteOnly" # # Now create FolderMaker.csv with UserID and FullName columns (including header) # and put it in $BasePath folder. # There is a SIMS report that achieves this: Reports > Run Report, Focus > Class, 'FolderMaker IT Support' # # On Svr001, browse to $BasePath and double-click on the FolderMakerBat.bat # ################################################################################### $BasePath = "\\server\Photostore\Intake2012\" $AccessMode = "Normal" ################################################################################### # # Do Not Edit Below Here # ################################################################################### foreach ($student in Import-Csv $($BasePath + "FolderMaker.csv")) { $FolderPath = $BasePath + $student.FullName write-host "Folder: " $FolderPath write-host "FullName: " $Student.FullName write-host "UserID: " $Student.UserID new-item $FolderPath -type directory $acl = Get-Acl $FolderPath $acl.SetAccessRuleProtection($True, $False) $ruleAdmin = New-Object System.Security.AccessControl.FileSystemAccessRule("Administrators", "FullControl", "ContainerInherit, ObjectInherit", "None", "Allow") $ruleStaff = New-Object System.Security.AccessControl.FileSystemAccessRule("StaffBoth","Modify", "ContainerInherit, ObjectInherit", "None", "Allow") if ($AccessMode -eq "WriteOnly") { $ruleStudent = New-Object System.Security.AccessControl.FileSystemAccessRule($student.UserID, "Write", "ContainerInherit, ObjectInherit", "None", "Allow") } else { $ruleStudent = New-Object System.Security.AccessControl.FileSystemAccessRule($student.UserID, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow") } $acl.AddAccessRule($ruleAdmin) $acl.AddAccessRule($ruleStaff) $acl.AddAccessRule($ruleStudent) if ($AccessMode -eq "Public") { $rulePublic = New-Object System.Security.AccessControl.FileSystemAccessRule("SCA Students","Read", "ContainerInherit, ObjectInherit", "None", "Allow") $acl.AddAccessRule($rulePublic) } Set-Acl $FolderPath $acl Get-Acl $FolderPath Remove-Variable acl write-host "------------------------------------------------------------------------------------------" } ##SetAccessRuleProtection($True, $False) //BlockInheritance?, CopyWhatsInherited? ##New-Object System.Security.AccessControl.FileSystemAccessRule("UserID","Access","SubInheritance", "Propogation", "AllowDeny")
-
I've got two of these for POE as the cheapest option on ebuyer for 8-port POE switches. They have fibre SFP ports as FN-GM mentioned. Most 8-port switches still only have 4 POE ports so you got to be careful if you expecting more than 4 in future.
-
...using an encryption/substitution method called "plaintext"...?
-
Interesting Home/Personal network setups
howartp replied to Davit2005's topic in Learning Network Manager
It's an exceptionally well supported and developed product with a great community of plugin developers - something to be admired in this day and age. Have a look on their forum; there's tonnes of support on there - including yours truly! -
Interesting Home/Personal network setups
howartp replied to Davit2005's topic in Learning Network Manager
Yep. Indigo Domotics - Advanced Mac-based Smart Home Hub My DSC Alarm panel is (was & will be) connected to LAN so when we set/unset the alarm, various things happen in house.
