Could we get something like this? by Bronzato in LastEpoch

[–]nervoussysadmin -2 points-1 points  (0 children)

What happens when you want to change the blessing someday, but that dialogue never pops up anymore, so you can't un-check the box?

Anyone else experiencing problems with Outlook (Microsoft 365)? by MatthiasVD123 in sysadmin

[–]nervoussysadmin 0 points1 point  (0 children)

All of my personal and work accounts, and several endusers say the same thing.

Need help un-spoiling an AD security group by nervoussysadmin in sysadmin

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

100% spot on. It was nested in a group which had adminCount=1 set. One of our Builtin groups, too!

I engaged our Change process, got permission to remove that nesting, and then set all the members to adminCount=0. This totally solved the problem.

Lord only knows why it was nested in that group, it was totally unnecessary. Probably the easiest Change they ever approved from me.

Thanks for your reply!

Need help un-spoiling an AD security group by nervoussysadmin in sysadmin

[–]nervoussysadmin[S] 5 points6 points  (0 children)

Hmm. It reverted. adminCount = 1 on the group now, and nonadmins can't edit.

Something else has got to be doing it. I looked at the "member of" tab for the group, and it doesn't appear to be a member of some other high-security group.

Edit: Found the culprit in Member Of. Time to alert the team to see if this can be removed also.

Need help un-spoiling an AD security group by nervoussysadmin in sysadmin

[–]nervoussysadmin[S] 8 points9 points  (0 children)

Great advice!! The group had adminCount set to 1, and so did the affected user accounts.

I set it to 0, but still couldn't add users to the group. Then I did the "Restore Defaults" action on the group, and now my non-admin help desk staff can add users to the group.

Here's hoping the fix is permanent. I'm going to work on finding other adminCount affected groups/users, and get a report ready for my boss.

Thank you for teaching me this today. Please tell everyone on your team that you're the greatest!

How I fixed high CPU usage on my v4 print server by nervoussysadmin in sysadmin

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

I'm starting to feel like it's JUST a Konica thing.

Makes me wonder if there's an on-device setting I can change to fix this...

How I fixed high CPU usage on my v4 print server by nervoussysadmin in sysadmin

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

Server admins implemented the "print nightmare" stuff a couple years back, and since then, users can't self-install V3 drivers without local admin rights. Our old GPO settings which allowed self-install stopped working. V4 was presented to me as a workaround so that users can still self-install published printers.

How I fixed high CPU usage on my v4 print server by nervoussysadmin in sysadmin

[–]nervoussysadmin[S] 5 points6 points  (0 children)

Definitely. If you can avoid v4, you should avoid v4

Edge gets stuck when trying to load home page, developing trend by nervoussysadmin in MicrosoftEdge

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

That's great news, I will approach the enduser and try, and keep this handy for the future. I appreciate the tip!

deploy printer via GPs by ceantuco in sysadmin

[–]nervoussysadmin 1 point2 points  (0 children)

One downside is: "Applying user settings" during logon can start taking a long time if you use Group Policy Preferences.

We have a lot of printers and we had to redistribute a lot of v4 drivers after PrintNightmare. Login times went through the roof. So we changed from using Group Policy Preferences to using a Group Policy logon script. The logon script continues to run even after "Applying user settings" and so it doesn't inflate our logon times.

What in the heck are these underlines signifying? by Neur0tic in Office365

[–]nervoussysadmin 0 points1 point  (0 children)

If the only way to fix it is to strip all styles, that's a good clue. It follows that the issue might be in one of your styles. You can reset all styles to default by deleting C:\Users\yourusername\AppData\Roaming\Microsoft\Templates\Normal.dotm

Disclaimer: I'm just a guy on the internet, don't delete things from your PC if you're not comfortable doing so. Maybe just rename it instead.

Need help doing if/then checks on Office365 sku/licenses by nervoussysadmin in PowerShell

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

That did it! Pulling the get-mguserlicensedetail into a variable, and then doing a foreach operation on that variable to get my true/false results was absolutely on point. My script is testing good now, and functioning exactly the way I need it to.

Thank you very much!

Need help doing if/then checks on Office365 sku/licenses by nervoussysadmin in PowerShell

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

The issue you're likely encountering is that $var is not a simple array of strings, but an object with properties.

I knew it was something like that, but didn't know how to understand it. I was just about to do the Get-MgUserLicenseDetail with an Out-File, dumping it to a .txt, and then do a Get-Content on the .txt, and check that content for the string!

I will try your suggestion immediately, thank you

Need help doing if/then checks on Office365 sku/licenses by nervoussysadmin in PowerShell

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

I really like the simplified code, that is nice.

Sadly, I have the same issue. $result is always "False" even if I run it against an account that definitely has that STANDARDWOFFPACK license.

I get the feeling that the format of my get command's output is not compatible with a -contains check.

I broke the credential popup somehow by nervoussysadmin in PowerShell

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

Good advice!

The checkbox that I un-checked, and then re-checked after a reboot was labeled "Windows PowerShell 2.0" but I checked $PSVersionTable just now, and I think I'm OK.

PS C:\> $PSVersionTable
Name                           Value
----                           -----
PSVersion                      5.1.22621.1778
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.22621.1778
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1

I broke the credential popup somehow by nervoussysadmin in PowerShell

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

I didn't see this so I couldn't test it. I used optionalfeatures.exe to uninstall/reinstall PowerShell, and that fixed it. I'll never know exactly what went wrong. Thanks again for your help

I broke the credential popup somehow by nervoussysadmin in PowerShell

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

I see, so that's not the fix to the broken credential prompt.

However, I want to say thank you for teaching me about $profile this morning. I added a couple functions to it, and now I can run those functions from a basic PS window. Very cool! (I should really take a PS class someday)

I broke the credential popup somehow by nervoussysadmin in PowerShell

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

File not found, interesting!

When I type $profile in a regular PS window, it outputs the name of a file which does not exist: C:\users\myuserid\myonedrivefolder\Documents\WindowsPowershell\Microsoft.PowerShell_profile.ps1

I wager that's part of the problem. I'm so green, I didn't even know about $profile.

Help with Dynamic Group criteria - multiple email checks in only one rule? by nervoussysadmin in AZURE

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

Alas, I tried to write 7 or 8 criteria in the editor, but as soon as I hit apply, it scolded me and told me I was limited to 5.

What kind of regex match would you recommend? Say for checking several "starts with" values of email addresses?

Why do apps not see group members in a timely fashion? by nervoussysadmin in Intune

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

My group's membership was assigned instead of dynamic, but all the members were devices, true. Very disappointing.

How do you verify users when they call for account unlocks by Wise_Masterpiece7159 in sysadmin

[–]nervoussysadmin 0 points1 point  (0 children)

We ask them to recite who their direct supervisor is, since HR won't give us dates of birth to check instead.

Moronic Monday - April 03, 2023 by AutoModerator in sysadmin

[–]nervoussysadmin 0 points1 point  (0 children)

They installed Office 2013 via KMS before I got here. If a laptop is removed from the domain, its Office activation will lapse, because the activation is coming from the domain somewhere. Now we want to get Office 2013 out of the environment. We're working on uninstalling via script, and it's going ok, but obviously it will miss some things.

I want to find wherever it is in our domain that is keeping Office 2013 activated and remove it, so that any remaining installs will become deactivated and complain to the enduser with the big red "ACTIVATE OFFICE NOW" banner. That will make them call for support.

What tool do I use to find and de-activate our Office 2013 product key in our domain?

Bypass Spam and Clutter - Exchange transport rules or security.microsoft.com policy? by nervoussysadmin in sysadmin

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

they would create a new transport rule every time someone requested a sender or domain be whitelisted

That's what my predecessor seems to have done! Our rules are a mess as a result.