How to reset Dell SupportAssist driver detection

If you need to start Dell SupportAssist driver detection again, even if you did not install all drivers (or installed drivers manually from support webpage) you can do this:

Locate SQlite DB file – C:\ProgramData\SupportAssist\Client\Agent\db\SupportAssist.db

Open the file in SQlite editor – for example: https://sqliteonline.com/

Check table “DriverInstallDetails” ->

 
SELECT * FROM 'DriverInstallDetails';


It should have list of drivers installed from table “DriverDetails” ->

SELECT * FROM 'DriverDetails';

If not, add rows using ->

INSERT INTO 'DriverInstallDetails' VALUES (%NEXT_ID%, "Installed","0001-01-01 00:00:00",1549184524,"UI",%DRIVER_ID_FROM_ 
DriverDetails%,null);

Save DB and upload to the directory.

You can scan for drivers again!

Odinstalace built-in “metro” aplikace

Jak odinstalovat “metro” aplikaci, ktera je zabudovana do OS? Treba takovy Xbox Music (nove pouze Music).
Takove aplikace nemaji “uninstall” polozku v systemu, presto se jich lze zbavit/reinstalovat.

takze jak na to:
PowerShell jako admin
Get-AppxPackage *music* | Remove-AppxPackage
HOTOVO

Nyni lze tuto aplikaci nainstalovat klasicky ze Store.

Windows Group Policy – uvodni nastaveni

Po instalaci Windows se mohou hodit nejaka nastaveni,  ktera se daji elegantne poresit z Group Policy.

Takze jdem rovnou na to:

IE11 ve Windows 10 ma drobnou chybu, neustale zobrazuje Welcome to IE11 stranku. Jak se toho zbavit?
User Configuration -> Admin Templates -> Windows Components -> IE -> Prevent running First Run wizard -> Enable / Go Directly to homepage

Pokud nemate TPM chip a chcete pouzit BitLocker tak:
Computer Configuration -> Admin Templates -> Windows Components -> BitLocker Drive Encryption -> Operation System Drives -> Require additional authentication at startup -> Enable / Allow BitLocker without a compatible TPM …

Jak zrusime protivny Lock Screen:
Computer Configuration -> Admin Templates -> Control Panel -> Personalization -> Do not display the lock screen
Prubezne budu aktualizovat…