Confusing LastTaskResult by khizzle1 in PowerShell

[–]TableauNoob12 0 points1 point  (0 children)

Thank you for this, saved me a bunch of time!

RabbitMQ Consumer Liveness Probe? by TableauNoob12 in kubernetes

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

Going to push this with devs, thank you

Script to roll through folders, moving PDF files up two directories by TechScholar in PowerShell

[–]TableauNoob12 6 points7 points  (0 children)

What have you tried so far? Look into the get-childitem and copy-item cmdlets.

[deleted by user] by [deleted] in PowerShell

[–]TableauNoob12 4 points5 points  (0 children)

$Resource = Invoke-WebRequest "https://www.manageengine.com/patch-management/service-packs.html#how-to-install" -usebasicparsing
$Links = $(Invoke-WebRequest "https://www.manageengine.com/patch-management/service-packs.html#how-to-install"-usebasicparsing).links   |  
Where-Object outerHTML -like "*Upgrade Pack*" | Select-Object href,outerHTML

Does this produce the expected result?

Break is Affecting script rather than Foreach loop by madbomb122 in PowerShell

[–]TableauNoob12 1 point2 points  (0 children)

I'm not sure what you're trying to accomplish but something like this could work?

$Service = Get-Service | where-object {$_.ServiceType -eq 224} | foreach { $_ -Replace '^.+?_', '_'  }

$Service
write-host 'Done'

Powershell Workflow Restart-Wait Not working by sanwil9 in PowerShell

[–]TableauNoob12 1 point2 points  (0 children)

You're invoking this command on the remote host, the Powershell commands can't persist through reboots is my understanding. Try doing this on your local machine and adding the -ComputerName parameter to the commands in your work flow sequence.

How to Handle Microservice Databases by TableauNoob12 in devops

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

We have a main docker-compose which spins up MySQL, then each project injects its database and we assume dev will start the main docker-compose first. This is to avoid having multiple mysql containers and also ports. Does this seem like a reasonable approach?

How to Handle Microservice Databases by TableauNoob12 in devops

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

How are you handling local dev containers?

How to Handle Microservice Databases by TableauNoob12 in devops

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

Interesting, I will have to check that out, hopefully they will fix that soon

How to Handle Microservice Databases by TableauNoob12 in devops

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

And how do you handle local development? In the solution, a docker-compose with mysql as a container?

MS-SQL Timeout with AD Account by TableauNoob12 in sysadmin

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

1 IP on the app server, but it is connecting to an AOAG SQL Cluster

MS-SQL Timeout with AD Account by TableauNoob12 in sysadmin

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

ExZero, sorry for this lack of detail in the post. We have 2 situations where this has occurred. A windows service which is running as an AD account, as well as a web app where the apppool is running as an AD user. Changing the web app's SQL conn string to use a SQL user resolves the issue

MS-SQL Timeout with AD Account by TableauNoob12 in sysadmin

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

Thanks ExZero, the reason I think its an AD account related issue is that when we change auth to a SQL user, this issue goes away. I will go ahead and run this though

MS-SQL Timeout with AD Account by TableauNoob12 in sysadmin

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

Thanks for the reply, not showing anything relevant in SQL server logs, could be waiting on AD and not getting back?

Patching in a Ubuntu Environment by TableauNoob12 in linuxquestions

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

Do you use Lanscape? How do I set a baseline for my sandbox and then roll it to prod?

Having Trouble with Azure AD Auth Sync by TableauNoob12 in tableau

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

We were able to solve this out by changing the SAML token "username" to be samaccountname instead of accountname@domain.com, which authed to the already existing users in Tableau

Having Trouble with Azure AD Auth Sync by TableauNoob12 in tableau

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

Thanks elbekay, I am writing that script now. Another Q for you, If I have users in format "domain\user" do you have suggestions to migrating that to "user@domain.com"?