Hi all. I've got an MDT build that strips out win10 by essentially removing all but a couple of whitelisted packages, removes onedrive (boy that was fun to code) and installs office 2013 & winupdates etc.
But now I see during deployment and when a user logs on, messages about an app messing up a...
Hi all
I've been dealing with MDT task sequences recently and I've added a reminder to the deployment wizard screen where you choose the computer name - the reminder says "move the AD object to computers OU before deploying".
I looked around and found people suggesting ways to automatically move...
Hi all
Is there any way to see what computers have been deleted (and when?) in WSUS? I ask because lots were removed and I want to clarify that they were mostly random named machines that only existed during MDT deployment etc and weren't actual live machines.
Also if anyone thinks I should...
Hi all
I'm not used to using powershell compared to batch files. What i'm trying to do is script some results using manage-bde (is on my Win10 PC and seems to be standard, but isn't on our 2012 server?) to show the Encryption status of all PCs in a text list.
So far I've ended up with the...
Yes it does seem to obey this manual switch (or at least that aspect of it does, for now) but it would help to not have to do this with every user manually. Maybe it can be done to the default/template user
_________________________________
Leozack
MakeUniverse($infinity,1,42);
Hi all - it seems clear that MS are going to keep shoving ads and junk into win 10 pro and making it win 10 home in reality as they simultaneously remove the ability of GPOs to control it, forcing people onto Enterprise and LTSB licences. However for those of us stuck with win 10 pro for now...
I'm not sure about the VM host tbh it's probably just on one of our servers. Most people don't have a VM they just use thins to connect to TS sessions, but certain people connect to a VM to run certain software.
_________________________________
Leozack
MakeUniverse($infinity,1,42);
Strange issue happening on a win7 PC here. For 3 mornings in a row someone has come in and found themselves unable to log into their VM remotely. Each morning I've logged onto the VM myself and checked the list of users allowed to logon to remote desktop in system properties. Each time his...
Essentially I have a webpage that pulls from a flatfile, I'm trying to replace long links to be truncated text over the full link anchor, the php part works displaying the page. But on the page are buttons that let you edit/add items. To edit I needed to know the original text item which won't...
Ok I've redone the fucntions as such
function LinkURLs($text) {
$text = str_replace("/","/",$text);
return preg_replace_callback('@((?:(?:http(?:s)?|ftp|file))?(?::\/\/))?((?:[-\w]+\.)+(?:[^,.!?\"\'<\s])+)@', function($match) {
if (strlen($match[2]) > 30) {
$text = substr($match[2]...
Thanks Feherke, I've turned your function into this
function LinkURLs($text) {
$text = str_replace("/","/",$text);
return preg_replace_callback('@(http)?(s)?(://)?(([-\w]+\.)+([^\s]+)+[^,.\s])@', function($match) {
if (strlen($match[4]) > 30) {
$text = substr($match[4], 0...
Why use regex? I think you answered that when you say "test for whatever", which is what the pattern matching is for? Also this has to only apply to the text of the link whilst turning it into the full link. So it's a bit more than a "search for START, concat with END" jobby...
Hi all
I have the following code which does a reasonable job of finding various styles of links within text (eg http://bbc.co.uk or just www.itv.com) and turning them into links.
function linkURLs($text) {
$text = str_replace("/","/",$text);
return...
Thanks mate but I've not updated it in 14y so that's on my to-do list to make a new one after pulling myself together and taking a break! But more than happy to send it somewhere later when I have one :o
_________________________________
Leozack
MakeUniverse($infinity,1,42);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.