ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. admin
    Log in to post
    • All categories
    • gjacobseG

      Windows Terminal: Runas

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion terminal windows terminal admin runas
      5
      0 Votes
      5 Posts
      640 Views
      stacksofplatesS

      @gjacobse said in Windows Terminal: Runas:

      @Obsolesce
      That didn't help either....
      465abf1b-b0c7-4e97-8d88-29df801bb63e-image.png

      Are you sure there isn't a policy from something blocking the execution of it?

    • travisdh1T

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

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion 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.

    • IRJI

      Powershell script to change local admin account password

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion windows group policy admin active directory powershell
      2
      2 Votes
      2 Posts
      1k Views
      GregoryHallG

      $computers = Get-Content -path C:\fso\computers.txt
      $user = "aUser"
      $password = "MyNewPassword!"
      Foreach($computer in $computers)
      {
      $user = [adsi]"WinNT://$computer/$user,user"
      $user.SetPassword($Password)
      $user.SetInfo()
      }

      http://blogs.technet.com/b/heyscriptingguy/archive/2009/03/25/how-can-i-change-the-passwords-of-multiple-local-computer-accounts.aspx

    • 1 / 1