Remove Users from a Teams Call Queue - powershell

I have a quick question and I wander if you can help. Does any of you know how to remove a user from a teams call queue using Powershell? For some reason I'm not able to do it through Admin Center.
On admin center I can see 4 items added to the queue meaning that my 4 users have been assigned but I have all options disabled and it doesn't let me to remove users. Has this every happened to any of you?
Thank you very much in advance for your help.
Thank you very much for the help
Tomas Gonzales

if you have already created call queue setup. Please get the information of call queue and use set command to reset the user list.
getting information: https://learn.microsoft.com/en-us/powershell/module/skype/get-cscallqueue?view=skype-ps
Setting user list using set cmdlet: https://learn.microsoft.com/en-us/powershell/module/skype/set-CsCallQueue?view=skype-ps

Related

extension properties displayed in graph but not in powershell

i have synced an extension "departmentnumber" to azure ad.
I can see the output in ms graph, when i do the following: https://graph.microsoft.com/v1.0/users/*************************?$select=extension_450c0e26a8a440748e1e4f*******_departmentNumber
The problem is, that I can not see it in powershell. There is only a blank field as you can see here:
As I understood it, there should be another row with this output: extension_450c0e26a8a440748e1e4f*******_departmentNumber
Where is my mistake?
purpose: i want to get an export, where every user is listed with the assigned licences and the departmentnumber which will get added in onprem AD. If anyone has a better solution - please tell me
Thx for yourt help guys!! :)

Is there any way to force to update metadata on Opensea?

I tried to change token base URL to display the new images of NFTs on opensea.io. But it is not updated immediately.
There is a way to update by specifying force_update=true on Rikeby testnet.
But I don't know how to update it on mainnet. Will it be possible?
Any help will be appreciated.
Try this :
https://api.opensea.io/api/v1/asset/<your_contract_address>/<token_id>/?force_update=true
please tell me if this works.
This method may not work on another mainnet example polygon.
Update: There is a manual refresh for metadata on opensea. One can always use that one too.

How can I know who renamed a specifc group in active directory?

In my environment, someone renamed the "Group name" of an active directory global security group. (I refer here to the attribute sAMAccountName, not the display name)
I'd like to know who did so and I can't manage to get it done by PowerShell using Get-WinEvent. I don't know if some of you already managed to get it done, but on my side I struggle to identify the condition required to do so.
Any idea is welcomed !
Thanks in advance :)

Adding block feature using swift and parse server

So I'm dealing with app rejection "Guideline 1.2 - Safety - User Generated Content" and one of the features app want me to implement is "- A mechanism for users to block abusive users" Im not sure exactly how to put the code into action but know what i have to do which is
Step 1. Create class in Parse for blocked users, like: "Blocked"
Step 2. Create columns of type [String]: blockedBy & username (user is blocked)
Step 3. Query only users if current user is not in blocked list
Step 4. Add button to send PFObject to block a User
If someone can help i can provide info from my project. It would be much appreciated because I've been struggling with this for weeks.
Check out https://www.raywenderlich.com/98831/parse-tutorial-getting-started-web-backends tutorial. Great help, shows how to setup the local environment, the MongoDB, how to create a class within the local parse environment ran from the terminal, shows how to query, etc. Let me know if you have more specific questions I can help resolve.

Is there a module for Drupal 7 to reset passwords for all users

Is there a module for Drupal 7 to reset passwords for all users. Same time it must send them email with new password or even better- link to create new one by them self.
There are some modules out there what I found but not doing what I need. For example http://drupal.org/project/account_reminder
I am starting to think that I have to write one by myself. Maybe combaining answer https://drupal.stackexchange.com/questions/27768/how-can-i-programmatically-reset-a-users-password and module http://drupal.org/project/account_reminder
Any other thoughts?
I'll add an answer because this question popped up in a google search for mass password reset
The module mass password change module https://www.drupal.org/project/mass_password_change does what you want.
This module adds a views bulk operation action to reset the passwords of selected users that you can use in a custom view or admin view
You might take a look at : http://drupal.org/project/force_password_change
I haven't tested yet but the description seems to define your needs.
wish helps,
Cheers,