Knil92
Members-
Posts
208 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by Knil92
-
is there any group policies that stops powershell scripts from being run?
-
Might not be this but have you checked the security tab for the folder you're trying to create the zipped file?
-
[sims] FMS timeout? SQL - Communication Link Failure
Knil92 replied to Koldov's topic in MIS Systems
If they arent using fms for a while, would it be worth logging out? If they arent using it for a while, and locking their computer, going for dinner etc... then I've seen some network adapters don't wake up properly when users come back which could be effecting it. You could try the power saving options to not turn the screen off when the workstation is locked and see if it keeps the network connection open? -
It should be attached, but I created an excel sheet that can run a report without being logged into sims, so it should give you an idea of how to go about it.SIMS Report.zip
-
Word addins not showing from SIMS word templates
Knil92 replied to Chris2785's topic in How do you do....it?
Does the add in's tab appear when you log in as an administrator on the workstation? -
Word addins not showing from SIMS word templates
Knil92 replied to Chris2785's topic in How do you do....it?
Thats an odd one, do you get the add ins tab when you go to design a report and edit the template field? -
Word addins not showing from SIMS word templates
Knil92 replied to Chris2785's topic in How do you do....it?
Is the trust settings set to disable all macros? -
Word addins not showing from SIMS word templates
Knil92 replied to Chris2785's topic in How do you do....it?
What version of word are you using? -
Word addins not showing from SIMS word templates
Knil92 replied to Chris2785's topic in How do you do....it?
is it a mail merge report template they are opening? if it is, then the data tags will be under the mailings tab in the insert merge fields -
I just went and read your comment, yeah, mines abit more janky than yours lol
-
You could add a variable to the keypress and then add a check to see if its more than one and if it is dont do anything on the other bit of code?
-
Sims Query code 6540Q showing on School workforce census
Knil92 replied to Sector001's topic in MIS Systems
is there a role of head teacher in the contract? I would also check the tools>staff>pay related section in sims, and check the swc post in the leadership pay scale and make sure that it's set to headteacher -
if you have the .rptdef file you can change it to .zip and extract it and it will be in there. Once you've made changes you will need to reattach it to the report in sims.
-
I found this that might be some help to you https://serverfault.com/questions/395417/microsoft-windows-install-updates-and-restart-instead-of-install-and-shutdown/825152
-
Yeah I always get confused with the amount of "'s and it gets even better when you're trying to make a batch file from vbs, that creates a text file with special characters
-
The excel bit should look something like; cmd = cmd.exe /K C:\Program Files (x86)\SIMS\SIMS .net\CommandReporter.exe /user:cn /password:"" /report:"SIMS Databook Report" /output:"\\User\Documents\\Testing\Ce11_SIMS_report_output.xml" /paramfile:"\\User\Testing\SIMS_filters_def.xml" Shell (cmd)
-
So you could try using the /K to keep the cmd window open after it runs the shell arguments and see if its coming back with any errors?
-
Automated Redaction Software?
Knil92 replied to zzyzxuk's topic in Data Protection & Information Handling
I'm sure you'd be able to use a csv and powershell to go through documents and if it finds a name or e-mail address or phone number etc... from the csv in the document it could just replace it with *'s -
Software to converts CSV into .ics format
Knil92 replied to genesis's topic in Learning Network Manager
a quick google found this https://csv-to-ics.com/ might want to run it through a virus scanner before you use it though. -
The price aside, what do you think of the specs for a single board computer?
-
Hey, What do people think of DFRobot's LattePanda? https://www.dfrobot.com/product-1729.html Basically a windows 10 SBC with a built in arduino leonardo. From what I've seen its quite powerful for a SBC.
-
if you had it in an excel spreadsheet, you could use powershell to read the spreadsheet and create a ctf and then import the ctf with all the extra information like contact info and stuff.
- 11 replies
-
- admissions
- form
-
(and 2 more)
Tagged with:
-
I've seen this and it made me laugh XD
-
So do you reckon this one will be better for emulators?
-
You could do something like this: @[u][url="http://www.edugeek.net/member.php?u=16971"]echo[/url][/u] off::Ask echo Enter Source Directory to copy : set SRC= set /P SRC=Type input: %=% echo Enter Destination Directory to paste : set DEST= set /P DEST=Type input: %=%xcopy /s /e /y %SRC% %DEST% >> copy.bat schtasks /CREATE /TN "Copy Files" /TR "C:\copy.bat" /ST 21:00 /F It should create a batch file with the xcopy command with the source and destination locations, and then create a scheduled task that runs at 9pm that will run the xcopy batch file.
