ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. gjacobse
    3. Topics
    • Profile
    • Following 2
    • Followers 5
    • Topics 711
    • Posts 9,609
    • Groups 1

    Topics

    • gjacobseG

      Duplicate O365 Distribution Group via Powershell

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      7
      1 Votes
      7 Posts
      1k Views
      NerdyDadN

      Sorry I missed this earlier, but how are they duplicates if they don't have the same members? Same positions for different locations?

    • gjacobseG

      Your next phone may have an ARM machine learning processor

      Watching Ignoring Scheduled Pinned Locked Moved News cellphone arm smartphone camera iot project trillium
      2
      0 Votes
      2 Posts
      970 Views
      Emad RE

      @gjacobse said in Your next phone may have an ARM machine learning processor:

      learning

      Its called NPU, and everybody thinks (not the end user of-course) that it is half baked if not total gimmick.

      Deep learning is shallower and more hyped than Italian television

      https://www.fudzilla.com/news/45576-ai-is-still-half-baked

    • gjacobseG

      Powershell: Use PS to email results

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion ps powershell o365 sendmail
      14
      1 Votes
      14 Posts
      2k Views
      nadnerBN

      I can't remember where is nabbed it from, but I use the following:

      Function Mailer { $emailTo = "" $emailFrom = "" $subject="It's broken, damn it" $smtpserver="" $smtp=new-object System.Net.Mail.SmtpClient($smtpServer) $Message = @" Insert a useful/meaningful message here. "@ } Mailer

      Last line calls the function (duh for you, but a visitor here might not know).

    • gjacobseG

      Apple could be rethinking its release cycle for iOS and macOS

      Watching Ignoring Scheduled Pinned Locked Moved News apple ios macos release updates
      1
      2 Votes
      1 Posts
      694 Views
      No one has replied
    • gjacobseG

      Amazon is cutting hundreds of corporate jobs,

      Watching Ignoring Scheduled Pinned Locked Moved News amazon job cuts
      5
      1 Votes
      5 Posts
      856 Views
      JaredBuschJ

      @scottalanmiller said in Amazon is cutting hundreds of corporate jobs,:

      @penguinwrangler said in Amazon is cutting hundreds of corporate jobs,:

      @scottalanmiller said in Amazon is cutting hundreds of corporate jobs,:

      But hopefully adding thousands in a new office.

      I would think this would happen due to restructuring, in anticipation of the new HQ. Have they announced where it will be?

      I've not seen it announced yet. Seems like it would be big news when they do.

      It has not been announced. A narrowed down list was announced in January I believe.

    • gjacobseG

      Browser Refresh tool

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion sodiumsuite sodium page refresh auto refresh
      11
      1 Votes
      11 Posts
      1k Views
      black3dynamiteB

      In Firefox, would adjusting one of these help with the timeout issue on SodiumSuite?

      about:config
      0_1518194823908_firefox-http-connection-timeout.png

    • gjacobseG

      Mangolassi: What happened?

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      38
      0 Votes
      38 Posts
      2k Views
      popesterP

      Had to reboot, now i am getting the error. Never realized how much I have been leaning on ML for knowledge. Bring back internetz pleeze!!

    • gjacobseG

      Remmina VNC: Unknown Authentication scheme

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion remmina tightvnc realvnc vnc
      10
      0 Votes
      10 Posts
      8k Views
      dbeatoD

      @gjacobse said in Remmina VNC: Unknown Authentication scheme:

      @stacksofplates said in Remmina VNC: Unknown Authentication scheme:

      @gjacobse said in Remmina VNC: Unknown Authentication scheme:

      @stacksofplates said in Remmina VNC: Unknown Authentication scheme:

      I just wanted to chime in and say sorry you have to use VNC.

      Well,.. I don't have to use VNC. But VNC is native to the rPi distro installed. I could install something like x2goserver, but even that has given me some trouble.

      I’d just use X11 forwarding.

      I believe this is the first time I have heard of x11 forwarding - so while I google it,.. I have no ideas about it.

      I assume you have been working a lot with Windows for this not to happen šŸ˜‰

    • gjacobseG

      Raspberry Pi (rPi) tips and Tricks

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion raspberry pi
      11
      1 Votes
      11 Posts
      2k Views
      M

      Prerequisites for client

      sudo apt-get install python3 python3-pip sudo pip3 install paho-mqtt

      Python script:

      #!/usr/bin/python3 #Imports import time import os import paho.mqtt.client as mqtt import paho.mqtt.publish as publish #Variable setups broker = "IP Address MQTT Broker" state_topic = "pi/cputemp" #Topic to publish commands too delay = 1 #Time delay #Fuction to return temp def measure_temp(): temp = os.popen("vcgencmd measure_temp").readline() return (temp.replace("temp=","")) #MQTT connection setup client = mqtt.Client() client.username_pw_set("username", "password") #Login for broker client.connect(broker) client.loop_start() #While loop for posting to MQTT while True: print(measure_temp()) time.sleep(1) cpu_temp = measure_temp() client.publish("pi/cputemp", str(cpu_temp)) time.sleep(delay)
    • gjacobseG

      LINux: Comm port address changes

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      9
      1 Votes
      9 Posts
      930 Views
      thwrT

      @gjacobse said in LINux: Comm port address changes:

      As part of my use of *nix, I use it to access / control / program a few different radios. They use the FTDI chipset for serial communications. Generally I have no trouble, but every once in a while it seriously gripes my mood.

      dmesg | grep tty

      This will tell you the devices and the port to use. It's in my list of useful commands as I don't always need it, and I just haven't committed it to memory yet. But I have it -

      So this week I have two devices connected, and I went in and found the one I needed to use with the radio I wanted to program.

      TTY0 was connected to a radio that was off
      TTY1 was connected to the radio I was working with.

      Had some programming issues, and updated the software to the latest release using a different REPO, when I went back to program the radio - fails - repeatedly.

      Reboots, updates, upgrades, re-installs later, I run dmesg | grep tty again and find that the port assignment has changed.

      This is one of the frustrating things about *nix I seem to have, in that things don't stay where they where and where I expect them to be the next time I go to use them.

      Is this normal for it to change, even though neither of the USB devices were not removed?

      @scottalanmiller

      Especially plugable devices (e.g. USB) tend to change names - if you plug them into other ports for example. But your example doesn't look like a USB serial adapter, they would most probably have a name like ttyusbN.

      But like SAM said above, this is not only happening with plugable devices. Most modern distros will create udev rules whenever they detect new hardware (except for a few cases like USB devices). That's why you will (should) see a reproducable mapping every time the system starts.

      Anyway. You could get more stable results using a udev custom rule for your tty problem.

      First hit on Google: https://www.silabs.com/community/interface/knowledge-base.entry.html/2016/06/06/fixed_tty_deviceass-XzTf

    • gjacobseG

      Flushing GPOs

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved IT Discussion server server 2008 server 2012 r2 server 2016 server2012 server2012r2 gpo group policy
      13
      0 Votes
      13 Posts
      2k Views
      thwrT

      @thwr said in Flushing GPOs:

      @dbeato said in Flushing GPOs:

      You need to setup the settings to Delete or changed to not configured, wait until it applies and then delete the GPOs after confirming they are not applied any longer.

      Get-Content c:\temp\gpos.txt | foreach { Get-GPO -Name "$_" | Remove-GPO }

      http://jeffwouters.nl/index.php/2013/08/remove-group-policy-objects-through-powershell/

      I bet you could do something like this to set all GPOs to "on delete remove from client" too

      This assumes a txt file with all GPO names. You could also just use Get-GPO

    • gjacobseG

      Tax software requires User to have Admin Rights

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      19
      2 Votes
      19 Posts
      2k Views
      thwrT

      @dustinb3403 said in Tax software requires User to have Admin Rights:

      @ccwtech said in Tax software requires User to have Admin Rights:

      @penguinwrangler said in Tax software requires User to have Admin Rights:

      @gjacobse said in Tax software requires User to have Admin Rights:

      @jaredbusch

      Installing maybe... But it's need to run the software

      I saw that all the time with crappy proprietary video surveillance software. You had to have admin rights to run it. Ridiculous!

      Is there any surveillance software that isn't crappy? Ever one of them I have seen is just junk.

      As far as this thread, I'm in the same boat... Software written back in the early 90's that is STILL the leading software in the veterinary industry requires local admin to run it.

      Usually this is just a matter of needing admin access to a few folders and files. Not the entire system.

      That's what I said.

    • gjacobseG

      Webroot: Not Seen Recently

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved IT Discussion webroot
      5
      2 Votes
      5 Posts
      1k Views
      dbeatoD

      Were you able to test and get any results?

    • gjacobseG

      Ubuntu 17.10: lock with keyboard

      Watching Ignoring Scheduled Pinned Locked Moved Solved IT Discussion ubuntu 17.10 lock
      5
      0 Votes
      5 Posts
      859 Views
      dbeatoD

      @gjacobse said in Ubuntu 17.10: lock with keyboard:

      seemed to have worked... Though I would like to say I have tried that and it did not work. However the period of time since that happened has been long enough, I don't remember.

      Yikes, glad it is working though.

    • gjacobseG

      Android Apps

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion android android apps suggested apps
      11
      0 Votes
      11 Posts
      2k Views
      dbeatoD

      Also Outlook for Android.

    • gjacobseG

      Chocolatey.org install for Windows Vista -

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion vista chocolatey
      15
      0 Votes
      15 Posts
      1k Views
      wirestyle22W

      It's hard to beat a Chromebook/Chromebox

    • gjacobseG

      O365 Migration: OnPrem A to O365 b w/barracudanetworks

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      26
      0 Votes
      26 Posts
      3k Views
      Mike DavisM

      Two domains shouldn't be an issue. If both domains are added to o365, you can powershell the addition of aliases to the users mailboxes. o365 can accept email to either domain.

    • gjacobseG

      PS: O365 cmdlet issue.

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion o365 office365 powershell
      11
      0 Votes
      11 Posts
      2k Views
      scottalanmillerS

      @jaredbusch said in PS: O365 cmdlet issue.:

      @gjacobse said in PS: O365 cmdlet issue.:

      For my record later:

      /wtb codeblock around that... ```

      I fixed it.

    • gjacobseG

      O365 PS password reset from list

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion
      3
      1 Votes
      3 Posts
      404 Views
      dbeatoD

      @gjacobse said in O365 PS password reset from list:

      Not being one to use PS.. can PS reset o365 passwords using a preset list of UserID to Password ( CSV file)?

      YEs it can.
      as you can see more options here
      https://o365info.com/manage-office-365-users-password-using/

    • gjacobseG

      Chocolatey.org: Access Denied

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion windows 10 pro windows 10 1709 chocolatey
      5
      0 Votes
      5 Posts
      5k Views
      gjacobseG

      Thanks - I re-installed webroot and was able to update.

    • 1
    • 2
    • 12
    • 13
    • 14
    • 15
    • 16
    • 35
    • 36
    • 14 / 36