owen1978
Members-
Posts
173 -
Joined
-
Last visited
-
Has anyone recently done an MIS comparision? When I mean recent within the last year? We are an International school going down the road of looking for a new MIS. Currently we use SIMS. We dont charge fees, so fee billing functionality is not required. Thank you
-
I did test thing setting out but it was the same.... There is no issue with joining a wifi network once I am logged in only at the login screen it seems to happen.
-
Hopefully there is a simple answer.... We have domain machines using radius (user authentication) and gpo pushing out the WIFI SSID etc... I know once the user logs out it drops the WIFI connection. Thats not the issue.. The issue is at the login screen. When I select either my hotspot or home Wifi connection at this point by going to the bottom right corner and selecting the WIFI network & entering the password. It eventually connects and then it disconnects after a few seconds. Why? Is it something to do with that its a domain machine and its now allowed by design? or it is something to do with the GPO for the WIFI SSID???
-
That's a bit much trouble for something that should be straightforward. Where is the configuration file kept for the deployment service? How does it now which server to connect to?
-
We have two teams... Systems & Desktop Support... Systems will deal with the patching side of things. We need Desktop support to deploy or fix client related issues. As part of our security policies, desktop support are now allowed to logon on to servers. I have installed the deployment ui on there computers for one stream of the school but how do I have another one installed. Ideally I'm looking for two desktop shortcuts on their PC's one for each deployment database.
-
We have 2 different streams of schools thus we have two SIMS servers. We have techs who need access to both deployments on their PC's so they can push SIMS out to users from either of the schools. Can it be done?
-
Thanks for all your replies... Managed to sort it... I'm just using as quick info, not going to use it for anything else.
-
I came across a script on the web which displays the free ram of a computer which i want to use with bginfo but it doesn't work and I tried but im not great with WMI/VBS, can someone please help Set winmgt = "winmgmts:{impersonationLevel=impersonate}!//" Set WMI_Query = GetObject(winmgt).InstancesOf('Win32_OperatingSystem') For Each Item in WMI_Query FreeRam = Item.FreePhysicalMemory Next FreeRam = Round(FreeRam/(1024)) Echo “” & FreeRam & ” MB”
-
Don't worry about the 500 user limit, must of the users have been moved in to the group manually, its just automating the new users that get added to the teachers OU's Take your time. enjoy the rugby
-
Thank you all for your replies... Thank you Plum for your code... I have come across a few things that didn't work.... 1) Every time the script is run it adds the same users even though they are already a member of $ADGroupname - so tracing which new users have been added would be difficult 2) When you have more than one OU to search through.. It adds the users to the group but then immediately removes them I can revert to my original script which seems to solve the problem - so its just a minor issue, but I prefer the elegance of your coding if you could get it to work if($member.distinguishedname -notlike "*OU=Staff OU1,$ADDomain*" -and $member.distinguishedname -notlike "*OU=Staff OU2,$ADDomain*") And this would be an additional request which would make this perfect (but optional) Some how get it to email logfile it created at the end of the process
-
Below is my script that moves users who are found in a particular ou(s) and adds them to a security group Also removes users when they are no longer in that OU. Scripts works great.... but cannot get it to display any output to the text file... its empty... When the script is run.... there is no console output... it just runs Need it to display which users have been added or removed from the security group Import-Module ActiveDirectory ## Your AD domain name $ADDomain = 'dc=contoso,dc=com' ## Dynamic group name $ADGroupname = 'Group1' ## Logfile $log = "c:\logs\dynamic_grp$(Get-Date -format ddMMyy).txt" ## OU list to search users $ADOUs = @( "OU=Staff OU1,$ADDomain", "OU=Staff OU2,$ADDomain" ) $users = @() # Searching users in the specified OUs foreach($OU in $ADOUs){ $users += Get-ADUser -Filter * -SearchBase "$OU" } foreach($user in $users) { Add-ADGroupMember -Identity $ADGroupname -Members $user.samaccountname -ErrorAction SilentlyContinue |Out-File -filepath $log -Append } ## Make sure that each user in the group meets the selection criteria. If not, they are removed from the group $members = Get-ADGroupMember -Identity $ADGroupname foreach($member in $members) { if($member.distinguishedname -notlike "*OU=Staff OU1,$ADDomain*" -and $member.distinguishedname -notlike "*OU=Staff OU2,$ADDomain*") { Remove-ADGroupMember -Identity $ADGroupname -Members $member.samaccountname -Confirm:$false |Out-File -filepath $log -Append } }
-
I'm currently the ICT Operations Manager at this school. ICT Operations Manager GR4 £26,999 - £33,799 St Saviours CofE Primary School, Alum Rock Rd, Saltley, Birmingham B8 1JB Term Time Only - 36.5 hours per week pro rata St Saviour’s School is seeking to appoint an ICT Operations Manager, to take responsibility for the day to day school's computer network, to provide technical support to staff and pupils and contribute to decisions on the development of ICT within the school. Experience of the education sector would be an advantage. This is an opportunity to contribute fully to the life of this school. This position would suit someone: • With well-developed IT skills including hardware and software maintenance • With a strong knowledge of IT network maintenance • With an analytical mind and the ability to solve problems independently • Able to be flexible work under pressure and prioritise; willing to support the learning of pupils • Highly organised with good communication skills and an ability to work closely with the senior leadership • Able to work with all staff and pupils in an education setting • Initiative and ability to work independently • Some work during school holidays for maintenance & projects may be required St Saviour’s is an equal opportunities employer and is committed to safeguarding and promoting the welfare of children. All posts are subject to the normal statutory checks. Further details of this post and an application form may be obtained from the School's Website. Visits to the school are welcome http://www.stsavioursceprimary.co.uk/job-vacancies/ Closing date: Monday 16th Sept 2019 Immediate start or as soon as possible
-
Hi, Thanks for all your replies. I will start my job around about mid September, so I don't have access to a my capita account. I would have like to prepared myself a bit. I come from the CMIS world where the wasn't any local client software to install on users machines just a shorcut to the database & program on a shared drive. I hope they have SOLUS 3 it sounds great, and the moment I have no details, so I am really shooting in the dark. So SIMS has client software that needs to be updated as well as the main application on the server?

