Oh well, it was fun while it lasted. It just pisses me off that the survivors are gonna get my stuff.
HP Printer fun – PAPER FEED 1, PAPER LATE JAM 0200000202010200011000000 and GENERAL MISPRINT ERROR
Do a google search on ‘PAPER FEED 1, PAPER LATE JAM 0200000202010200011000000’, or ‘GENERAL MISPRINT ERROR’. You should get a number of results – they will be the embedded web server in many HP laser printers (seems to be mostly the P3000 family) that have been exposed (inadvertently, probably) to the public internet. If you …
Remove password from Windows login
And other fun stuff: https://www.windows-commandline.com/remove-user-password/
Webmin on Ubuntu 18
On attempted installation of Webmin on Ubuntu 18.04 server, receiving the following: webmin: Depends: libauthen-pam-perl but it is not installableDepends: apt-show-versions but it is not installableE: Unable to correct problems, you have held broken packages. Resolution: On ubuntu 18.04.1 the universe and multiverse repositories are disabled by default to enable do:sudo add-apt-repository universesudo add-apt-repository multiverse Now you …
Stop windows 10 update from restarting computer
In the run dialog box (winkey + R) type “gpedit.msc” (without quotations), hit enter Navigate to Computer Configuration/Administrative Templates/Windows Components/Windows Update Double click on “No auto-restart with logged on users for scheduled automatic updates installations” Enable it and click apply
mysql – Select distinct pairs
mysql does not support multiple columns for select distinct(), so this works with a table I have that has width and height columns: SELECT width,height FROM orders GROUP BY CONCAT(width, height)
Remove Microsoft Crapware Windows 10
Update: maybe just use this: https://github.com/Sycnex/Windows10Debloater Use elevated Powershell: Get-AppxPackage 3dbuilder | Remove-AppxPackage Get-AppxPackage zunevideo | Remove-AppxPackage Get-AppxPackage officehub | Remove-AppxPackage Get-AppxPackage zunemusic | Remove-AppxPackage Get-AppxPackage solitaire | Remove-AppxPackage Get-AppxPackage bingfinance | Remove-AppxPackage Get-AppxPackage bingnews | Remove-AppxPackage Get-AppxPackage onenote | Remove-AppxPackage Get-AppxPackage bingsports | Remove-AppxPackage List of removable apps: 3D Builder – 3dbuilder Alarms & …
Windows 2012 rearm evaluation
When evaluation period is expired, and you cannot rearm OS, then change registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\SoftwareProtectionPlatform\ change value of SkipRearm to 1 “slmgr.vbs /rearm“. tested on Win2012R2
Uninstall OneDrive
OneDrive comes installed with Windows 10 and is enabled by default if you sign on with a Microsoft account. If you don’t use OneDrive, however, and don’t want it running in the background, there are some hoops you can jump through to disable it or get rid of it everywhere in Windows 10. Disabling OneDrive …
Windows 10 1803 1809 SMB1 Shared Folders and 0x80004005
What a fucking pain in the ass. If you unable to access shared folders in Windows 10, this might fix. After hours of googling this solutions worked for me: Enable SMB1 Client in Programs – Turn Windows features on/off Regedit -Set the following registry value to 1 HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters\AllowInsecureGuestAuth If its not there create the value …