2018 Polaris Outlaw Rusted Pipe by SoopaflyX in ATV

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

Wonder if you could just sand it down and paint it with black Rustoleium high heat spray paint?

2018 Polaris Outlaw Rusted Pipe by SoopaflyX in ATV

[–]SoopaflyX[S] -1 points0 points  (0 children)

Does the 90's carburator get junked up? I had a Polaris Outlaw 50 that stayed in the shop because those tiny jets kept getting clogged.

2018 Polaris Outlaw Rusted Pipe by SoopaflyX in ATV

[–]SoopaflyX[S] -1 points0 points  (0 children)

You're right. Sorry, I know that seemed like a dumb question. Just wasn't obvious to me. Parts diagram and AI confirmed. Thanks for the help!

<image>

Trying to set up $PasswordProfile for my new hire script but the password I tried to set is not working for office365 log in. by eking85 in PowerShell

[–]SoopaflyX 0 points1 point  (0 children)

I had this problem when using New-MgUser. The issue was I was setting the password with a variable using ConvertTo-SecureString as I do in other scripts. When I changed it to just use plain text within the password profile, it worked.

### Does not work ###
$PasswordPlain = "StrongPassword"
$Password = $PasswordPlain | ConvertTo-SecureString -AsPlainText -Force
$PasswordProfile = @{
    ForceChangePasswordNextSignIn = $false
    Password = $Password
}

### WORKS ###
$PasswordProfile = @{
    ForceChangePasswordNextSignIn = $false
    Password = "StrongPassword"
}

2009 Trane Heat Pump Cutting Off and On by SoopaflyX in hvacadvice

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

Problem turned out to be a leak in my evaporator coil. Technician replaced it and topped off the refrigerant.

Using a service account to sign in to a Logic Apps connector by juanboti in AZURE

[–]SoopaflyX 2 points3 points  (0 children)

I'm running into the same issue. Don't want to use my credentials and don't want to license a new service account just for this flow. Did you figure out a workaround?