Daily Archives: March 23, 2025
Im trying to cleanse the uninstall menu from all garbage that Steam puts in there. So I tried with: Remove-Item -path "HKLM:SOFTWAREMicrosoftWindowsCurrentVersionUninstallSteam` App` *" -Recurse didn’t work, the keys is still there. so I tried with specifying the key explicitly: PS C:WINDOWSsystem32> Remove-Item -path 'HKLM:SOFTWAREMicrosoftWindowsCurrentVersionUninstallSteam App 10' Remove-Item : Cannot […]
I wanna make a list of forbidden file names, such that when any program tries to create a file or folder with this name, Windows stops it and shows warning. I need this for virus protection, to not accidentally get already deleted viruses again.
I want to buy a new monitor for my laptop and first decided to test the connection on computer monitors. I can’t figure out what the problem is and which monitor I should choose. When connecting an asus vivobook 15xled k3504V via HDMI, I can only set 60Hz in 2K […]
I already found out how to get the window title of a certain process and save it to a file with the following cmd: tasklist /fi "imagename eq process.exe" /fo list /v | find "Window Title" > "c:usersxxxxxdesktop123.txt" My actual goal is to monitor the window title of this process […]
I want to convert a cell in google sheets where I have a duration in days:hours:minutes:seconds which I want to convert to hours. I saw the following: How to convert a duration into a number of hours in Google Spreadsheets? but that does not work for me as I also […]