ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. dbeato
    3. Best
    • Profile
    • Following 70
    • Followers 8
    • Topics 74
    • Posts 6,044
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: O365 User wants calendar invites automatically accepted, and added to calendar.

      Although you can actually use the Transport rules for internal senders
      https://docs.microsoft.com/en-us/exchange/security-and-compliance/mail-flow-rules/use-rules-to-add-meetings

      61d57119-b7da-4887-8ca6-6b9bb450a7f2-image.png

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Virtual WAF

      That said @Jimmy9008 what you have though with HAProxy and most likely Ngnix is what other WAF have already implemented on them as below some opensource versions

      https://www.vultureproject.org/

      https://github.com/nbs-system/naxsi

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Power in Qatar

      @CCWTech Yeah, you just need a new cable even with the laptop chargers as well.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Power in Qatar

      @scottalanmiller said in Power in Qatar:

      Desktop, you need a different power supply normally.
      Laptop (or anything with a battery) normally you just need an adap

      Dell and HP Desktops are autosensing at least.

      https://www.dell.com/support/kbdoc/en-us/000139802/can-i-use-the-ac-adapter-for-my-dell-portable-system-when-travelling-to-another-country

      Servers as well

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Power in Qatar

      @CCWTech 100%

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: XCP-NG installation on windows server

      @perja11 You cannot install XCP-ng on the Windows Server since it is not a Windows Application. If you were to install XCP-ng then it will wipe your Windows Server install. However if you are meaning Windows Server as the Physical Server and nothing is installed on the server then you can setup the booting device to be the USB drive and then be able to boot frmo it.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Domain Controller Question

      @justin867 Having an independent domain from your main Office will make it that you are not relying on that site.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Ha-lizard on the XCP-NG 8.2 in 2021. Progress of my deployment

      @fabiorpn So do you have any downtime for updates on the actually VMs?

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: HP Switch config question

      @jaredbusch I assume that this is because the switch is a layer 3 switch. I would recommend to instead of using the 192.168.1.1 as the next hop for 0.0.0.0 to 192.168.1.5 since that is the pfsense everything goes through. Otherwise you might need to do a hardcoded route on the WingFTP server or change the default gateway of it. I have multiple customers in the UK that use layer 3 this way.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: HP Switch config question

      @jaredbusch There is no reason right now for sure.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Exchange Mailbox Database Migration - Single Host - Indexing Time estimate

      @dustinb3403 About 1 to 4 days.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Microsoft Resellers

      I have used GHA Technologies
      https://www.gha-associates.com/
      They have been great

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: VMware Workstation VM Backups

      You can also run the Veeam ENdpoint agent on the VMs and run the backups.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Simple cheap RMM

      @siringo What about these ones:

      https://bluetrait.io/pricing

      https://www.action1.com/free_edition.html

      https://www.atera.com/pricing/ (COmpare to Pulseway Pricing)

      https://www.pulseway.com/pricing

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Network Admins: What are your daily BEST PRACTICE

      @mrwright4hire I use the same or Angry IP Scanner, that is for windows, mac and Linux but depends on Java.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: NG AV / Endpoint Protection in 2021

      @scottalanmiller Like what? I am confused, I have worked with many AV and Bitdefender has been one of the less problematics AV I have worked with. Most of the time Bitdefender doesn't allow something it is purely a setting that blocks access to File shares or local folders but once allowed it works same with Windows Defender has the same feature and can be annoying. Centralized management is not about knowing the status of the agents, it is also the way to manage all the settings and policies from one place instead of doing manual work on each computer (Windows Defender) to apply the changes.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Working Unifi UNVR NGINX Config

      @dbeato The configuration I have is below:

      Web UI

      server {
      client_max_body_size 40M;
      server_name dvr2.domain.com;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_set_header X-NginX-Proxy true;
      location / {
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_set_header X-NginX-Proxy true;
      proxy_pass https://dvr.domain.com:7443/;
      proxy_redirect https://dvr.domain.com:7443/ /;
      proxy_read_timeout 60s;
       # Socket.IO Support
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
      }
      

      Video Playing

      server {
      client_max_body_size 40M;
      server_name dvr2.domain.com;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_set_header X-NginX-Proxy true;
      location / {
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_set_header X-NginX-Proxy true;
      proxy_pass https://dvr.domain.com:7446/;
      proxy_redirect https://dvr.domain.com:7446/ /;
      proxy_read_timeout 60s;
       # Socket.IO Support
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
      
      add_header Access-Control-Allow-Origin *;
      add_header Access-Control-Max-Age 3600;
      add_header Access-Control-Expose-Headers Content-Length;
      add_header Access-Control-Allow-Headers Range;
      }
      
      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Booking dining room O365.

      @iroal Creating 10 rooms would accomplish what you want but still you would have to prevent the users from going to those other mailboxes which then becomes a policy instead.

      YOu can try the free version of SIgnup Genius
      https://www.signupgenius.com/pricing

      or other system that does booking like that.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Naming discrepancies across Print Servers

      @gjacobse said in Naming discrepancies across Print Servers:

      servers without

      As a pratical way you would have centralized printing on a CLoud Service but with Windows Servers then you will have to manually match and correct or somehow script it.

      posted in IT Discussion
      dbeatoD
      dbeato
    • RE: Exchange Environment - Lab

      Unattended Mode is what you will be looking for:
      https://docs.microsoft.com/en-us/exchange/plan-and-deploy/deploy-new-installations/unattended-installs?view=exchserver-2019

      posted in IT Discussion
      dbeatoD
      dbeato
    • 1
    • 2
    • 71
    • 72
    • 73
    • 74
    • 75
    • 73 / 75