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
    • scottalanmillerS

      Spiceworks: Error message: An existing connection was forcibly closed by the remote host.

      Watching Ignoring Scheduled Pinned Locked Moved spiceworks email
      23
      0 Votes
      23 Posts
      3k Views
      scottalanmillerS

      @computerchip said in Spiceworks: Error message: An existing connection was forcibly closed by the remote host.:

      @scottalanmiller "just toggle it back and forth" 🤣 🙄

      Yeah, that bit was pretty funny.

    • N

      Stuck in PSEXEC

      Watching Ignoring Scheduled Pinned Locked Moved
      2
      1 Votes
      2 Posts
      351 Views
      Emad RE

      @nikunjd05

      If you want to continue down this path of PSEXEC, how about having an python agent that tracks your changes, check SaltStack, and salt minion, it will make your life alot easier, and it is much modern and supported than PSEXEC

    • I

      AT&T Business Fiber install concerns

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      1 Votes
      3 Posts
      366 Views
      scottalanmillerS

      AT&T is definitely blowing smoke. The new tenant will "own" that IP equipment and can charge both the existing tenant and AT&T for use of the facilities, or just cut it off. The new tenant will own that equipment and that connection.

    • NerdyDadN

      Bad Addresses

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved
      57
      0 Votes
      57 Posts
      4k Views
      scottalanmillerS

      @momurda said in Bad Addresses:

      @jaredbusch said in Bad Addresses:

      @nerdydad said in Bad Addresses:

      My boss does.

      So until you can show us what you are talking about, please answer this...

      Why does he? As I illustrated in a prior post anyone can spam anything all day long. Why does he care about these bad accounts?

      Yes, and arent these reports detailing hundreds or thousands of bad email addresses/day? Seems like they would be. If i received this report it would have tens of thousands of bad address bounce messages every single day.
      In a large org i imagine it would be many millions.

      Easily, for sure.

    • momurdaM

      ISP sent this yesterday

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      2 Votes
      5 Posts
      416 Views
      dbeatoD

      Content filtering comes to mind 🙂

    • CCWTechC

      Patch Tuesday - Intel Network Drivers

      Watching Ignoring Scheduled Pinned Locked Moved network intel patch tuesday
      12
      3 Votes
      12 Posts
      2k Views
      CCWTechC

      @dbeato said in Patch Tuesday - Intel Network Drivers:

      @ccwtech said in Patch Tuesday - Intel Network Drivers:

      Apparently Ninja doesn't control that, so it must have been Windows update defaults.

      Wow, check it and see if you can apply a GPO to not allow for that.

      As soon as the fire is out... I'll have to take a look.

    • dbeatoD

      Siilo Encrypted Text App

      Watching Ignoring Scheduled Pinned Locked Moved siilo encryption app
      1
      0 Votes
      1 Posts
      472 Views
      No one has replied
    • JaredBuschJ

      Wide Area DECT coverage

      Watching Ignoring Scheduled Pinned Locked Moved sip dect yealink uniden
      7
      4 Votes
      7 Posts
      1k Views
      JaredBuschJ

      This is the thread that pointed me to the Uniden equipment.
      http://forum.yealink.com/forum/showthread.php?mode=linear&tid=4681&pid=#pid

    • A

      What's the best way to migrate to FreePBX 14?

      Watching Ignoring Scheduled Pinned Locked Moved freepbx freepbx 14
      34
      1 Votes
      34 Posts
      5k Views
      SmithErickS

      @aaronstuder Oh yes! Rackspace was about 3-4x more than what we are paying for Vultr. Not to mention much more flexibility, and performance (SSD).

    • alex.olynykA

      PowerShell Error

      Watching Ignoring Scheduled Pinned Locked Moved
      5
      0 Votes
      5 Posts
      685 Views
      black3dynamiteB

      @tim_g said in PowerShell Error:

      What's the goal here?

      Restart two known services named: "Sophos Agent" "Sophos Message Router"

      If that's the case, there's a much easier way to do it:

      function Restart-SophosServices { Restart-Service -Name "Sophos Agent" -Force -Verbose Restart-Service -Name "Sophos Message Router" -Force -Verbose }

      Its either that or just wanted to restart all Sophos services.

    • IRJI

      Lightest weight Linux distro for web browser

      Watching Ignoring Scheduled Pinned Locked Moved
      16
      0 Votes
      16 Posts
      1k Views
      IRJI

      @stacksofplates said in Lightest weight Linux distro for web browser:

      @irj said in Lightest weight Linux distro for web browser:

      @stacksofplates said in Lightest weight Linux distro for web browser:

      @irj said in Lightest weight Linux distro for web browser:

      I went with Lubunutu in the end. The hardware I have is old, but not ancient. Centrino 2 and 3 gb of RAM. I tried puppy linux and bodhi linux, but didn't care for either.

      Puppy was fast, but ugly as holy hell. Bodhi didnt seem to work right on my system. It was sluggish for some reason.

      Ya Puppy is just bad. I hadn’t Slitaz running on an old thin client at one point. It worked pretty well for that.

      I didn't see your reply until after I decided on Lubuntu. I will try a Slitaz on a usb drive.

      Ya I didn’t mean for you to have to do that. It’s ok, doesn’t look awesome but def looks better than Puppy.

      I dont feel obligated. I just want to give it a shot 🙂

    • alex.olynykA

      This topic is deleted!

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      12 Views
      No one has replied
    • alex.olynykA

      How to Format Powershell Code on ML

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      0 Votes
      3 Posts
      491 Views
      IRJI

      @alex-olynyk said in How to Format Powershell Code on ML:

      function Repair-SophosUpdate { [cmdletbinding()] Param( [Parameter(Mandatory=$True)] [string]$computername ) $Services = Get-Service -Name 'Sophos*' ForEach ($Service in $Services) { If (($Service.Name -like 'Sophos*') -and ($Service.Status -eq 'running')) { Restart-Service -Name $Service -PassThru -Verbose -Force } Else { Start-Service -Name $Service -PassThru -Verbose } } } ; Repair-SophosUpdate -Verbose

      When I run this I get

      PS C:\Users\aolynyk\Desktop> C:\Users\aolynyk\Desktop\Repair-SophosUpdate.ps1 cmdlet Repair-SophosUpdate at command pipeline position 1 Supply values for the following parameters: computername: localhost Restart-Service : Cannot find any service with service name 'System.ServiceProcess.ServiceController'. At C:\Users\aolynyk\Desktop\Repair-SophosUpdate.ps1:16 char:13 + Restart-Service -Name $Service -PassThru -Verbose -Force + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (System.ServiceProcess.ServiceController:String) [Restart-Service], ServiceCommandException + FullyQualifiedErrorId : NoServiceFoundForGivenName,Microsoft.PowerShell.Commands.RestartServiceCommand

      I can restart the services as an admin but when I run the script as an admin I get the same error

      PS C:\WINDOWS\system32> Restart-Service 'Sophos Agent' -PassThru Status Name DisplayName ------ ---- ----------- Running Sophos Agent Sophos Agent PS C:\WINDOWS\system32> Restart-Service 'Sophos Message Router' -PassThru Status Name DisplayName ------ ---- ----------- Running Sophos Message ... Sophos Message Router PS C:\WINDOWS\system32>

      Maybe put this in a new thread so you get help?

    • Emad RE

      IT rock bottom

      Watching Ignoring Scheduled Pinned Locked Moved it rock bottom
      14
      5 Votes
      14 Posts
      2k Views
      dafyreD

      @dustinb3403 said in IT rock bottom:

      @wls-itguy said in IT rock bottom:

      I didn't just burn the bridge I poured gas on it and stood on the other side laughing.

      Did you really? I'm surprised the cops weren't called and you weren't arrested for arson. . .

      There was no bridge left to burn by the time they got there.

    • V

      oVirt Single Server Install - Mgmt Network issues

      Watching Ignoring Scheduled Pinned Locked Moved Solved
      8
      1 Votes
      8 Posts
      2k Views
      stacksofplatesS

      @jaredbusch said in oVirt Single Server Install - Mgmt Network issues:

      @stacksofplates said in oVirt Single Server Install - Mgmt Network issues:

      Sadly I don't do anything with oVirt. I run OpenStack at home and bare KVM at work.

      SOrry, I thought you were doing oVirt stuff. my bad.

      No prob. I think @Tim_G was doing something with it. I just find it too bloated. It’s pretty sad whenever it’s easier to do an all in one OpenStack than it is to do oVirt.

    • gjacobseG

      Lightweight Windows OS

      Watching Ignoring Scheduled Pinned Locked Moved
      14
      0 Votes
      14 Posts
      2k Views
      H

      @gjacobse said in Lightweight Windows OS:

      Windorx

      Spend $100 and get a better a laptop.

      EeePC NetBook PC sucks, it doesn't even work well on XP.

    • JaredBuschJ

      Someone tell me WTF is wrong with my rync skills this morning

      Watching Ignoring Scheduled Pinned Locked Moved Solved rsync centos 7 fedora 27
      9
      2 Votes
      9 Posts
      2k Views
      PenguinWranglerP

      @jaredbusch said in Someone tell me WTF is wrong with my rync skills this morning:

      tired or stupid or something this morning..

      works perfectly when one specifies the correct data directory on the source.

      /home/owncloud/data/

      sent 1764471 bytes received 178175 bytes 56308.58 bytes/sec total size is 148236697158 speedup is 76306.59 (DRY RUN)

      I hate that. You always have a few outliers before you standardize on things and they are always the gotchas. This has happened to me on many occasions.

    • SmithErickS

      FreePBX Endpoint Manager File Location

      Watching Ignoring Scheduled Pinned Locked Moved
      7
      0 Votes
      7 Posts
      844 Views
      JaredBuschJ

      @smitherick said in FreePBX Endpoint Manager File Location:

      @jaredbusch Right, I get that. I meant that they should still exist once I activate the new install since they were in the DB that was backed up on the old install and restored on new.

      AH, I missed the part about having made a backup and restore.

    • FredtxF

      Remoteapp issue Windows 10 workspace.

      Watching Ignoring Scheduled Pinned Locked Moved
      4
      0 Votes
      4 Posts
      951 Views
      FredtxF

      @jaredbusch said in Remoteapp issue Windows 10 workspace.:

      @fredtx did you reboot after clearing those keys? I’m not using workspaces anyplace at the moment to try and test this.

      Yes I did. This may be from the aftermath from last Friday where I had to fix the RD Broker that wasn't allowing new remote apps on "any" workstation. Couldn't even access rd web from the broker itself. I had to give full access to IIS_URS and Network Service groups for both Tempasp.net files and c:\windows\temp folders. Restart IIS and that fixed the company wide issue. However, this 2 computers are giving me issues still.

    • JaredBuschJ

      Use DHCP option 43 on Windows Server to tell UniFi devices how to find the controller

      Watching Ignoring Scheduled Pinned Locked Moved unifi dhcp option 43 microsoft windows server guide how to
      10
      6 Votes
      10 Posts
      32k Views
      JaredBuschJ

      @tim_g said in Use DHCP option 43 on Windows Server to tell UniFi devices how to find the controller:

      @jaredbusch

      I see, so just setting option 43 on whatever DHCP server you use is all you need. Nothing hardware specific is required on the network.

      Correct

    • 1
    • 2
    • 241
    • 242
    • 243
    • 244
    • 245
    • 698
    • 699
    • 243 / 699