ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Grey
    3. Posts
    • Profile
    • Following 1
    • Followers 6
    • Topics 56
    • Posts 1,200
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Goodbye 3DTV

      I have a 3D tv. I really like it and I've used it for several 3D movies. So far, the best ones are animated, like Nightmare Before Christmas and Monsters vs Aliens. It's interesting that there's such a dichotomy in 3D - we all want to see 3D movies in the theater but not at home? I'm all for the 3D experience.

      posted in News
      GreyG
      Grey
    • RE: Driverless Formula E Car Crashes At Speed in Buenos Aires

      That's awesome. I really hope that FE becomes more and more viable.

      posted in News
      GreyG
      Grey
    • RE: One Server -2 NICs, Different IPs

      If the IPs are on the same subnet, it's doing more harm than good. Traffic coming in on one NIC will go out the other. Windows likes to use the lowest IP address to send data out. If you receive on 56, it will go out on 55. I've seen this happen. We have wireshark logs.

      I would suggest you immediately remove or team the spare nic to increase throughput. Be sure that your network hardware supports that!

      You can do a route print from the command line to see which nic is dominant.

      @frodooftheshire said in One Server -2 NICs, Different IPs:

      @Tim_G I could always disable the port on the switch and if the screams come in switch it back on. Like most clients I take on the customer has zero documentation on how things are setup/configured. Maybe I'll be able to have a conversation with the old IT guy and see if he's willing to share on why things the way they are.

      I'm working in an environment now with this kind of bullshit and it's almost 100% because the previous admins were /idiots./

      posted in IT Discussion
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      I'm working on a program that installs, and runs, based on .net, right? It installs almost everything on the user's profile (appdata\local) and then it adds a metric shit ton of registry keys. Problem: I need this application on a VDI with linked clones and the clones don't keep the registry; I guess Persona doesn't track the registry entries from HKU?

      posted in Water Closet
      GreyG
      Grey
    • RE: Verizon Adds Unlimited Data (again) with restrictions

      @NerdyDad said in Verizon Adds Unlimited Data (again) with restrictions:

      @JaredBusch said in Verizon Adds Unlimited Data (again) with restrictions:

      @NerdyDad said in Verizon Adds Unlimited Data (again) with restrictions:

      Also, @JaredBusch, do you get some kind of kickback for referring others to T-Mobile? Such as a code or something?

      Never looked if they have a referral program or not.

      Just googled it, they do.

      0_1487352096352_upload-ed425373-5c1a-4016-bcf9-cb049573750c

      Just IM'd you.

      I've been using Tmo for years and they've been fantastic. Ever since LeGere started working for them, as the CEO, things have improved a great deal. He's actively poking the bear and riling up all the other carriers.

      I wish I knew about the referral program! Sad panda.

      posted in News
      GreyG
      Grey
    • RE: What did you have for lunch or dinner today?

      @scottalanmiller said in What did you have for lunch or dinner today?:

      0_1487342442603_IMG_5021.JPG

      Youtube Video – [00:51..]

      posted in Water Closet
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      Deployed a WSUS GPO to a portion of the enterprise and now I'm watching machines check in. It's a little exciting because it's actually working as intended! Shit never works on the first try and this actually is.

      posted in Water Closet
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      @thanksajdotcom said in What Are You Doing Right Now:

      I might need to get one of these in the near future:
      https://www.amazon.com/ThinkGeek-Phantom-Keystroker-V2/dp/B002YJW7C4

      97d.gif

      posted in Water Closet
      GreyG
      Grey
    • RE: Love Your Scale? Drop Us a Review!

      jJov5nn.png

      posted in Scale Legion
      GreyG
      Grey
    • RE: Right Ubiquiti Gear for Traveling

      @scottalanmiller said in Right Ubiquiti Gear for Traveling:

      @NerdyDad said in Right Ubiquiti Gear for Traveling:

      Customs might have a problem with it? Tell them its your Mifi hotspot and they shouldn't have a problem with it. Business people travel with them all of the time.

      They look like commercial gear, though. They don't look homemade. How it looks is all that matters to border control.

      Not just border patrol.
      https://en.wikipedia.org/wiki/Ahmed_Mohamed_clock_incident
      http://www.securitypronews.com/after-airport-stop-kevin-mitnick-shares-travel-tips-2008-10

      posted in IT Discussion
      GreyG
      Grey
    • RE: Right Ubiquiti Gear for Traveling

      @scottalanmiller said in Right Ubiquiti Gear for Traveling:

      @NerdyDad said in Right Ubiquiti Gear for Traveling:

      I'm going to mention the RPI route here.

      How about Raspberry Pi 3-full kit $50-100 and then OpenWRT burned to the microSD card? Only catch is that you have to shut it down before you unplug it or you risk messing the SD card. Otherwise, its pretty much plug it into the wall or USB port and your modem and your ready to go.

      What's the benefit there? I was not aware that it had a switching option, where are the ports? How do I get a good antenna for it? That seems like it would be really hard to get working well.

      Pi3 has the wifi built in, unlike the 2 which requires a USB wifi. You'd probably have to solder something in to add a better antenna.

      posted in IT Discussion
      GreyG
      Grey
    • RE: PowerShell AD Properties

      @travisdh1 said in PowerShell AD Properties:

      @Grey Don't you have to turn on extra logging to get that centrally? I'd hate to have to hit each endpoint to grab that bit of information like @scottalanmiller already pointed out.

      Yes, it's in GPO, and it's turned on. The logs go to the event manager for each workstation, though. There's a separate log in the DC for a user authentication event.

      posted in IT Discussion
      GreyG
      Grey
    • RE: PowerShell AD Properties

      @scottalanmiller said in PowerShell AD Properties:

      Are you sure AD stores that centrally? Looks like there is no option but to loop through the machines to do it.

      $Computers =  Get-ADComputer  -Filter {(enabled -eq "true") -and (OperatingSystem -Like "*XP*")} | Select-Object -ExpandProperty Name
      $output=@()
      ForEach($PSItem in $Computers) {
          $User = Get-CimInstance Win32_ComputerSystem -ComputerName $PSItem | Select-Object -ExpandProperty UserName
          $Obj = New-Object -TypeName PSObject -Property @{
              "Computer" = $PSItem
              "User" = $User
          }
      $output+=$Obj    
      }
      
      $output
      

      https://social.technet.microsoft.com/Forums/office/en-US/d69d41c4-a3df-4472-ade0-f51ec2e2a2e0/powershell-find-computers-that-a-specific-us-is-logged-on?forum=winservergen

      Yeah, I saw that, too. I was hoping to avoid crawling each workstation. I've seen where some people are using a logon script to dump the user detail and timestamp to a globally accessible file. That's ... less than ideal.

      posted in IT Discussion
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      powershell

      posted in Water Closet
      GreyG
      Grey
    • PowerShell AD Properties

      The following is supposed to output all the things:
      Get-ADUser Grey| get-adobject -server the_DC -Properties *

      The only item missing is where I logged in. How do I get that tidbit out?

      posted in IT Discussion powershell scripting windows get-aduser active directory
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      Just spent an hour listening to sales stuff from Varonis.

      posted in Water Closet
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      @scottalanmiller said in What Are You Doing Right Now:

      So my YouTube is set to English, I'm watching an English language channel, I'm in Italy, but the ads are in Spanish.?

      Time to start that Spanish Duolingo!

      posted in Water Closet
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      @scottalanmiller said in What Are You Doing Right Now:

      @DustinB3403 said in What Are You Doing Right Now:

      @scottalanmiller said in What Are You Doing Right Now:

      FOr reasons that should surprise no one, this topic is under moderation. All I know is the title, and I know it will be a disaster.

      https://community.spiceworks.com/topic/1965422-creating-san-into-sonicwall-environment

      I'm already confused..... are they trying to create a SonicWall Area Network?

      That might be a SWAN.

      My baby. That swan ate my baby. Baby, please, get out, we gotta go to State!

      posted in Water Closet
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      @DustinB3403 said in What Are You Doing Right Now:

      @Grey What functionality level is your domain at?

      2008 R2, and I just checked that all the required GPO options are on so now I'm just trying to get PS written up so it'll carve through all of the logs.

      posted in Water Closet
      GreyG
      Grey
    • RE: What Are You Doing Right Now

      Right now: struggling on a pwershell method to gather logon/off events for a domain and filter to a user while showing the machine used.

      posted in Water Closet
      GreyG
      Grey
    • 1 / 1