Glenn

Glenn

Friday, May 12, 2023

Software I use on Windows 10/11 PCs:

7-Zip - https://www.7-zip.org/

ASIO4ALL - https://www.asio4all.org/

AS SSD Benchmark - https://www.majorgeeks.com/files/details/as_ssd_benchmark.html

ATTO Disk Benchmark - https://www.majorgeeks.com/files/details/atto_disk_benchmark.html

Audacity - https://www.audacityteam.org/download/

Autoruns - https://technet.microsoft.com/en-us/sysinternals/bb963902

CCleaner - https://www.piriform.com/ccleaner/builds 

CPU-Z - https://www.cpuid.com/softwares/cpu-z.html

Crystal Disk Info - https://crystalmark.info/download/index-e.html

Degath's Ducker - https://degathsducker.weebly.com/download.html

Everything Search - https://www.voidtools.com/

Fan Control -  https://getfancontrol.com/

Firefox - https://ftp.mozilla.org/pub/firefox/releases/

Foobar2000 - https://www.foobar2000.org/download

GPU-Z - https://www.techpowerup.com/download/techpowerup-gpu-z/

HD Tune Pro - https://www.hdtune.com/download.html

HW Monitor - https://www.cpuid.com/softwares/hwmonitor.html

Jingle Palette - https://jinglepalettereloaded.com/

Malwarebytes - https://www.malwarebytes.org/mwb-download/

Media Player Classic - https://www.videohelp.com/software/MPC-BE

Microsoft Edge - https://www.microsoft.com/en-us/edge/business/download

Mp3tag - https://www.mp3tag.de/en/download.html 

OldNewExplorer - https://msfn.org/board/topic/170375-oldnewexplorer-119/

Open Broadcaster Software - https://github.com/jp9000/obs-studio/releases 

Open Hardware Monitor - https://openhardwaremonitor.org/downloads/

Open Shell Menu - https://github.com/Open-Shell/Open-Shell-Menu/releases

Oracle VM VirtualBox - https://www.virtualbox.org/wiki/Downloads

Orban Loudness Meter - https://www.orban.com/meter/

PowerRun - https://www.sordum.org/9416/powerrun-v1-6-run-with-highest-privileges/

Rufus - https://rufus.ie/en/

Share Mouse - https://www.sharemouse.com/download/

StartAllBack - https://www.startallback.com/

Stereo Tool - https://www.thimeo.com/stereo-tool/download/

TeamViewer - https://www.teamviewer.com/en/download/windows/

Thunderbird - https://ftp.mozilla.org/pub/thunderbird/releases/

USBDeview - https://www.nirsoft.net/utils/usb_devices_view.html

VLC Media Player -  https://www.videolan.org/vlc/download-windows.html

Winaero Tweaker -  https://winaero.com/blog/category/winaero-tweaker/

Thursday, July 14, 2016

Scripts I use for Windows 10 :

Boot Speed file name: bootspeed.vbs

Option Explicit
On Error Resume Next
Dim Wsh, Time1, Time2, Result, PathFile, MsgResult, MsgA, AppName, KeyA, KeyB, TimeDiff
MsgA = "Please close all running applications and click on OK."
KeyA = "HKEY_CURRENT_USER\Software\RestartTime\"
KeyB = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run\RestartTime"
AppName = "ReBoot-Time"
Set Wsh = CreateObject("WScript.Shell")
PathFile = """" & WScript.ScriptFullName & """"
Result = wsh.RegRead(KeyA & "Times")
if Result = "" then
MsgResult = Msgbox (MsgA, vbOKCancel, AppName)
If MsgResult = vbcancel then WScript.Quit
Wsh.RegWrite KeyA & "Times", left(Time,8), "REG_SZ"
Wsh.RegWrite KeyB, PathFile, "REG_SZ"
Wsh.Run "cmd /c Shutdown -r -t 00", false, 0
else
Wsh.RegDelete KeyA & "Times"
Wsh.RegDelete KeyA
Wsh.RegDelete KeyB
TimeDiff = DateDiff("s",Result,left(Time,8))
MsgBox "Your computer reboots in " & TimeDiff & " seconds", VbInformation, AppName
end if
wscript.Quit

Clear Event Viewer file name: Clear_Event_Viewer.bat

@echo off
FOR /F "tokens=1,2*" %%V IN ('bcdedit') DO SET adminTest=%%V
IF (%adminTest%)==(Access) goto noAdmin
for /F "tokens=*" %%G in ('wevtutil.exe el') DO (call :do_clear "%%G")
echo.
echo goto theEnd
:do_clear
echo clearing %1
wevtutil.exe cl %1
goto :eof
:noAdmin
exit

Sunday, May 29, 2016

I am in process of starting a new website on tips to build, configure, and repair PCs. I will provide you with hardware and software information.