-
Posts
113 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by thesk8rjesus
-
Another option for you to look at, which we suffer from is if you have Windows Hello enabled on the users and for us it's waiting for the user to finish that process first before InTune will finish correctly. We have to advise our users to press continue anyway, and then once windows is all happy it opens that screen back up.
-
EXA and Chromebooks Google Play Store
thesk8rjesus replied to thesk8rjesus's topic in Internet Related/Filtering/Firewall
Yeah, this is something I have looked at and we were able to get the images unblocked, but then it got to unblocking the downloads and EXA said that they would need to turn off Google keyword filtering before being able to allow it. -
I don't know if anyone else has come up against this issue yet. We have Chromebooks that have the capability to install android apps, and as such we have pushed out some from the Admin console. The problem is that the Chromebooks will not connect to the play store at all. If we put the Chromebooks on a wireless that has un-filtered access it works fine and the apps download. We spoke with EXA about it and they have said they can't unblock it without unblocking all keyword filtering on Google, which is not something we are willing to do. Has anyone come up against the same problem?
-
We purchase ours from broandbandbuyer.com they do really good pricing.
-
+1 for the GTX 1030 specs show a resolution of 7680x4320@60 Hz https://www.geforce.com/hardware/desktop-gpus/geforce-gt-1030/specifications
-
I am absolutely fed up now with the poor (if not non-existent) level of support from Tucasi, and need a replacement. At the moment we use the following modules Communications Dinner Money Extended Day Income Banking Trips and Events and I want to get something that matches this level of functionality.
-
Her indoors wants to replace her ancient PC!
thesk8rjesus replied to speckytecky's topic in Hardware
What about a chrome book? As most of the things you have said can be web based it should be perfect and at a low price. -
WAIT! Theres a new coaster for my mug and its only £709, hmmm
-
Hi Guys, Just tried updating our poweredge server adding new RAM and a quad NIC card, after getting everything and putting back in the cabinet we plugged it in and nothing worked, changed the PSUs and it started up, changed them back and nothing again. If anyone has two PSUs that don't want could you let me know as we'd like to get some soon. Cheers in advanced
-
Internet Settings for IE10 not showing up in GPO
thesk8rjesus replied to ellisteph10's topic in Windows Server 2008 R2
IE10 is only available with server 2012 and windows 8 GPO editor. Using a windows 8 machine will allow you to add these settings in for any machine that has IE10 -
Need to re-initialise WSUS on each PC
thesk8rjesus replied to TechSupp's topic in How do you do....it?
You could always create a batch file that looks at a CSV and pulls the names of each machine and then using psexec run the batch file all from one location just set it going come back later -
Vanilla Network from Scratch
thesk8rjesus replied to dcwhitworth's topic in Network and Classroom Management
SCCM 2012 is really good for building computers and deploying software remotely. It also deploys antivirus as a standard. If you have a EES desktop agreement then its included in it. -
Defiantly Komposer for starters then notepad++ once they've understood a bit more
-
[sccm 2012] Copy file to windows\system32\oobe\info\backgrounds
thesk8rjesus replied to localzuk's topic in O/S Deployment
With this sort of thing I tend to create a package with no software just point it to the network path. Then in the task sequence add a command line item with the assigned package, and in the command line just put the name of the script. If it goes off to a network location in the script you will need to run the command line as specified user. This works for me -
[sccm 2012] English Keyboard and Date Settings?
thesk8rjesus replied to Sam_Brown's topic in O/S Deployment
We ended up getting a load of US Keyboards from a company when we bought the computers so its easier to just change between US and UK -
[sccm 2012] English Keyboard and Date Settings?
thesk8rjesus replied to Sam_Brown's topic in O/S Deployment
We had a problem with this also but have now got it sorted doing the following. First i had to create an unattend.xml file this is my x64 one, if you are doing it for x86 replace processorArchitecture="amd64" with processorArchitecture="x86". Also you will need to change wim://sccm-001/sms_twr/osd/boot/x64/boot.twr00005.wim to point to your boot wim file. %OSDInputLocale% %OSDSystemLocale% %OSDUILanguage% %OSDUILanguageFallback% %OSDUserLocale% Next I had to create a package with no program details just pointing to the folder containing the xml file. With the package created it needs to be added to the task sequence in the 'Apply Operating System' settings page. See below Thats the task sequence all sorted the variables in the unatted.xml will now need to be created. To create these I went the collection that the task sequence was deployed to and opened the properties window. With the properties window open i created the variables shown below. let me know if this doesn't work. -
Date? String? Pulling my hair out here! Help!
thesk8rjesus replied to FragglePete's topic in Web Development
Hi not sure if you got this sorted already but hopefully this code will help Object oriented $date = new datetime( $_POST['dbDate'] ); $selecteddate = $date->format( 'Y-m-d' ); Procedural $date = date_create( $_POST['dbDate'] ); $selecteddate = date_format( $date, 'Y-m-d' ); Also with your query you could write the follow as the variable will work in the double quotations. $query = "SELECT * FROM tbldetentions WHERE DateSetFor = '$selecteddate'"; -
UPDATE: Removed $serverPath and replaced it with $root as both the same. function slideshow() { //creating variables $data = ''; $root = $_SERVER['DOCUMENT_ROOT']; $path = '/images/slideshow/'; $fileTypes = '*.{jpg,png,bmp,gif}'; //adding the images to the data variable foreach( glob( $root . $path . $fileTypes, GLOB_BRACE ) as $filename ) { $data .= '' . str_replace( $root, '', $filename ) . ''; } return $data; } ?>
-
Here is the script that I wrote the other day. It looks in a server folder for font files and installs them. It also checks if the font is already installed and then skips over it if it is, and then adds into the event log that the font was installed. We use this as a package on SCCM and push it out when we approve new fonts. Const FONTS = &H14& 'defining variables Dim FSO, fontPath, objShell, objFolder, wshShell, winDir 'setting variables Set FSO = CreateObject( "Scripting.FileSystemObject" ) Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace(FONTS) Set wshShell = WScript.CreateObject( "WScript.Shell" ) 'setting strings fontPath = "\\servername\Fonts\" 'Change this folder path to font folder winDir = wshShell.ExpandEnvironmentStrings( "%windir%" ) For Each font In FSO.GetFolder( fontPath ).Files If( FSO.FileExists( winDir & "\fonts\" & FSO.GetFileName( font ) ) ) Then 'do nothing Else 'checking if file is a font If inStr( LCase( FSO.GetFileName( font ) ), "ttf" ) Or _ inStr( LCase( FSO.GetFileName( font ) ), "otf" ) Or _ inStr( LCase( FSO.GetFileName( font ) ), "fon" ) Then 'Installing font objFolder.CopyHere fontPath & FSO.GetFileName( font ), &H14& 'Add event to event viewer wshShell.LogEvent 4, "The " & FSO.GetFileName( font ) & " font has been installed." End If End If Next
-
I had a quick look around and have written the following PHP function that will look in a specified folder and then add an img tag for each image to a variable which is then returned at the end of the function. function slideshow() { //creating variables $data = ''; $root = $_SERVER['DOCUMENT_ROOT']; $path = '/images/slideshow/'; $fileTypes = '*.{jpg,png,bmp,gif}'; $serverPath = 'C:\inetpub\wwwroot'; //adding the images to the data variable foreach( glob( $root . $path . $fileTypes, GLOB_BRACE ) as $filename ) { $data .= '' . str_replace( $serverPath, '', $filename ) . ''; } return $data; } ?> Below is the example html code with nivo-slider and a refresh every 6 hours <br /> $(window).load(function()<br /> {<br /> $('#slider').nivoSlider();<br /> });<br /> Please let me know if I have confused you I'm not brilliant with english. EDIT: Here is the link to the Nivo Slider website http://dev7studios.com/nivo-slider/
-
Do you have php installed on the server?
-
[SOLVED] Problems between HTTP and HTTPS
thesk8rjesus replied to thesk8rjesus's topic in Web Development
After bashing my head against my monitor, my brain started to work and i have found the solution to having a HTTP and HTTPS site through TMG2010. To stop the problem of it going to HTTP i had to create a new rule stating that anything that went to /account/* would be denied and redirected to https://domain/account/*, this rule had to be higher than the HTTP allow rule. I removed the URL Rewrite rule from IIS and this is now working, externally and internally. -
[SOLVED] Problems between HTTP and HTTPS
thesk8rjesus replied to thesk8rjesus's topic in Web Development
After changing what I was googling I have found that the problem is down to TMG 2010 and its sending the clients round in a loop because of the URL Rewrite rule that I have. If anyone knows how to configure TMG 2010 to use URL Rewrite rules correctly, please help. -
I am currently re-developing our website and have come across some issues with getting it to go to the correct pages. On the website I have a link to go to 'Accounts' this part of the website needs to be HTTPS, so i created a IIS rewrite rule that changes this part into HTTPS. Inside this works perfectly. Unfortunately when I access the website away from my network it changes the account link to HTTP, if i type in HTTPS it works fine but the link will not auto redirect. It is all under one site in IIS as i believe that is correct with a valid certificate, and bindings for both port 80 and 443, if anyone else has seen this or knows why this is happening, your help would be grateful.
-
Still works but is unsupported but of course the forums will probably help out
