From 0975b852bfaabca052beaaefc8778fecd33886d0 Mon Sep 17 00:00:00 2001 From: Jan <rsge@web.de> Date: Fri, 29 Apr 2022 10:24:35 +0200 Subject: [PATCH] Added Windows activation helper --- README.md | 25 +++++++++++++------------ Windows activation helper.bat | 4 ++++ 2 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 Windows activation helper.bat diff --git a/README.md b/README.md index dadd15d..8c42289 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ -# Windows error fixing scripts -A collection of scripts to fix various errors cropping up in Windows.\ -These are made for double-click execution via file explorer. - -* `Fix Outlook Temp folder.bat` empties the Temp folder of MS Office Outlook to fix it filling up the main harddrive. -* `Fix blank icons` fixes desktop icons appearing as blank white rectangles instead of their usual icon. Adapted from the [ElevenForums](https://www.elevenforum.com/t/rebuild-icon-cache-in-windows-11.2049/) ([Archived Version](https://web.archive.org/web/20211017173532/https://www.elevenforum.com/t/rebuild-icon-cache-in-windows-11.2049/)) -* `Fix edgegdi.dll.bat` fixes the `edgegdi.dll` not being available for certain tasks, leading to errors thrown. -* `Fix long login times.bat` deletes `WebCache`and `WebCacheLock.dat` on all normal users to fix unbearable login times after installing windows through a custom made image. -* `Fix printer not install- and selectable.bat` fixes a problem where no printer can be selected or even installed, caused by corrupted files. -* `Fix search & settings.bat` fixes the windows search and the settings app not starting up correctly and freezing. -* `Fix winmail.dat - Disable RTF & TNEF.reg` fixes the receiver of an email getting a `winmail.dat` file as attachment instead of a normal file by introducing a registry fix to keep Outlook from ever sending emails in RTF format or TNEF encryption. -* `Remove Java.bat` removes remains of a Java installation after uninstall. \ No newline at end of file +# Windows error fixing scripts +A collection of scripts to fix various errors cropping up in Windows.\ +These are made for double-click execution via file explorer. + +* `Fix Outlook Temp folder.bat` empties the Temp folder of MS Office Outlook to fix it filling up the main harddrive. +* `Fix blank icons` fixes desktop icons appearing as blank white rectangles instead of their usual icon. Adapted from the [ElevenForums](https://www.elevenforum.com/t/rebuild-icon-cache-in-windows-11.2049/) ([Archived Version](https://web.archive.org/web/20211017173532/https://www.elevenforum.com/t/rebuild-icon-cache-in-windows-11.2049/)) +* `Fix edgegdi.dll.bat` fixes the `edgegdi.dll` not being available for certain tasks, leading to errors thrown. +* `Fix long login times.bat` deletes `WebCache`and `WebCacheLock.dat` on all normal users to fix unbearable login times after installing windows through a custom made image. +* `Fix printer not install- and selectable.bat` fixes a problem where no printer can be selected or even installed, caused by corrupted files. +* `Fix search & settings.bat` fixes the windows search and the settings app not starting up correctly and freezing. +* `Fix winmail.dat - Disable RTF & TNEF.reg` fixes the receiver of an email getting a `winmail.dat` file as attachment instead of a normal file by introducing a registry fix to keep Outlook from ever sending emails in RTF format or TNEF encryption. +* `Remove Java.bat` removes remains of a Java installation after uninstall. +* `Windows activation helper.bat` shows you the product key of your current Windows installation to potentially resolve activation issues. \ No newline at end of file diff --git a/Windows activation helper.bat b/Windows activation helper.bat new file mode 100644 index 0000000..9a3bd9e --- /dev/null +++ b/Windows activation helper.bat @@ -0,0 +1,4 @@ +@echo off +echo Input the following key at "Activate/Change Key": +wmic path softwarelicensingservice get OA3xOriginalProductKey +pause \ No newline at end of file -- GitLab