• 0 Votes
    4 Posts
    843 Views
    ObsolesceO

    @Reid-Cooper said in General Guidance on Windows Admin Center WAC:

    @Obsolesce said in General Guidance on Windows Admin Center WAC:

    Yes you do need to either add other devices manually or by importing a list... but it's a one-time thing so it's a non-issue IMHO.

    Not bad for tiny environments. But at any scale, how does that handle machines being added in the future? You have to manually add every new machine after every change to WAC?

    I've only had about 100 servers and a handful of Win10 in it, so I'm not familiar with handling that at scale. It really only requires a txt file of a list of devices which is simple to maintain in any aspect. I only had to import that to get everything back in. If I added a new server, I would add it to the text file then add that server.

  • Batch file assistance: scroll text output

    Unsolved
    3
    1 Votes
    3 Posts
    740 Views
  • Outdoor SIP Phone

    18
    0 Votes
    18 Posts
    2k Views
    scottalanmillerS

    Yeah, outdoor speakerphones arent a popular item.

  • Network Issues on Copiers and HP Enterprise Printers

    5
    1 Votes
    5 Posts
    3k Views
    ysapirY

    did you migrate recently to O365 ?

  • Performance Advantages to Splitting Applications from Databases

    12
    0 Votes
    12 Posts
    879 Views
    scottalanmillerS

    @matteo-nunziati said in Performance Advantages to Splitting Applications from Databases:

    @gtech yeah the only reason is saturation of resources and scaling out.
    rdbs do not scale out easily while front ends do.

    And RDBMSs tend to scale better vertically (throwing more RAM and CPU in a box) while app servers tend to scale better horizontally (throwing more, smaller boxes at it.)

  • Get active calls overtime

    Unsolved
    3
    0 Votes
    3 Posts
    531 Views
    M

    I can't think of a way aside from cron every X seconds. I'd dump it into a csv file with just the timestamp and the number of calls. E.g.

    #!/bin/sh if [ ! -f /var/log/activecalls.csv ]; then echo "Timestamp,Calls" > /var/log/activecalls.csv fi DateTime=`date "+%Y%m%d %H:%M:%S"` echo -ne "\n$DateTime," >> /var/log/activecalls.csv asterisk -x 'core show channels' | grep 'active calls' | cut -d " " -f1

    Which SHOULD create a nice csv for you...

  • Questions on UDP, Guest WiFi, LAN, and Unifi.

    6
    1 Votes
    6 Posts
    305 Views
    J

    @JaredBusch said in Questions on UDP, Guest WiFi, LAN, and Unifi.:

    You have the VLAN using the same subnet as the untagged traffic?

    Not my VLAN and I haven't had a chance to look at it.

    Based on the DHCP info I have seen acquired by the phones, I would have to say the VLAN-100 is on another subnet and has it's own DHCP server. The Mitel 5000 and one other Phone system device (Xarios?) have IPs on the business LAN, the phones do not. I think those two devices have IPs on my LAN because they need internet access.

    I'm hopeful I can move forward is if the phones weren't there at all....... I don't think there'll be any toe stepping.

  • how to check this exchange email issue?

    2
    0 Votes
    2 Posts
    321 Views
    JaredBuschJ

    @justin867 said in how to check this exchange email issue?:

    One user keeps on complaining that the email message she sent was not received by the intended receiver? how to check the issue? We are using exchange 2010.

    Message tracing in ECP.

  • Major outage at VoIP.ms today

    6
    1 Votes
    6 Posts
    694 Views
    scottalanmillerS

    @JaredBusch said in Major outage at VoIP.ms today:

    @scottalanmiller said in Major outage at VoIP.ms today:

    Wait, I think we are talking on a voip.ms line right now, weird.

    The problem is inbound termination from upstream of them. Everything else works.

    Also not all inbound providers are affected.

    Okay, that makes sense then.

  • GitLab install on CentOS using Salt

    4
    2 Votes
    4 Posts
    794 Views
    JaredBuschJ

    @flaxking said in GitLab install on CentOS using Salt:

    The Azure CentOS image I used for testing didn't have firewalld enabled by default

    Well a, very, old version of CentOS minimal had that issue natively. Maybe that is what Azure built on.

  • Server Monitoring

    75
    1 Votes
    75 Posts
    5k Views
    dafyreD

    @notverypunny said in Server Monitoring:

    @scottalanmiller said in Server Monitoring:

    @notverypunny said in Server Monitoring:

    On the monitoring topic, has anyone gotten Zabbix to work reliably without installing an agent?

    Why would you try? Having an agent is part of the benefit. Agent means easier to manager, and more reliable.

    Was thinking a test deployment might be easier if it's just a matter of setting up a service account and pushing permissions via GPO

    Create a template Zabbix config file, then push the agent & config file however you like, and then set up Zabbix to automatically register new devices and done.

  • server 2019 + elevated cli in a script

    8
    1 Votes
    8 Posts
    756 Views
    J

    We prepend our bat and cmd batch files with this code to ensure we are elevated. This code will allow a batch file to elevate itself!

    Credit and a newer version here:
    https://stackoverflow.com/questions/7044985/how-can-i-auto-elevate-my-batch-file-so-that-it-requests-from-uac-administrator/25238418

    :::::::::::::::::::::::::::::::::::::::::::: :: Automatically check & get admin rights V2 :::::::::::::::::::::::::::::::::::::::::::: @echo off CLS ECHO. ECHO ============================= ECHO Running Admin shell ECHO ============================= :init setlocal DisableDelayedExpansion set "batchPath=%~0" for %%k in (%0) do set batchName=%%~nk set "vbsGetPrivileges=%temp%\OEgetPriv_%batchName%.vbs" setlocal EnableDelayedExpansion :checkPrivileges NET FILE 1>NUL 2>NUL if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges ) :getPrivileges if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges) ECHO. ECHO ************************************** ECHO Invoking UAC for Privilege Escalation ECHO ************************************** ECHO Set UAC = CreateObject^("Shell.Application"^) > "%vbsGetPrivileges%" ECHO args = "ELEV " >> "%vbsGetPrivileges%" ECHO For Each strArg in WScript.Arguments >> "%vbsGetPrivileges%" ECHO args = args ^& strArg ^& " " >> "%vbsGetPrivileges%" ECHO Next >> "%vbsGetPrivileges%" ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%vbsGetPrivileges%" "%SystemRoot%\System32\WScript.exe" "%vbsGetPrivileges%" %* exit /B :gotPrivileges setlocal & pushd . cd /d %~dp0 if '%1'=='ELEV' (del "%vbsGetPrivileges%" 1>nul 2>nul & shift /1) :::::::::::::::::::::::::::: ::START :::::::::::::::::::::::::::: REM Run shell as admin (example) - put here code as you like ECHO %batchName% Arguments: %1 %2 %3 %4 %5 %6 %7 %8 %9 :::::::::::::::::::::::::::: ::Begin Your Code here ::::::::::::::::::::::::::::
  • Windows 7 Pro 32 bit - Low on Memory... Ideas?

    116
    1 Votes
    116 Posts
    9k Views
    ObsolesceO

    @WrCombs said in Windows 7 Pro 32 bit - Low on Memory... Ideas?:

    @scottalanmiller said in Windows 7 Pro 32 bit - Low on Memory... Ideas?:

    @WrCombs said in Windows 7 Pro 32 bit - Low on Memory... Ideas?:

    SO correct me here - But If I use a database server instance to compile data into folders and then use a mapped drive to send data to and from on mapped drives then wouldn't I be a fileserver using a database instance - not making it a database server?

    Then you are in even worse shape because this is so ridiculous a court would see it as "intent to defraud" by making a slow, terrible system that makes no sense except to attempt to hide that you are violating a license.

    This would be still having a database server (can you get data from the database? Then you have a server), but coopting the file server protocols to do it turning them into an API and thereby requiring that they be licensed as a server to keep using.

    No matter how you skin the cat here, it's still a cat. There is a database server, it is managing data, and it is getting that data to other machines. That another service is put into that process to hide that is bad programming practice, but doesn't change licensing. Licensing is by use and intent, not visible protocol.

    again - I might not have all of the information here to be able to tell you one way or another as this conversation goes on, I was simply asking -

    Buy a Windows Server license and enough CALs, slap the sticker on the Win7 box, then go home and sleep peacefully.

  • Two Backups using CBT

    8
    0 Votes
    8 Posts
    383 Views
    scottalanmillerS

    @wrx7m said in Two Backups using CBT:

    https://helpcenter.veeam.com/docs/agentforwindows/userguide/backup_hiw.html?ver=30
    Says it uses Microsoft's VSS

    yeah, that is the native CBT provider.

  • 0 Votes
    6 Posts
    2k Views
    scottalanmillerS

    @WrCombs said in Database Server vs File Server: What's Different:

    @scottalanmiller said in Database Server vs File Server: What's Different:

    @WrCombs said in Database Server vs File Server: What's Different:

    Is it possible for a File server to run a database server ? how would that be classified at that point ?

    No, conceptually that would not mean anything. A file server and a database server are discrete concepts.

    A single operating system can run neither, either, or both. But as servers themselves, they are discrete.

    I gotcha. It was one of those hypothetical questions

    What's messy is that technical file servers are a very, very specific form of database server. Because a file server presents a file system over a network. And a file system is a special case database.

    No one really thinks about this and absolutely no one will talk about file servers this way, but for understanding what is actually happening... file servers are special purpose database servers. And that is very easy to prove.

    So a file server is a database server, but a database server is not a file server. But file servers are so common, unique, and discrete, we treat them as totally different animals and no one considers the two to even be similar.

  • 0 Votes
    4 Posts
    506 Views
    F

    We found a solution - setting the Epson printer as the default resolved the issue. Makes no sense. We discovered this because we moved the printer to a different computer and immediately had no issues. Then we realized Windows had set the Epson as the default because in settings this computer was set to "let windows manage my printer." When we went back to the other computer and switched it to the Epson receipt printer as default - voila - no weird issues on the first print.

  • 1 Votes
    22 Posts
    5k Views
    RomoR

    @Obsolesce Haven't tried it by running it directly as SYSTEM, it has been run as a user and checked to be run with the highest privileges. As it was when it was working before.

  • Teamviewer alt?

    17
    0 Votes
    17 Posts
    800 Views
    wrx7mW

    Hosted screenconnect, here. Have been using it for a few years now. Side note- Just added to one of the Macs we have and it works well.

  • Moving to Cloudflare proxy

    16
    0 Votes
    16 Posts
    911 Views
    scottalanmillerS

    @Dashrender said in Moving to Cloudflare proxy:

    Seriously you want me to buy another domain to fix this?

    Yes, because someone screwed up with the original domain, so yes, you need to either fix that or do something to work around it. Mistakes have costs, this is a pretty trivial one.

  • Exchange auto mapped account removal.

    8
    5 Votes
    8 Posts
    771 Views
    travisdh1T

    @jt1001001 said in Exchange auto mapped account removal.:

    Umm..Where was this like 2 weeks ago when I needed it? Thanks!!!

    Hiding in the 3rd page of Google results, that's where!