ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Categories
    3. IT Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • CCWTechC

      This topic is deleted!

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      2 Views
      No one has replied
    • BRRABillB

      AD Issue ... Windows 10 or the Domain?

      Watching Ignoring Scheduled Pinned Locked Moved
      30
      1 Votes
      30 Posts
      4k Views
      IRJI

      What's keeping the company from at least migrating the domain controllers? That's actually one of the easier services to migrate.

      I've sometimes seen 2003 with legacy applications that management does not want to change for whatever reason. Just not with DCs.

    • MattSpellerM

      Microsoft SAM (Software Asset Management)

      Watching Ignoring Scheduled Pinned Locked Moved
      18
      0 Votes
      18 Posts
      3k Views
      scottalanmillerS

      @marcinozga said in Microsoft SAM (Software Asset Management):

      I got the email about it couple of months back. I told them to shove it, and warned that I would bill them for wasted time if they continued to bother me.

      It's voluntary, tell them to get lost.

      Voluntary and useless.

    • KellyK

      GDPR Resources

      Watching Ignoring Scheduled Pinned Locked Moved gdpr regulations
      105
      0 Votes
      105 Posts
      12k Views
      ObsolesceO

      @kelly said in GDPR Resources:

      @obsolesce said in GDPR Resources:

      @scottalanmiller said in GDPR Resources:

      @kelly said in GDPR Resources:

      However, I am done trying to explain things to you @scottalanmiller. Nothing personal. I like you as a person, and I respect your perspectives on many things, but how you're handling this conversation is wearing.

      Sorry, honestly trying to learn here. I guess there is a lot of information about GDPR that everyone knows that I just don't understand. But where is everyone learning so much about it?

      But if a company is US based (no physical or registered presence in the EU), can they even do anything about it?

      This was addressed in the thread: https://mangolassi.it/topic/16992/gdpr-resources/75.

      Didn't see that.

      But, wow... I'm in complete agreement with SAM's reply to that. Wtf.

    • siringoS

      Will I lose Connection if I ...

      Watching Ignoring Scheduled Pinned Locked Moved
      8
      2 Votes
      8 Posts
      715 Views
      scottalanmillerS

      @siringo said in Will I lose Connection if I ...:

      @dbeato said in Will I lose Connection if I ...:

      @siringo said in Will I lose Connection if I ...:

      @i3 said in Will I lose Connection if I ...:

      Depends on the type of VPN and if you are tunneling all traffic or not. Do you have more info?

      I'm playing around with this n that trying to gain some knowledge, it's just a lab environment.

      What I was thinking of doing was running up an Azure Windows VM, setting up a VPN connection to that from my 2016 VPS and seeing if I can add the Azure VM as a second DC to the domain I have on my VPS.

      I've read this can be done, but I don't know if once the VPN connection is in place whether I will be able to RDP back into my 2016 VPS?

      you might able to do so if the VPN doesn't take the route of your other network. Worst case scenario you just disconnect the user from the VPN and you are right back in it.

      Thanks for advice. I guess as this is a knowledge building exercise, best way to find out is to just do it and see.

      Definitely.

    • PenguinWranglerP

      How do you say....

      Watching Ignoring Scheduled Pinned Locked Moved
      7
      0 Votes
      7 Posts
      768 Views
      dbeatoD

      I Just say De Bian plainly ...

    • wrx7mW

      Webroot SecureAnywhere Business Replacement?

      Watching Ignoring Scheduled Pinned Locked Moved webroot antivirus intune defender ninite pdq depoy secureanywhere
      45
      1 Votes
      45 Posts
      7k Views
      dbeatoD

      @wrx7m said in Webroot SecureAnywhere Business Replacement?:

      @momurda said in Webroot SecureAnywhere Business Replacement?:

      This task Manager behavior is from Webroot?
      I see it occasionally; one developer in particular says it is always a problem.

      https://community.webroot.com/t5/Webroot-SecureAnywhere-Complete/Task-Manager/td-p/309032

      According to the most recent post in that thread (edit - the most recent post is currently 2 weeks old), a beta release fixes this issue. Being that the thread started in December of 2017, it goes to show how long it takes them to fix things.

      yes, that is also what we found out, especially in Windows 10.

    • guyinpvG

      Need to track what PHP script is generating a file on nix

      Watching Ignoring Scheduled Pinned Locked Moved
      13
      2 Votes
      13 Posts
      2k Views
      I

      Depending on the VPS's PHP implementation the child processes may or may not contain some useful stuff in the command line, such as which script is being executed.

      Would it be helpful for you to get the PID's of any processes which open any file in a target dir, then log the full command line of that PID to a file?

      If so, you can run the code below.

      You should run this momentarily, exit with "CTRL-C" and check the log output. Loads of stuff writes to '/tmp/' and this will log all of it, so you might very likely fill the disk if you run out for a coffee and leave it running.

      Ideally you should have a second SSH session to the VPS so you can kill it if necessary, and use 'tail -f /tmp/test/log/lsof.log' to monitor it's output in realtime.

      watch -n 10 'for pid in $(lsof +D /tmp/ 2>/dev/null| awk '''/[0-9]/{print $2}'''); do if [ -n "$pid" ]; then ps f -p $pid >> /tmp/test/log/lsof.log 2>/dev/null; else sleep 0;fi;done'

      The VPS probably doesn't have 'watch' installed, which runs the command every -n seconds. The rest of the commands used here should be on more or less any linux server, so you can use a while loop instead if necessary:

      while true;do for pid in $(lsof +D /tmp/ 2>/dev/null| awk '/[0-9]/{print $2}'); do if [ -n "$pid" ]; then ps f -p $pid >> /tmp/path/to/log/lsof.log 2>/dev/null; else sleep 10;fi;done; done

      Replace '/tmp/path/to/log/lsof.log' with whatever you want the logfile to be. '/tmp/' is the target dir to watch.

      Example output is:
      PID TTY STAT TIME COMMAND
      25394 pts/46 R+ 0:00 dd if=/dev/urandom of=/tmp/test/test.php bs=512 count=100000

    • s.hacklemanS

      What is in a Job Title?

      Watching Ignoring Scheduled Pinned Locked Moved
      15
      4 Votes
      15 Posts
      2k Views
      KellyK

      @scottalanmiller said in What is in a Job Title?:

      @kelly said in What is in a Job Title?:

      Two, when you move to another job, how much will your current title help or hinder your job search as you attempt to move up in pay and responsibility?

      But remember, you need never use the title when looking for another job. It's rare, to the point of almost unheard of, for a company to ask you about your title from a previous job. Everyone knows that titles are made up and meaningless, so no one cares about what other people called you. They will ask you what you did, what your role was, and that needs to be honest. But they never ask about titles, it's just not a thing. In IT circles, IT pros often think that they need to tell people their titles regularly, but when really asked when this happens, the generally can't actually put their finger on it. It's one of those myths, everyone is sure that they must have needed to do that, and their friends must have done it... but when you start digging, no one has actually done it. They might see a "what was your role" question and think that they meant title, but that's not what is asked.

      You are legally allowed to give your title, but you can't legally claim it's anything more than a title unless it matches what you did. But are always legally allowed to tell your role, no matter what title was connected to it. Your right to disclose your role is guarantee under US employment law. Your title, if it is good, can be used if you like. If the title is bad, there is no reason to be encumbered by it.

      @s-hackleman This is the point that @scottalanmiller and I go around and around about. My sticking point with ignoring title and focusing on role is employment verification and work history. Most of the people doing the work of checking with prior employers are not the hiring mangers, but HR/recruiting/the boss's wife/etc. In short they're people that don't know, nor care what work you actually did. What they care about is that the title they were given for the job you had matches the one the previous employer has on file. If the two do not match, then it is a red flag.

    • J

      Latency with VDI in VMware View 7 environment

      Watching Ignoring Scheduled Pinned Locked Moved vmware vdi network san iops
      11
      1 Votes
      11 Posts
      3k Views
      scottalanmillerS

      @jblaze said in Latency with VDI in VMware View 7 environment:

      I'm new to VDIs so not entirely sure if I'm asking the right questions. The server is hosted externally by our MSP and they're trying to determine what the cause is.

      That it is external alone is almost certainly the problem. VDI can work remotely, but is often relatively painful. Also, be aware, while there is some extreme edge cases where you can do hosted VDI, this has traditionally not been allowed and unless your MSP has figured out some extremely new and rare licensing with Microsoft, those VDIs aren't legal.

    • WrCombsW

      PCI compliance scan fail

      Watching Ignoring Scheduled Pinned Locked Moved pci compliance
      5
      0 Votes
      5 Posts
      744 Views
      scottalanmillerS

      @jaredbusch said in PCI compliance scan fail:

      You have something answering on port 80 turn it off

      It's literally that simple. Both turn off whatever is talking on 80, and block 80 on the firewall, too.

    • F

      Application clustering VS RAID with modern SSD

      Watching Ignoring Scheduled Pinned Locked Moved
      30
      0 Votes
      30 Posts
      3k Views
      scottalanmillerS

      @francesco-provino said in Application clustering VS RAID with modern SSD:

      There is also the possibility of create TWO drbd replica set, one active on the first node and the other active on the second; that way, I can easily double the total cpu count and ram available for the VMs… sort of hyperconvergency on the cheap!

      It's hyperconverged whether you do that or not. HC is free, even with far more robust systems like Starwind. HC doesn't imply that you have HA or can move workloads around. Most people do that, but it's HC from the moment you go with the design here. But DRBD isn't saving you anything over normal baseline. So while this is cheap, it's not special or cheaper, and it's a well known model that under normal circumstances you would never do without local RAID because it's been analyzed heavily for decades and it just doesn't provide a logical protection versus simpler, cheaper approaches.

    • DustinB3403D

      Creating Scheduled Task with Powershell - Using specific user account

      Watching Ignoring Scheduled Pinned Locked Moved Solved powershell windows 10 scripting chocolatey task scheduler
      22
      0 Votes
      22 Posts
      10k Views
      ObsolesceO

      @wrx7m said in Creating Scheduled Task with Powershell - Using specific user account:

      @obsolesce said in Creating Scheduled Task with Powershell - Using specific user account:

      I know this post is old, but I've found doing scheduled tasks with SaltStack is insanely simple and very effective lately... so much more than using MS Group Policy.

      https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.win_task.html

      I really want to get back into learning saltstack again.

      Here's an example of a task that goes to all minions it's supposed to go to... and it "just works". No AD required.
      Also, using SaltStack to sync that .ps1 it runs from GitLab:

      0_1525903964206_a7c132dd-863e-484e-a947-e291f463a810-image.png

    • DashrenderD

      Zoho and Outlook with Activesync

      Watching Ignoring Scheduled Pinned Locked Moved zoho outlook activesync
      4
      0 Votes
      4 Posts
      2k Views
      DashrenderD

      @jaredbusch said in Zoho and Outlook with Activesync:

      @dashrender said in Zoho and Outlook with Activesync:

      Messages over 6 months old not syncing (or visible at all in Outlook, but are visible in Zoho webmail)

      Assuming you are in cached mode, did you tell Outlook to download all mail? I believe by default on Exchange is sets to 12 months.

      Yes, cached mode was/is enabled, and set to all mail.

    • EddieJenningsE

      WordPress Hosting

      Watching Ignoring Scheduled Pinned Locked Moved wordpress hosting installation
      23
      0 Votes
      23 Posts
      4k Views
      scottalanmillerS

      @bigbear said in WordPress Hosting:

      Are you still doing hostadillo @scottalanmiller ?

      Yup, sure are!

    • travisdh1T

      Anyone here have success accessing the Pi-Hole admin page from behind a reverse proxy?

      Watching Ignoring Scheduled Pinned Locked Moved pihole admin
      15
      1 Votes
      15 Posts
      7k Views
      travisdh1T

      @black3dynamite said in Anyone here have success accessing the Pi-Hole admin page from behind a reverse proxy?:

      @travisdh1 said in Anyone here have success accessing the Pi-Hole admin page from behind a reverse proxy?:

      @black3dynamite said in Anyone here have success accessing the Pi-Hole admin page from behind a reverse proxy?:

      @travisdh1 said in Anyone here have success accessing the Pi-Hole admin page from behind a reverse proxy?:

      @black3dynamite said in Anyone here have success accessing the Pi-Hole admin page from behind a reverse proxy?:

      This might help.
      https://www.c-rieger.de/pi-hole-behind-your-nginx-reverse-proxy/

      https://www.reddit.com/r/pihole/comments/7n87y6/figured_out_how_to_use_pihole_in_a_nginx_reverse/

      Rolling back to this. The web page is being displayed now, after following these instructions.

      Now it's not displaying any statistics. I saw that the log files were in /var/log instead of /var/log/pihole (which was empty.) I wonder if something has been messed up in the install script at this point.

      What OS are you using for Pi-Hole? I'm using Debian. If you are using Fedora and have SELinux set to enforcing then that can be causing the problem. See what happens when setting it to permissive.

      It is Fedora 28, but I purposely disabled selinux on it for now when I started having these issues. Good guess tho.

      You can try repairing Pi-Hole by using this command: pihole -r

      Ran it, but it didn't make any difference. I really thing there is an issue with the log file locations, in that the web interface is probably looking in /var/log/pihole for the log files, but everything else is pointing to /var/log.

    • gjacobseG

      PowerShell: Public Folder Search / remove

      Watching Ignoring Scheduled Pinned Locked Moved ps powershell office365 office 365 distro distribution groups addremove
      3
      0 Votes
      3 Posts
      818 Views
      black3dynamiteB

      @gjacobse said in PowerShell: Public Folder Search / remove:

      Is this what I am looking for?

      Remove-PublicFolderClientPermission -Identity "\My Public Folder" -User Contoso\Chris

      Looks correct to me.

    • FATeknollogeeF

      CentOS-7 UEFI vm (minimal 1708) on Fedora 28 host

      Watching Ignoring Scheduled Pinned Locked Moved fedora 28 centos7 iso virtualization
      16
      0 Votes
      16 Posts
      2k Views
      FATeknollogeeF

      Go figure...CentOS-7 UEFI vm on Windows Server 2019 "Preview" w Hyper-V installs no problem!!!

    • I

      Dell Perc H710 predicted failure

      Watching Ignoring Scheduled Pinned Locked Moved
      21
      1 Votes
      21 Posts
      4k Views
      BRRABillB

      Still in favor of tshirts, however.

    • J

      How to force internet via LAN even connected to WIFI

      Watching Ignoring Scheduled Pinned Locked Moved
      10
      0 Votes
      10 Posts
      925 Views
      RojoLocoR

      @justin867 said in How to force internet via LAN even connected to WIFI:

      Thanks Guys, it looks like it's not possible yet as adapter priority will have some issues as well.

      If you disable the adapter for the unwanted connection, it will work fine. Leaving both on will cause issues. What is it that you are trying to circumvent? WiFi or wired LAN?

    • 1
    • 2
    • 226
    • 227
    • 228
    • 229
    • 230
    • 698
    • 699
    • 228 / 699