SOLVED – How linq order by a Hyphen

A list contains a structure like that: ColumnA 0+ABC0-ABC0001000200030004 then sort the list using order by like list. OrdeBy(o=>o.ColumnA).ToList(), the below is the result: 0+ABC00010002000300040-ABC So the question is why “0+ABC” at the top of the list but “0-ABC” is put to the end. it looks like linq sort “+” and “–” using different methods….

SOLVED – You have to delete all the items in this folder before you can delete the folder.

For a folder on the team site., trying to delete it might show an error that says – “You have to delete all the items in this folder before you can delete the folder. Documents->Test1->Test2“. While trying to delete ‘Test2’ folder, the ‘Test2’ folder is empty and doesn’t have any files or folders in it….

SOLVED – How To Get Report Of All Quarantined Emails From Specific Domain Users

The O365 Environment is a great resource for managing data. It even allows you to manage all quarantined emails. Read more to find out about How To Get Report Of All Quarantined Emails From Specific Domain Users You can easily get the report of all Users’ quarantined emails from a specific external domain in O365…

SOLVED – What should we do to have “add-computer” in PowerShell 7?

The add-computer cmdlet is unavailable in PowerShell 7. Fortunately, there is a workaround to having “add-computer” (or equivalent) in PowerShell 7. Read more to find out What should we do to have “add-computer” in PowerShell 7? To solve this issue, you can try running the following command: Import-Module Microsoft.PowerShell.Management -UseWindowsPowerShell Once done, you can try…