How to reset xerox printer without admin password?
How to detect if you’re behind a transparent proxy?
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