Sunday, May 14, 2023

Chrome cannot watch Netflix and Amazon Prime Video

 Netflix keep logout your session when you start playing 

Amazon Prime Video shows 7031 error 


My problem turns out is one of the Chrome upgrade corrupted the UserData DB, cookies are not read write correct, cleaning using option didn’t work. At the end I have to delete the whole UserData folder of Chrome in Windows User Profile AppData.


Saturday, December 25, 2021

Bluetooth Volume fix

Windows Registry Editor Version 5.00


[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Bluetooth\Audio\AVRCP\CT]

"DisableAbsoluteVolume"=dword:00000001

Saturday, October 30, 2021

Make a persistent Slitaz Linux USB using a 128MB stick

Do you use LILI, UUI or tazusb.exe because it won't fit 128MB USB or it just won't boot.

Download rolling iso from https://www.slitaz.org/en/get/

Boot it up using VMware, it might not enter X because you need to login as root/root, type tazx, configure to use vmware display driver.

normal user is tux

format your USB using

tazusb format /dev/sda1

create image from current running live ISO

tazusb gen-liveusb /dev/sda1


Now you can try to boot that USB using VMware, if VMware cannot boot it, in vmx file, change or add the following lines.

firmware = "efi"

efi.legacyBoot.enabled = "true"


When ever you make config changes, you need to rebuild rootfs.gz using

tazusb writefs [none|gzip|lzma]

use lzma if your have small USB but fast CPU.

Monday, October 25, 2021

Citrix Workspace lower game fps performance

 I was playing 80 hours Witcher 3 without performance issue >200 fps, all a sudden 1 day fps drops to 1-7 fps but CPU and GPU usage was never higher than 20%.


After a painful reinstall, restore, everything, it was "Citrix Workspace", uninstall it Witcher 3 run like wind.



Thursday, December 17, 2020

Complete guide to fix Windows 10 Spotlight issue

1. Set LockScreen back to Picture

2. Record down CreateID, Delete all sub-folder in Registry

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Creative\*

3. Delete these folders

C:\ProgramData\Microsoft\Windows\SystemData\your GUID number folder\ReadOnly\LockScreen

C:\Windows\Web\Screen

3. Run following in Administrator command mode

:: Reset Windows Spotlight

DEL /F /S /Q /A "%USERPROFILE%/AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy

:: Re-register Windows Spotlight

PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *ContentDeliveryManager*).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"

4. Make sure Background Apps allowed the following

Microsoft Edge

Settings

6. Import following into registry

open Registry Editor, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Creative\, delete S-1-5-21-1017067742-75256017-3817373065-1001 and create entries CreativeId with the value from S-1-5-21-1017067742-75256017-3817373065-1001, LockImageFlags=3 and LockScreenOptions=4 into the key with the user SID (whoami /user).

5. Restart PC

6. Change Lock Screen back

7. Open Microsoft Edge with wait



**Backup and Restore following 2 Registry from a PC that is working

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Creative]

[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Lock Screen\Creative]


Thursday, December 10, 2020

Windows 10 2004/20H2 Intel UHD Graphics 630 Black Screen with mouse cursor


I tried driver version 27.20.100.9025, 27.20.100.8935, 26.20.100.7210 all have the same problem

Symptoms

1. Black Screen with mouse cursor after screen saver / screen wake up after power plan turn off screen, only can fix by restart.

2. The Black Screen Monitor is connected to Intel UHD Graphics 630

2. If press Ctrl+Shift+Windows+B or Windows+E it might flash your desktop back for short seconds and goes back again or might not.

3. If you attach another monitor to Intel UHD Graphics 630, it will also be black with cursor.

4. If you attach another monitor to PEG/PCIE Graphics card, that monitor works fine

5. If you extend desktop with both Intel UHD Graphics 630 and the PEG/PCIE Graphics Card, you will find that when you click on the black screen, actually it works, Windows response to your mouse click when you click on the location start menu or open applications even if it is black.


Solution

1. Repeat the following steps until there is no Intel drivers left and it uses Microsoft Graphics Adapter driver

    a. Uninstall Intel(R) UHD Graphics 630 in Device Manager with "Delete the driver software for this device" checked.

    b. Right click on your computer and click "Rescan for hardware changes"

2. Windows 10 will use the default Microsoft driver for a few minutes and install Intel(R) UHD Graphics 630 again with driver version 27.20.100.8681

3. Enable OS APSM and Disable all other PCI APSM in BIOS, 

4. Install the newest driver 27.20.100.9079 should solve the problem

the above steps fixed my problem, 


Friday, May 8, 2020

Wednesday, April 29, 2020

[Errno 32] Broken pipe vibs = VMware_locker_tools-light


1. verify that the symbolic link the /locker folder must be linked to /store folder (locker -> /store)
2. rebuild /store folder from working hosts if /store is corrupted

Wednesday, April 22, 2020

Unconfigure Nutanix CVM

Change to Nutanix directory:

    nutanix@cvm$  cd /home/nutanix

Create .node_unconfigure file in the above directory

     nutanix@cvm$ touch .node_unconfigure

Restart genesis; this step will wipe all cluster data from the node

    nutanix@cvm$ genesis restart

Friday, November 15, 2019

Reconnect host script with password

# Get the hostsystem object for every host currently disconnected.
$VMhosts = Get-View -ViewType ‘Hostsystem’ ` -Property ‘name’ ` -Filter @{“Runtime.ConnectionState”=”disconnected”}
Foreach ($VMhost in $VMhosts) {
# Create a reconnect spec
$HostConnectSpec = New-Object VMware.Vim.HostConnectSpec
$HostConnectSpec.hostName = $VMhost.name
$HostConnectSpec.userName = ‘root’
$HostConnectSpec.password = ‘password’
# Reconnect the host
$taskMoRef = $VMhost.ReconnectHost_Task($HostConnectSpec,$null)
# optional, but i like to return a task object, that way I can
# easily integrate this into a pipeline later if need be.
Get-VIObjectByVIView -MORef $taskMoRef
}

Tuesday, October 15, 2019

Prevent Chrome killing your SSD by cache

xcopy /e "C:\Users\%username%\AppData\Local\Google\Chrome" "D:\Chrome"
del /s/f/q "C:\Users\%username%\AppData\Local\Google\Chrome"
rmdir /s/q "C:\Users\%username%\AppData\Local\Google\Chrome"
mklink /j "C:\Users\%username%\AppData\Local\Google\Chrome" "D:\Chrome"

Friday, October 11, 2019

Tuesday, September 10, 2019

Windows 10 Start Menu Search Fix

Open Regedit.exe Navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Search

Check the following DWord Values:
"CortanaConsent" (It should have a value of '1')
"SearchboxTaskbarMode" (It should have a value of '1') 
"CortanaRegion" (It should have a value of 'US') 

Thursday, July 11, 2019

Showing flogi path status using UCS PowerTool

List FC VIF Path Status

Get-UcsDcxVc | where { $_.transport -eq "fc" } | select dn,switchid,operstate,adminstate,vnic,linkstate


List Ether VIF Path Status

Get-UcsDcxVc | where { $_.transport -eq "ether" } | select dn,switchid,operstate,adminstate,vnic,linkstate

Tuesday, July 2, 2019

Intel outdated driver conflict with Windows 10 1903

If you have Intel drivers with release date older than 2017, properly you will be blocked to update Windows 10 build 1903.

My experience is I have a Intel Network Adapter I219-V2 which was using a driver released in 2017 in version 20, somehow Intel discontinued the update of that driver and release a new series of network adapter software, the newest release date is 2019/06/06 in version 12.19.9.8. In a result that it cannot be upgraded by Windows Update nor directly upgraded by Intel Installation Package. I have to manual uninstall everything even the driver itself and install the Intel Installation Package manually in order to update to the newest driver.

Now, Windows 10 allows me to update to 1903.

Thursday, June 27, 2019

Cleanup Windows 10 WINSXS

Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore



Dism.exe /Online /Cleanup-Image /StartComponentCleanup /ResetBase



sc stop msiserver
sc stop TrustedInstaller
sc config msiserver start= disabled
sc config TrustedInstaller start= disabled


icacls "%WINDIR%\WinSxS" /save "%WINDIR%\WinSxS_NTFS.acl" /t

takeown /f "%WINDIR%\WinSxS" /r

icacls "%WINDIR%\WinSxS" /grant "%USERDOMAIN%\%USERNAME%":(F) /t

compact /s:"%WINDIR%\WinSxS" /c /a /i *

icacls "%WINDIR%\WinSxS" /setowner "NT SERVICE\TrustedInstaller" /t

icacls "%WINDIR%" /restore "%WINDIR%\WinSxS_NTFS.acl"

sc config msiserver start= demand
sc config TrustedInstaller start= demand

http://woshub.com/how-to-clean-up-and-compress-winsxs-folder-in-windows-8/



Dism.exe /online /Cleanup-Image /StartComponentCleanup
Dism /Online /Cleanup-Image /RestoreHealth