Step 2: To reset them, delete this folder, then restart the WLAN service.
How to Remove new Teams for all users
To uninstall and deprovision the new Teams for all users, use the following PowerShell command:
Download teamsbootstrapper.exe from Microsoft.
./teamsbootstrapper -x
Original link
How to Download and install new Teams for a single computer
To install new Teams on a single computer with many users, follow these steps:
- Download the .exe installer. If you have downloaded this file previously confirm you have the latest version by comparing the properties on each file.
- Open the Command Prompt as an Admin.
- At the prompt enter: .\teamsbootstrapper.exe -p
- A success or fail status displays.
Here is the original link from Microsoft.
How to fix can’t sign into office 365 desktop apps on Windows 10?
Please try the following:
Fully exit out any Office 365 APPs first.
- Log off word account and log back in
- Remove all the office 365 apps credentials in Windows Credentials
If all failed, please try:
close all office apps
Go to the AAD identity folder in : C:\Users<Username>\AppData\Local\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\Settings
Rename Settings.dat to settings.datold
Go to C:\Users<Username>\AppData\Local\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\AC\TokenBroker\
Rename folder Accounts to accounts-old
How do I force Software Center to update the available software list?
Adobe Acrobat Slow to Save
Try the following:
- Adobe Acrobat>Edit>Preferences>Security(Enhanced)>Disable “protected View” Disable all the security check box
- Go to Edit>Preferences>General>Uncheck show online storage when opening files and >Uncheck show online storage
- Launch Acrobat>click Edit>Preferences>Documents>uncheck the box next to Save As optimizes for Fast Web View>OK
How to use Powershell to Export All Distribution Groups and Members to CSV
Create a temp fold at c:\ called c:\temp and run the following script
$Groups = Get-DistributionGroup $Groups | ForEach-Object { $group = $_.Name $members = '' Get-DistributionGroupMember $group | ForEach-Object { If($members) { $members=$members + ";" + $_.Name } Else { $members=$_.Name } } New-Object -TypeName PSObject -Property @{ GroupName = $group Members = $members } } | Export-CSV "C:\temp\Distribution-Group-and-Members.csv" -NoTypeInformation -Encoding UTF8
How to Enable Remote Desktop from Command Prompt
How to find AD users Password Expiration Date and find all users with password never expires
Find AD users Password Expiration Date
Get-ADUser -filter {Enabled -eq $True -and PasswordNeverExpires -eq $False} -Properties DisplayName, msDS-UserPasswordExpiryTimeComputed | Select-Object -Property Displayname,@{Name=”Expiration Date”;Expression={[datetime]::FromFileTime($_.”msDS-UserPasswordExpiryTimeComputed”)}}
Find all users with password never expires
get-aduser -filter * -properties Name, PasswordNeverExpires | where { $_.passwordNeverExpires -eq “true” } | where {$_.enabled -eq “true”}| Format-Table -Property Name, PasswordNeverExpires -AutoSize