Disable beep Windows 8/8.1/10/2012

net stop beep
sc config beep start= disabled

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Beep

Start = 0x00000000
HKEY_CURRENT_USER\Control Panel\Sound
beep = no

Hardware info

Very interesting site about computer hardware and other things:

https://uk.hardware.info/

PDF Datasheets www.0pdf.com:

https://www.datasheet-pdf.com/

Hard Disks/SSDs/Flash Repair and Recovery:

https://www.hardmaster.info/articles/
https://habr.com/ru/users/hddmasters/posts/
https://hddmasters.by/articles/articles.html

FCC devices teardown library:

https://fccid.io/PD5-WAP150/Internal-Photos/Internal-Photos-2760550

List Of WD CMR And SMR Hard Drives (HDD):

https://nascompares.com/answer/list-of-wd-cmr-and-smr-hard-drives-hdd/

Online catalog of LCD panels for notebooks etc.:

https://www.panelook.com/

3dnews.ru great SSD life test:

https://3dnews.ru/938764/resursnie-ispitaniya-ssd-obnovlyaemiy-material

Lots of manuals for almost any household appliances, almost any manufacturer:

https://www.manualslib.com
https://manuall.co.uk/
https://manualmachine.com/

WikiChip:

https://en.wikichip.org/wiki/WikiChip

SSD Specs Database:

https://www.techpowerup.com/ssd-specs/

SSD info and tuning utilities:

http://vlo.name:3000/ssdtool/

Why SSDs Die a Sudden Death (and How to Deal with It):

https://blog.elcomsoft.com/2019/01/why-ssds-die-a-sudden-death-and-how-to-deal-with-it/

SOHO routers and other devices default logins/paswords:

https://www.192-168-1-1-ip.co/

SSD review with explaination of how this type of disks work:

https://club.dns-shop.ru/review/t-101-ssd-nakopiteli-2-5/102714-est-li-smyisl-v-malenkom-bufernom-sata-ssd-obzor-nakopitelya/

Micron FBGA and component marking decoder:

https://www.micron.com/sales-support/design-tools/fbga-parts-decoder

Windows Update 80070003 error, if Server 2012 R2 do not want to update

net stop wuauserv

DISM /Online /Cleanup-Image /RestoreHealth

If there is an error ” The source files could not be downloaded”:

gpedit.msc

Computer Configuration > Administrative Templates > System

Specify settings for optional component installation and component repair setting

Contact Windows Update directly to download repair content instead of Windows Server Update Service (WSUS).

or

DISM /Online /Cleanup-Image /RestoreHealth /source:WIM:X:\Sources\Install.wim:1 /LimitAccess Where “X” is the drive letter where the ISO is located. Simply change the “X” to the correct drive letter

 

sfc /scannow

shutdown /r /f

 

https://www.thewindowsclub.com/dism-fails-source-files-could-not-be-found

https://support.microsoft.com/ru-ru/help/947821/fix-windows-update-errors-by-using-the-dism-or-system-update-readiness

Apple Info

MAC computer complete tech specs:

https://everymac.com/systems/apple/mac_pro/specs/mac-pro-quad-2.66-specs.html
OS X compatibility:
https://the-x.ru/j/?p=247

Apple hardware repair in Moscow:

https://macsuper.ru/remont/iphone/

Fix Apple Cinema Display 90W power source:

If you’ve just replaced broken power source with used from Aliexpress and now display flashes its LED 3 times and won’t show any picture, you should isolate middle contacts inside display’s power plug.
https://www.ifixit.com/Answers/View/128535/Flashing+LED+Fault+Indicator

Time Zone Cannot Be Set Manually Due to Device Restrictions:

https://www.macobserver.com/tips/how-to/time-zone-cannot-be-set-manually/
Turn Off Screen Time Passcode

Speedup OS X SMB share:


defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
defaults write com.apple.desktopservices DSDontWriteNetworkStores true

sysctl net.inet.tcp.mssdflt=1400
sysctl net.inet.tcp.blackhole=2
sysctl net.inet.tcp.slowstart_flightsize=60
sysctl net.inet.tcp.sendspace=3125000
sysctl net.inet.tcp.recvspace=3125000
sysctl net.inet.tcp.win_scale_factor=6
sysctl net.inet.tcp.autorcvbufmax=3125000
sysctl net.inet.tcp.autosndbufmax=3125000

sudo su
rm /private/etc/nsmb.conf
echo “[default]” >> /etc/nsmb.conf
echo “signing_required=no” >> /etc/nsmb.conf
echo “streams=yes” >> /etc/nsmb.conf
echo “notify_off=yes” >> /etc/nsmb.conf
echo “port445=no_netbios” >> /etc/nsmb.conf
echo “unix extensions = no” >> /etc/nsmb.conf
echo “veto files=/._*/.DS_Store/” >> /etc/nsmb.conf
echo “protocol_vers_map=6” >> /etc/nsmb.conf
echo “mc_prefer_wired=yes” >> /etc/nsmb.conf
echo “dir_cache_max_cnt=0” >> /etc/nsmb.conf
echo “strict sync = no” >> /etc/nsmb.conf
cat /private/etc/nsmb.conf

Comparison of Apple product specifications:

https://appstudio.org/iphone/

Compare Apple and others:

https://www.gadgetsnow.com/compare-tablets/Apple-iPad-Air-2-WiFi-32GB-vs-Apple-iPad-Pro-97-WiFi-256GB-vs-Apple-iPad-Air-32GB-Cellular

Lighttpssd tricks and tips

How to redirect HTTP requests to HTTPS:

Example 2 – specific url:
$HTTP[“scheme”] == “httpss” {
$HTTP[“host”] =~ “.*” {
url.redirect = (“^/phpmyadmin/.*” => “https://%0$0”)
}
}

 

Directory Listings:

If you need it only for a specific directory or directories, use conditionals:

$HTTP[“url”] =~ “^/download($|/)” {
dir-listing.activate = “enable”
}

 

URL Rewrites with regular expressions:

Regular Expressions
Patterns (“wildcards”) are matched against a string
Special characters (see [https://www.regular-expressions.info/reference.html] for reference):
. (full stop) – match any character
\* (asterisk) – match zero or more of the previous symbol
\+ (plus) – match one or more of the previous symbol
? (question) – match zero or one of the previous symbol
\\? (backslash-something) – match special characters
^ (caret) – match the start of a string
$ (dollar) – match the end of a string
[set] – match any one of the symbols inside the square braces.
[^set] – match any symbol that is NOT inside the square braces.
(pattern) – grouping, remember what the pattern matched as a special variable
{n,m} – from n to m times matching the previous character (m could be omitted to mean >=n times)
(?!expression) – match anything BUT expression at the current position. Example: “^(/(?!(favicon.ico$|js/|images/)).*)” => “/fgci/$1”

Normal alphanumeric characters are treated as normal

 

Protect Different Directories With Different Password Files:

$HTTP[“url”] =~ “^/docs/” {
auth.backend = “plain”
auth.backend.plain.userfile = “/home/lighttpssd/.lighttpssdpassword-DOCS”
auth.require = ( “/docs/” =>
(
“method” => “basic”,
“realm” => “Password protected area”,
“require” => “user=tom”
)
)
}