by getdeclue on October 11, 2022
The issue may be that the EnableADAL key is set to 0 and needs to be changed to 1.
- Go to “Computer\HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Identity.”
- Verify if there is a DWORD value named “EnableADAL” that is set to 0. (If “EnableADAL” is not found in the registry, skip to step 6.)
- Update the DWORD value for “EnableADAL” to 1.
Site for reference: https://confluence.som.yale.edu/display/SC/Outlook+Modern+Authentication+Registry+Setting
by getdeclue on October 16, 2020
by getdeclue on July 23, 2020
https://www.winhelponline.com/blog/enable-built-in-administrator-windows-10-recovery-options-advanced/
by getdeclue on December 6, 2018
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
set-executionpolicy remotesigned
Import-PSSession $Session
Get-Mailbox
Get-Mailbox | Set-MailboxJunkEmailConfiguration –Enabled $False
by getdeclue on August 14, 2018
The solution was to have windows update the ASmedia USB 3.0 drivers. It then stops randomly disconnecting. I also ran a firmware update to the TB16.
The only way I was able to update the firmware on the TB16 was to use a Dell XPS 15 9560. The update fails on the 9570.
by getdeclue on March 6, 2018
The two keys can be added via group policy to suppress notifications of updates.
Hive HKEY_CURRENT_USER
Key path Software\FileMaker\FileMaker Pro\16.0\Preferences
Value name Hide New Version Notification Dialog
Value type REG_SZ
Value data 1
Hive HKEY_CURRENT_USER
Key path Software\FileMaker\FileMaker Pro\16.0\Preferences
Value name Hide Update Notification Dialog
Value type REG_SZ
Value data 1
by getdeclue on June 6, 2017
Delete the upgrade key in the registry.
Delete all local user profiles. This is due to windows store apps that were automatically installed.
by getdeclue on January 11, 2016
Delete print jobs stuck in queue
In an administrator command prompt paste the following commands or convert it into a script.
@echo off
echo.
echo Purging the print queue…
net stop Spooler
echo Deleting all print jobs… ping localhost -n 4 > nul
del /q %SystemRoot%\system32\spool\printers\*.*
net start Spooler
echo Done!
ping localhost -n 4 > nul
If that doesn’t work you can try these two things:
Run sfc /scannow from an admin command prompt
Set Bluetooth service to automatic and then start it
by getdeclue on October 20, 2015
In and admin command prompt run the following command:
dism.exe /online /cleanup-image /spsuperseded
by getdeclue on May 27, 2015
After windows pe has loaded hold shift and press f10 to bring up a command prompt window.
At a command prompt, type the following command, and then press ENTER:
drvload driver.inf
Notes
Driver.inf is the name of the third-party network driver.
You have to specify the full path and the name of the driver. For example, if Driver.inf is on a CD, and the CD drive is drive D, type the following command, and then press ENTER:
drvload.exe d:\Folder\Driver.inf
Type wpeutil InitializeNetwork
To verify network connectivity, type ipconfig /all.
The drive letter of D varies based on how many partitions are on the local systems hard drive.
https://support.microsoft.com/en-us/kb/923834/en-us