• Exchange 2016 Environment DNS entries help

    11
    0 Votes
    11 Posts
    394 Views
    dave247D

    @Mr-Jones said in Exchange 2016 Environment DNS entries help:

    So either a firewall issue or your isp may be blocking port 25. Is this business internet with a static ip?

    Yes. Time to look at the Firewall.

    and check your NAT settings ^^

  • Nextcloud - how to restore many deleted files

    51
    0 Votes
    51 Posts
    6k Views
    JaredBuschJ

    @Mario-Jakovina said in Nextcloud - how to restore many deleted files:

    @JaredBusch said in Nextcloud - how to restore many deleted files:

    @Mario-Jakovina said in Nextcloud - how to restore many deleted files:

    We lost few subfolders (>700files) that we can't find in "Deleted files" which is terrible experience for us, and we will reconsider our usage of Nextcloud (I plan to open another topic for that). We recovered from backup.

    Options:

    Files are in another folder, moved by random_user_03, thus not in trash. Files were deleted, and trash emptied by malicious_user_06.

    What I'm afraid of is:
    Option 3. - Some bug in Nextcloud that deleted our files or lost track of files that users accidentaly moved...

    Nothing would delete something a user moved.
    As for lost track? That is easy there are CLI commands to rescan files.
    Never had to use it because of user error before. Only because I was administratively changing things.

  • Nextcloud experience

    20
    0 Votes
    20 Posts
    1k Views
    1

    @Mario-Jakovina said in Nextcloud experience:

    What is this "cloud service" that does "data replication directly to the users local drives" if Nextcloud is not that? We use local fileservers just to decrease number of file conflicts.

    When I say local I mean that the actual file is residing on the users harddrive. So if you unplug the network, the file can still be accessed.

    Since you are talking about fileservers, that distinction has to be made. Because if the files are on the fileserver and you have an SMB share or something else, it's not on the users local drive.

  • PS; Migration woes,..

    5
    0 Votes
    5 Posts
    185 Views
    J

    @gjacobse said in PS; Migration woes,..:

    @JasGot said in PS; Migration woes,..:

    Yes. Google is your friend. Millions of examples.

    I don’t disagree,.. but at the time, wasn’t in the position to do so,.. still not really...

    No worries. That link I posted is a good place to start. It has several one liners that may help you.

  • Bad Pings from Windows, Good from Linux

    33
    0 Votes
    33 Posts
    1k Views
    travisdh1T

    @dafyre said in Bad Pings from Windows, Good from Linux:

    How old is this IOGear device? Could it be a bug in the IOGear's firmware that dislikes (recent changes to) Windows? ...I mean we know Microsoft never breaks printing, right?

    :face_with_tears_of_joy:

  • RDP Security / Hardening

    7
    0 Votes
    7 Posts
    491 Views
    IRJI

    @scottalanmiller said in RDP Security / Hardening:

    Let's start with understanding the need. Why is RDP open at all? Is it only open to the LAN, or is it open to the world?

    Yeah that is a much bigger concern than simultaneous connections.

  • MicroSIP config ini resets randomly to default settings

    2
    1 Votes
    2 Posts
    750 Views
    1

    Would it be possible to change the permissions on the file and make it read only?

    Alternative two is to write small program that logs the time when the ini file is changed. Maybe you can determine what it is by knowing when it changes.

  • Distant Desktop - remote desktop option for Windows

    12
    0 Votes
    12 Posts
    407 Views
    JaredBuschJ

    @Dashrender said in Distant Desktop - remote desktop option for Windows:

    at some point TeamViewer was a complete stranger too...

    And the company posted verifiable information about the company, if not the product (because closed source).

    No different than ScreenConnect or Pertino or AetherStore.

  • Yet another way Azure sucks

    23
    3 Votes
    23 Posts
    3k Views
    stacksofplatesS

    @flaxking said in Yet another way Azure sucks:

    @stacksofplates said in Yet another way Azure sucks:

    @IRJ said in Yet another way Azure sucks:

    @JaredBusch said in Yet another way Azure sucks:

    When you want to delete a virtual machine, you have to clean up all the its manually.

    There is not even an option to remove everything at once.

    This is by design, because all your resources are separate. Companies that leverage Azure/AWS are not using the console to deploy resources for this very reason. Using infrastructure as code is the only way to go. Both Azure and AWS offer their own IaC at no cost, but you can use terraform as an open source before neutral deployment method as well.

    Azure VMs and AWS EC2 are not VPS as you know. AWS does offer VPS style servers called lightsail. It's more affordable than EC2 and you would be able to delete with one click like youre used to doing. Of course you don't get all the other features like advanced networking, storage, etc.

    We've been looking at Pulumi lately for IaC. I'm kind of over DLCs to write things and then having to wait for that DLC to support control flows. Just let the language your used to using do the work.

    Coming from a company that only uses ARM templates, Bicep was the most exciting thing I saw at Ignite.

    The scariest thing was using AR and Teams to remotely assist with surgeries. Teams didn't even work properly for that whole presentation.

    Yeah I'm even kind of over things like Terraform.

    With Pulumi you can do things like this:

    import pulumi import pulumi_aws as aws def make_ec2(name: str): size = 't2.micro' ami = aws.get_ami(most_recent="true", owners=["137112412989"], filters=[{"name":name,"values":["amzn-ami-hvm-*"]}]) group = aws.ec2.SecurityGroup('webserver-secgrp', description='Enable HTTP access', ingress=[ { 'protocol': 'tcp', 'from_port': 22, 'to_port': 22, 'cidr_blocks': ['0.0.0.0/0'] } ]) server = aws.ec2.Instance(name, instance_type=size, vpc_security_group_ids=[group.id], # reference security group from above ami=ami.id) pulumi.export('publicIp', server.public_ip) pulumi.export('publicHostName', server.public_dns) vms = ["test","myvm","things"] for x in vms: make_ec2(x)

    You don't need to wait 6 years for the DSL to support for loops or if statements. And you can build in whatever scaffolding you want around it. Want to test your infrastructure? Include the same stuff in a testing suite. It's just much nicer overall.

  • Windows 10 BSOD When Printing

    37
    1 Votes
    37 Posts
    4k Views
    J

    @Dashrender said in Windows 10 BSOD When Printing:

    Interesting - I haven't seen any of these updates offered

    KB5001649 was issued for Windows 2004 and 20H2, KB5001648 for 1909, KB5001638 for 1809 and so on.

    I have a couple with the blank blocks issue and don't see a fix for Build: 19041.867

    I'll give it the weekend, then I'll just have to start experimenting.
    bce137cd-0bbc-4238-9d1a-e6e15b20c288-image.png

  • PHP 8 upgrade

    6
    0 Votes
    6 Posts
    845 Views
    WLS-ITGuyW

    @Pete-S said in PHP 8 upgrade:

    It's a little early I think. PHP is currently only on 8.0.3 and none of the big distros are yet running 8.x branch.

    @dbeato said in PHP 8 upgrade:

    I haven't tested yet to be honest. We shall see.

    I've got clones of the WordPress and Moodle servers that I think I'm going to play with. I though I saw WordPress pushing php 8 recently.

  • 1 Votes
    18 Posts
    2k Views
    scottalanmillerS

    @JasGot said in One man IT shop looking for additional help options when needed. Hire a MSP?:

    @Dashrender said in One man IT shop looking for additional help options when needed. Hire a MSP?:

    @JasGot said in One man IT shop looking for additional help options when needed. Hire a MSP?:

    A topic in Self Promotion for ITSPs and their geographic area may be helpful to this group.

    ITSPs aren't limited by geography.
    I know what you're trying to say - you'd like to see someone post where they have remote hands immediately if they are needed without waiting for a flight, etc...

    Yes. That seems to be what most of us are missing with national support.

    What makes that harder is that the ITSP does the IT work - which essentially never has to be (or should be) local. Remote hands / local work is bench work and you don't want ITSP staff doing that, you want bench techs doing that. This gives you better costs, and better service. Everyone wins.

  • FreePBX RingGroup Ring Time issue

    5
    0 Votes
    5 Posts
    416 Views
    scottalanmillerS

    @JaredBusch said in FreePBX RingGroup Ring Time issue:

    @syko24 said in FreePBX RingGroup Ring Time issue:

    Apparently I've asked a similar question in the past. Guess the answer is to lower the ring time to 27 or 28 seconds.

    https://mangolassi.it/topic/18468/ring-time-for-find-me-follow-me-w-call-confirmation/6

    Not exactly the same thing. FollowMe is more or less a ring grop, but it is not a ring group.

    IMO, you don't want a ring group to include a mobile, it just adds problems.

    Have the ring group fail to an extension with FollowMe and let that ring to the mobile.

    Agreed

  • Deleting SharePoint Folders - Threshold limit

    1
    0 Votes
    1 Posts
    229 Views
    No one has replied
  • Windows Print to PDF recommendations

    27
    0 Votes
    27 Posts
    2k Views
    dbeatoD

    I usually save as PDF in Office or use CutePDF as it works well and small footprint.

  • Raspberry Pi-based KVM over IP

    39
    0 Votes
    39 Posts
    3k Views
    DashrenderD

    @JaredBusch said in Raspberry Pi-based KVM over IP:

    I don’t understand how @Dashrender and @DustinB3403 are so dense.

    This is a super basic concept that had a purpose before modern RMM tools.

    As I said, I had one, not Pi based, in 2008 at a client.

    When windows would not boot, they plugged it in to the computer and I had remote KVM. Done. BIOS, safe mode, etc.

    What the hell are you on? I definitely see the benefit of these, both before and today (though WAY less so today), so don't lump me in with whatever shit you're flinging today. 🙂

  • 1 Votes
    3 Posts
    402 Views
    DustinB3403D

    Well CENTOS as an OS or product is dead. So deploying it for any reason makes little sense.

    You can get 16 RH vms for free now (placatory) from RHEL now because of CENTOS being killed off.

  • Single-day spam spike?

    4
    0 Votes
    4 Posts
    266 Views
    gotwfG

    @Danp My humble homage to Gilda Radner and Roseanne Roseannadanna.

  • Another RDS server?

    60
    0 Votes
    60 Posts
    4k Views
    siringoS

    Thanks everyone for the help.

    I've been speaking with the client and the app that is consuming excess resources will be removed as it's not a business requirement. This should solve the problem.

    Once again, thanks to everyone who contributed.

  • Configuring Snipe-IT to use JumpCloud LDAP

    18
    0 Votes
    18 Posts
    6k Views
    warren.stanleyW

    @AdminEvo I've found the JumpCloud docs (previously - not sure at the moment of this post, same for Synology docs) to be confusing on this front. I had issues with Synology services and JumpCloud LDAP. Turns out you need to bind every user individually (whom you wish to access things via JumpCloud LDAP). I had incorrectly assumed that I could propagate LDAP via enabling the JumpCloud LDAP option for desired JumpCloud User Groups. I would only get listings of users, but no individual logins worked - corrected via manually enabling bind on each user.

    bind.PNG

    Note - ignore the password expired, it's a test account.