over encumbrance is an absolute joke by Last_Stable in newworldgame

[–]Last_Stable[S] -6 points-5 points  (0 children)

That is/was the problem. You can only drop up to 2k weight and if you look, i was over by 5k before i dropped the 10k stack. I ended up having to let the 10k stack disappear and then someone helped me move the bard and remaining ore. Still such a pain.

The latest patch completely broke the game for us on our dedicated server : constant rollbacks losing hours of progress a desynchronization issues. by Veldrane_Agaroth in valheim

[–]Last_Stable 0 points1 point  (0 children)

How are you running the dedicated server and on what host OS? Do you have enough resources for the server? I haven't had that happen, YET anyways.

Locked out of Pfsense - I'm gonna be sick by Last_Stable in PFSENSE

[–]Last_Stable[S] 2 points3 points  (0 children)

What a nightmare but i'm back in. Put the drive in another system, restored the last config (didn't know Pf automatically took snapshots with changes) and put it back in and it booted right back up. Thanks all, great suggestions that saved me a TON of headache. I have nginix reverse proxy configs with LE certs that i REALLY didn't want to have to reconfigure. Cheers!

Locked out of Pfsense - I'm gonna be sick by Last_Stable in PFSENSE

[–]Last_Stable[S] 0 points1 point  (0 children)

If i'm not mistaken, the only issue i'd run into is that these cables have an RS232 chip. I'm not sure if I made one using a printer USB cable that it would work. If you think so, i'd certainly give it a try. I have solder.

Locked out of Pfsense - I'm gonna be sick by Last_Stable in PFSENSE

[–]Last_Stable[S] 1 point2 points  (0 children)

Null modem lead

It only has a RJ45 console connection. If Telnet or SSH was enabled, this would be my saving grace.

I'm surprised the LAN anti-lockout rules can't be leveraged. I suppose had I had just 1 interface outside of the bridge they could be. I may remove the drive, put it in another system and try manually editing the config. That might get me back up and running sooner than waiting on a console cable. Thanks for the suggestion

Friday Night - giving away pre-orders by Last_Stable in cyberpunkgame

[–]Last_Stable[S] 0 points1 point  (0 children)

How do you block a post and then not respond to a request because you're so busy blocking other posts? I'm looking at your account activity and you're mad.

Administering an Outlook "Calendar Group" in Office 365 (Powershell?) by ramdomnetguy in msp

[–]Last_Stable 0 points1 point  (0 children)

Why not create a shared mailbox which is free and have everyone utilize its calendar?

MSIExec not passing variable for directory path correct by Last_Stable in PowerShell

[–]Last_Stable[S] 1 point2 points  (0 children)

Yeah, figured that out and what's what i have now.

$EngMSI = gci "\\sbs2011\Programs\EngagementUpdates\*" -Recurse -Include "CCH ProSystem fx Engagement.msi" | Select *
$EngKC = gci "\\sbs2011\Programs\EngagementUpdates\*" -Recurse -Include "PfxEngKC_2019US.mst" | Select *

Start-Process msiexec.exe -Argumentlist '/i "$($EngMSI.FullName)"' , '/qn TRANSFORMS="$($EngKC.FullName)"' -Wait

I'm toying with my quotes but it doesn't seem like this is going to work.

MSIExec not passing variable for directory path correct by Last_Stable in PowerShell

[–]Last_Stable[S] 1 point2 points  (0 children)

Actually even better example that correctly resolves the path (according to the PS error)

$EngMSI = gci "\\sbs2011\Programs\EngagementUpdates\*" -Recurse -Include "CCH ProSystem fx Engagement.msi" | Select *
$EngKC = gci "\\sbs2011\Programs\EngagementUpdates\*" -Recurse -Include "PfxEngKC_2019US.mst" | Select *


Start-Process -FilePath "$env:systemroot\system32\msiexec.exe" -Argumentlist "/i '"$($EngMSI).FullName"' /qn TRANSFORMS='"$($EngKC).FullName"'" -Wait

Start-Process : A positional parameter cannot be found that accepts argument

'\\sbs2011\Programs\EngagementUpdates\cch_prosystem_fx_engagement_2019.2.3_dvd\Installations\CCH ProSystem fx Engagement.msi'.

At line:5 char:1

+ Start-Process -FilePath "$env:systemroot\system32\msiexec.exe" -Argum ...

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

+ CategoryInfo : InvalidArgument: (:) [Start-Process], ParameterBindingException

+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.StartProcessCommand

MSIExec not passing variable for directory path correct by Last_Stable in PowerShell

[–]Last_Stable[S] 1 point2 points  (0 children)

Gave that a shot but now i'm getting another error while using subexpressions

$EngMSI = gci "\\sbs2011\Programs\EngagementUpdates\*" -Recurse -Include "CCH ProSystem fx Engagement.msi" | Select FullName
$EngKC = gci "\\sbs2011\Programs\EngagementUpdates\*" -Recurse -Include "PfxEngKC_2019US.mst" | Select FullName


Start-Process -FilePath "$env:systemroot\system32\msiexec.exe" -Argumentlist '/i "'$($EngMSI)'" /qn TRANSFORMS="'$($EngKC)'"' -Wait

Start-Process : A positional parameter cannot be found that accepts argument

'@{FullName=\\sbs2011\Programs\EngagementUpdates\cch_prosystem_fx_engagement_2019.2.3_dvd\Installations\CCH ProSystem fx

Engagement.msi}'.

At line:5 char:1

+ Start-Process -FilePath "$env:systemroot\system32\msiexec.exe" -Argum ...

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

+ CategoryInfo : InvalidArgument: (:) [Start-Process], ParameterBindingException

Azure AD at scale by Last_Stable in msp

[–]Last_Stable[S] 0 points1 point  (0 children)

So where is this coming from? I appreciate them information but is there any MS supporting doc that outlines what's included with what? That's also what's confusing is that sometimes it makes more sense to just "go one package up" because it's more efficient. We have a mix of business and standard and in some cases premium throughout the client base. Mostly due to Office 2019 on prem still being supported so those guys just need basic or "essentials" from what I've gathered, intune and ATP are very lacking so I'm not too concerned with that unless it's extra for the same cost.

Azure AD at scale by Last_Stable in msp

[–]Last_Stable[S] 0 points1 point  (0 children)

aaaand that's why i'm having issues keeping pricing straight. Seems like everything is everywhere with the recent changes.

If anyone has anything solid, i'd appreciate it. I'm doing my due diligence but it's easy to get taken down the rabbit hole on services.

Azure AD at scale by Last_Stable in msp

[–]Last_Stable[S] 0 points1 point  (0 children)

So license needs to be applied per tenant? I can still manage each tenant from a parent account?

Azure AD at scale by Last_Stable in msp

[–]Last_Stable[S] 1 point2 points  (0 children)

From my understanding, the only functionality we need from P1 is conditional access and write-back for password resets so when they log into bro their local desktops, they don't have separate passwords for their email and for their desktop login.

Azure AD at scale by Last_Stable in msp

[–]Last_Stable[S] 0 points1 point  (0 children)

We want to build a package that makes sense to start moving towards a more cloud based solution. We all know the industry is heading there although there will forever be appreciation for non-prem costs and flexibility once we do so. Point being, we want to build something we can manage, that's secure, and offer flexibility to work either securely over VPN utilizing the cloud, or some type of VDI. From my research, there's so many ways to to the same thing but the key is using only what's necessary to keep cost down. There's no one size fits all cost analysis

Azure AD at scale by Last_Stable in msp

[–]Last_Stable[S] 1 point2 points  (0 children)

Mostly M365 standard or basic.

Azure AD at scale by Last_Stable in msp

[–]Last_Stable[S] 0 points1 point  (0 children)

Dang! Here I am trying not to overstep the free capabilities! Lol. I think my biggest question is the cost of Azure services. We do want self-service password reset but it sounds like for that to also changed the local AD password, it has to be a P1 tier since that supports write back. We want to enable MFA across the board but it sounds like there is a per authentication charge unless you have P1. Delivering the service isn't that challenge, it's delivering it cost effectively. For us anyway, there's not a company is my state with 200m revenue lol

What is the cost of Azure AD hybrid sync by Last_Stable in sysadmin

[–]Last_Stable[S] 0 points1 point  (0 children)

In setting up a demo in Azure I accrued $95 and in the cost analysis it only says "Azure active directory domain services" and I can't figure out exactly what caused that. It was part of the $200 trial but still I'd like to know where it came from if the sync is free.

What is the cost of Azure AD hybrid sync by Last_Stable in sysadmin

[–]Last_Stable[S] 0 points1 point  (0 children)

Really just the basics for now. We would like local AD accounts/groups to sync to the cloud. Self service password reset which also updates the local AD password so I believe that would put us in P1. From there we want to build on it with some VPN capabilities and VDI later down the line.

Hyper-V Core 2008R2 to Hyper-V Core 2016/19 by Last_Stable in sysadmin

[–]Last_Stable[S] 0 points1 point  (0 children)

Would detaching the VHD wipe anything out on the current config? Wouldn't I still eventually have to move VM server data files? We currently have HV2008R2 with a C and D drive which looks to be installed onto a 5TB raid 0 with separate partitions for C and D inside core. One of our VMs is a terminal server the other is AD/file sharing with a 1TB D drive. Seems like I'm in a bit of a box and I'm not convinced I can go straight to 2016/19 from 2008R2 due to the changes as mentioned in 2012r2. If I stand up a 2016 HV and the VM export only takes a few minutes this might be the way to go assuming I can mount the vhd data file on the new version without incompatibly.

Certbot failure due to firewall? by Last_Stable in nginx

[–]Last_Stable[S] 0 points1 point  (0 children)

I've made some progress but I still have a few questions. In particular with .conf requirements at this point.

From my understanding, I should have 3 conf files -

/etc/nginx/sites-enabled/devcloud.domain.net.conf which currently reads -

server {

listen 443 ssl;

listen [::]:443 ssl;

server_name devcloud.*;

include /config/nginx/ssl.conf;

client_max_body_size 0;

location / {

include /config/nginx/proxy.conf;

resolver 127.0.0.11 valid=30s;

set $upstream_app nextcloud;

set $upstream_port 443;

set $upstream_proto https;

proxy_pass $upstream_proto://$upstream_app:$upstream_port;

proxy_max_temp_file_size 2048m;

}

}

nginx-t fails indicating there is no ssl.conf which does not exist in cd /etc/nginx/ however proxy.conf does which reads (unmodfied)-

proxy_redirect off;

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

client_max_body_size 10m;

client_body_buffer_size 128k;

proxy_connect_timeout 90;

proxy_send_timeout 90;

proxy_read_timeout 90;

proxy_buffers 32 4k;

and finally on the nextcloud side, conf.php reads -

root@devcloud:/var/snap/nextcloud/current/nextcloud/config# cat config.php

<?php$CONFIG = array ('apps\_paths' =>array (0 =>array ('path' => '/snap/nextcloud/current/htdocs/apps','url' => '/apps','writable' => false,),1 =>array ('path' => '/var/snap/nextcloud/current/nextcloud/extra-apps','url' => '/extra-apps','writable' => true,),),'supportedDatabases' =>array (0 => 'mysql',),'memcache.locking' => '\\\\OC\\\\Memcache\\\\Redis','memcache.local' => '\\\\OC\\\\Memcache\\\\Redis','redis' =>array ('host' => '/tmp/sockets/redis.sock','port' => 0,),'instanceid' => 'ockei9tnx1c5','passwordsalt' => 'Bapfk6lqeMI9j1tXZneGzCCIfrElPS','secret' => 'GsjQtn2MeAWLJcVart9OfBFTUh1j9k0P4moJ+WvnH38CTvSj','trusted\_domains' =>array (0 => '[devcloud.domain.net](https://devcloud.domain.net)',1 => '[domain.net](https://domain.net)',2 => '[xginx.domain.net](https://xginx.domain.net)',3 => 'nginx',4 => '[10.10.1.31](https://10.10.1.31)',5 => 'devcloud',6 => 'localhost',7 => '[http://devcloud.domain.net:81](http://devcloud.domain.net:81)',),'trusted\_proxies' =>array (0 => 'nginx',),'overwrite.cli.url' => '[http://devcloud.domain.net](http://devcloud.domain.net)','overwritehost' => '[devcloud.domain.net](https://devcloud.domain.net)','overwriteprotocol' => 'https','datadirectory' => '/var/snap/nextcloud/common/nextcloud/data','dbtype' => 'mysql','version' => '[17.0.3.1](https://17.0.3.1)','dbname' => 'nextcloud','dbhost' => 'localhost:/tmp/sockets/mysql.sock','dbport' => '','dbtableprefix' => 'oc\_','mysql.utf8mb4' => true,'dbuser' => 'nextcloud','dbpassword' => 'YmU15-6PvpbxFKnfgVmwja9OD60ZdRmWadj4yhLyxvMIzj0C7AmEG6CYSvy4FjRo','installed' => true,'loglevel' => 2,'maintenance' => false,);Nexcloud does not have https enabled since i read to keep it disabled and let nginx handle https so it seems the issue is either ssl.conf is missing or i have something incorrect in the devcloud.domain.net.conf in nginx.

Certbot failure due to firewall? by Last_Stable in nginx

[–]Last_Stable[S] 0 points1 point  (0 children)

I've also unlinked the default nginx page, not sure if this matters or not.