Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Leozack

    Filetypes being reset to Edge on user logon?

    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...
  2. Leozack

    MDT TS move computer OU

    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...
  3. Leozack

    WSUS activity history

    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...
  4. Leozack

    Checking Bitlocker status on a computer list

    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...
  5. Leozack

    Cleaning up win 10 pro

    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);
  6. Leozack

    Cleaning up win 10 pro

    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...
  7. Leozack

    PC losing user from remote desktop access list

    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);
  8. Leozack

    PC losing user from remote desktop access list

    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...
  9. Leozack

    Turning links in text into truncated hyperlinks

    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...
  10. Leozack

    Turning links in text into truncated hyperlinks

    Any thoughts guys? Be great to tie this one up :S _________________________________ Leozack MakeUniverse($infinity,1,42);
  11. Leozack

    Turning links in text into truncated hyperlinks

    Ok I've redone the fucntions as such function LinkURLs($text) { $text = str_replace("&#47;","/",$text); return preg_replace_callback('@((?:(?:http(?:s)?|ftp|file))?(?::\/\/))?((?:[-\w]+\.)+(?:[^,.!?\"\'<\s])+)@', function($match) { if (strlen($match[2]) > 30) { $text = substr($match[2]...
  12. Leozack

    Turning links in text into truncated hyperlinks

    Thanks Feherke, I've turned your function into this function LinkURLs($text) { $text = str_replace("&#47;","/",$text); return preg_replace_callback('@(http)?(s)?(://)?(([-\w]+\.)+([^\s]+)+[^,.\s])@', function($match) { if (strlen($match[4]) > 30) { $text = substr($match[4], 0...
  13. Leozack

    Turning links in text into truncated hyperlinks

    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...
  14. Leozack

    Turning links in text into truncated hyperlinks

    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("&#47;","/",$text); return...
  15. Leozack

    Mysterious nightly logoff/reboot - how to track

    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);
  16. Leozack

    Mysterious nightly logoff/reboot - how to track

    Right now I'm not even looking as I need to recuperate and rebuild my mental wellbeing. Not that that will pay the mortgage. But if I was looking to replicate the job it'd be 2nd line support working with clients/servers/networks/citrix etc _________________________________ Leozack...
  17. Leozack

    Mysterious nightly logoff/reboot - how to track

    It's VMware hosting win7 VMs and citrix connections. But don't worry about it because I lost my job now -_- First time in 13y I'll have to look for one ... _________________________________ Leozack MakeUniverse($infinity,1,42);
  18. Leozack

    Mysterious nightly logoff/reboot - how to track

    This is win7 not a server, it's just a VM I use from a thin client. Pretty sure I checked scheduled tasks but I will try and remember to check them tomorrow. I was really wondering if anyone had anything I can add to my logoff script to get the status of the PC (logging off/restarting) etc. It...
  19. Leozack

    Mysterious nightly logoff/reboot - how to track

    Hi all - the VM I connect to running win7 has started logging off/rebooting overnight. I can't find any reason why and I've made a logoff script to log the time it happens and so far it's been 10.24pm and 10.10pm. I'm wondering if there's a way for a logoff script (or anything) to know if the...
  20. Leozack

    Security success &amp; system eventlog spam

    Hi all - anyone got any bright ideas why 1 PC of many on a domain is spamming thousands of events like those below - we're talking multiple 20m event log archives created per day, often within minutes! Looking at WudfUsbccidDriver I've tried disabling the smartcard service but that hasn't...

Part and Inventory Search

Back
Top