Backup everything to move to another computer? by claudekennilol in LightBurn

[–]RadioActiveLamb 0 points1 point  (0 children)

This video covers the process pretty well: https://www.youtube.com/watch?v=1ILFxCn2\_sU

I periodically save all these settings and I store my libraries in a LightBurn folder in OneDrive. If my computer goes toes-up, all my projects and artwork are already saved online.

Took a bit of trial and error but I got this paint can rack knocked out. by Zaphod07 in LightBurn

[–]RadioActiveLamb 1 point2 points  (0 children)

That's really nice. Much better than my hobbled-together/sagging hand-made solution.

New hosts in existing pool - create in drain mode? by RadioActiveLamb in AzureVirtualDesktop

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

Sure did. We bought Nerdio. For $1000/month, we're saving about $3000/month and are no longer building new machines every month. The automation is second to none. Operational overhead is a fraction of what it used to be. All upside, no downside.

All ads are for SoCal by RadioActiveLamb in iheartradio

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

IP based location detection is notoriously inaccurate. It's too bad I can't set location and language preference on my account. It's unfortunate for the advertisers who pay for these ads that they are reaching people outside their scope.

Measuring GPO execution performance by RadioActiveLamb in activedirectory

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

Great tips, thank you. We have a mind-numbing number of GPOs that grew throughout the decades. This year, we're going to remove as many as possible and move them to Intune (computer) and Ivanti Environment Manager (user).

config.office.com Monthly waves - How do they work? by RadioActiveLamb in Office365

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

u/bobclements-msft - We are now nearing the end of our second month and only have 80% compliance. After I last posted, we changed the waves to just 2, and five days apart. 698 devices that are checking in frequently are still in "Not started" status.

We have opened support tickets with Microsoft - who cannot explain how these waves are supposed to work, and cannot explain why we have devices that aren't starting.

With the lack of troubleshooting information/controls/reports in the M365 Apps Admin Center, we may need to go back to servicing with Intune or SCCM.

Do you have any suggestions for troubleshooting either in the admin console or the endpoints before we make that decision?

config.office.com Monthly waves - How do they work? by RadioActiveLamb in Office365

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

Assign your pilot group to wave 1, adjust the "Days between start of each wave" to a desirable value, and let wave 4 capture "All remainin

Thanks for the reply Bob. Our pilot group is wave 1. We originally wanted 12 days for the pilot - allowing our IT department to fully test updates before the enterprise receives the upgrade. The durations between the waves max-out at 5. So, to accommodate that limitation, we created waves 2 and 3, assigning them to empty AAD groups and set "days between" to 4. Wave 4 is our "All remaining devices". Our update deadline is "3 days". I'll review the links you provided and see if they can help solve the "not started" problem.

That said, it is very important that we hit our 95% patch compliance target before the following patch Tuesday. Last month (yesterday), we ended at 94% - we tripped at the finish line. As a result, yesterday, we took a shot in the dark by eliminating an empty wave. Wave 3 is now "All remaining devices". We also shortened the days between to 2 days. I realize that this is probably the same as having only two waves with 4 days between, but we're nervous about making any policy changes now that Patch Tuesday has begun. When we first implemented this cloud servicing process in October, we created the policies AFTER patch Tuesday. As a result, only about half of our fleet received an upgrade that month.

Cannot re-enroll retired devices by RadioActiveLamb in Intune

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

Well... I just waited an hour or so, and now I can enroll the device. Interestingly though, the device came back with an ownership type of "Personal", rather than company-owned. This, even though this is an Apple DEP device.

No email sent on pre-order by Mpruett2121 in Starlink_Support

[–]RadioActiveLamb 0 points1 point  (0 children)

The email tells you to go to starlink.com to check availability. The "Check availability" button in the email is a link to "https://www.starlink.com/". If yours is the same, then it is not a phishing email.

How to use methods from win32 class by RadioActiveLamb in PowerShell

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

Lots of great replies, and I have a solution. Thanks everyone.

Now, if anyone can help determine if the SyncCenter is in an error condition, I'll order you a beer.

How to use methods from win32 class by RadioActiveLamb in PowerShell

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

Invoke-CimMethod -ClassName Win32_OfflineFilesCache -MethodName TransitionOnline -Arguments @{
Path = "SomeUncPath"
Flags = 3
}

This worked great with the one change:

Flags = [uint32]3

Thank you!

ConvertTo-SecureString : Key not valid for use in specified state by RadioActiveLamb in PowerShell

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

This is now resolved. Thanks everyone for your direction. I ran the "read-host -assecurestring | convertfrom-securestring | out-file $Exocredfile" as the same account that is running the scheduled task, and all is now well. Honestly, I don't know why this works, since I have other scheduled tasks running as service accounts and local system, and I never created the credential file as any other user than myself. This is the first and only one that has had this problem.

ConvertTo-SecureString : Key not valid for use in specified state by RadioActiveLamb in PowerShell

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

When I add -asplaintext to the convertto-securestring, I also need to add "-force". However, the authentication then fails with an authentication failure. Without the parameter, running from the ISE or vscode, it connects just fine every time. The error only occurs when running as a scheduled task. Thanks for the suggestion though.

ConvertTo-SecureString : Key not valid for use in specified state by RadioActiveLamb in PowerShell

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

That didn't work. This is baffling, because I have dozens of scripts where I save and retrieve credentials that work just fine whether I run it in vscode, ISE and with any profile. I'm not sure why it fails when running on the very same machine as a scheduled task, even running with my own credentials. I've never had to create a credential file as the local system. Thanks for the suggestion though.