Skip to content
Snippets Groups Projects
Commit 3187136c authored by Rsge's avatar Rsge
Browse files

Added two new scripts...

- Added disabling of prompt for password change
- Added fix for non-createable work file
parent 0975b852
Branches
Tags
No related merge requests found
@echo off
wmic UserAccount set PasswordExpires=False
pause
\ No newline at end of file
@echo off
echo Create backups of registry entries to delete in Downloads folder. . .
reg export "HKCR\CLSID\{84F66100-FF7C-4fb4-B0C0-02CD7FB668FE}" "%userprofile%\Downloads\SBLOG_RegBackup_WordPreview.reg"
reg export "HKCR\CLSID\{65235197-874B-4A07-BDC5-E65EA825B718}" "%userprofile%\documents\SBLOG_RegBackup_PowerPointreview.reg"
reg export "HKCR\CLSID\{00020827-0000-0000-C000-000000000046}" "%userprofile%\documents\SBLOG_RegBackup_ExcelPreview.reg"
echo.
echo Deleting entries. . .
reg delete "HKCR\CLSID\{84F66100-FF7C-4fb4-B0C0-02CD7FB668FE}" /f
reg delete "HKCR\CLSID\{65235197-874B-4A07-BDC5-E65EA825B718}" /f
reg delete "HKCR\CLSID\{00020827-0000-0000-C000-000000000046}" /f
echo.
echo Creating needed folders. . .
mkdir "%USERPROFILE%\AppData\Local\Microsoft\Windows\INetCache\Content.Word"
mkdir "%USERPROFILE%\AppData\Local\Microsoft\Windows\INetCacheContent.Word"
echo.
echo Defining new registry entries for chache path. . .
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" /v "Cache" /t REG_SZ /d "%userprofile%\AppData\Local\Microsoft\Windows\INetCache" /f
echo.
echo Done. Please log off & on and try if the problem was resolved.
pause
......@@ -7,7 +7,9 @@ These are made for double-click execution via file explorer.
* `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 prompt for password change.bat` disables the prompting for a password change when using a Microsoft account.
* `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.
* `Fix work file not createable.bat` fixes the "Could not create the work file" error in Office.
* `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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment