Glossary:
- md: multiple devices
| command | description |
|---|---|
cat /proc/mdstat |
show status of all raids |
mdadm --detail /dev/md0 |
detailed status of raid md0 |
| # Tested with Server 2016 and Server 2012 R2, PS 4 and PS 5 | |
| Configuration StrongCipherSettings | |
| { | |
| param | |
| ( | |
| $ComputerName = "localhost", | |
| # TLS/SSL Security Considerations | |
| # https://technet.microsoft.com/en-us/library/dn786446(v=ws.11).aspx | |
| $schannelProtocols = @{ | |
| "PCT 1.0"=$false; |
| upstream transmission { | |
| server 127.0.0.1:9091; #Transmission | |
| } | |
| server { | |
| listen 443 ssl http2; | |
| server_name example.com; | |
| auth_basic "Server Restricted"; | |
| auth_basic_user_file /var/www/myWebSite/web/.htpasswd; | |
| # Path to the root of your installation |
| REM usage: fix_perms.bat <username> | |
| REM Recursively assign ownership to Administrators. Answer prompts with "Y". | |
| takeown /R /A /F %1 /D Y | |
| REM Grant Full permissions on folder and subfolders to Administrators, SYSTEM, and the user | |
| cacls %1 /T /E /P "Administrators":F | |
| cacls %1 /T /E /P SYSTEM:F | |
| cacls %1 /T /E /P %1:F | |
| REM Set owner back to UserName | |
| subinacl.exe /noverbose /subdirectories %1\*.* /setowner=%1 |