Wiki

Windows 11

Place of purchase

https://www.hrkgame.com/en/library/products/ (home license)
https://www.premiumcdkeys.com/ (pro license)


Installing Windows 11 without TPM and SecureBoot


Create Windows 11 USB normal way via ISO and Rufus
Shift + F10 -> Regedit
HKEY_LOCAL_MACHINE\SYSTEM\Setup -> Create Key "LabConfig"
Create DWORD-32 -> BypassTPMCheck -> Value: 1
Create DWORD-32 -> BypassSecureBootCheck -> Value: 1
Exit installation window and click Install Windows again.
URL: https://www.askvg.com/how-to-bypass-this-pc-cant-run-windows-11-error-and-disable-hardware-check-on-unsupported-devices/


Donkey Kong


Donkey kong: N64-Emu-Donkey-Kong-64.zip

Disable "Let's finish setting up your device"


Windows 10

Settings -> System ->
[Check] Off suggestions on how I can set up my device
[Check] Get tips and suggestions when I use Windows

Windows 11

Settings -> System -> Notifications -> Additional Settings


Enable "End Task" on Taskbar


Settings -> System -> For Developers -> "End Task" = ON

Disable Bing web search on Start-menu


This is to disable the start-menu from searching on Bing on everything you type. Will make searching for apps on your computer quicker.

cmd.exe /c reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer" /v "DisableSearchBoxSuggestions" /t REG_DWORD /d 1 /f

Turn off password protected sharing


Source: https://windowsreport.com/turn-off-password-protected-sharing-windows-11/
Turn off Password protected sharing via Network & sharing center -> Advanced etc...

cmd.exe /c reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v "restrictnullsessaccess" /t REG_DWORD /d 0 /f
cmd.exe /c reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa" /v "everyoneincludesanonymous" /t REG_DWORD /d 1 /f

Windows File Sharing


To disable password protected sharing it sometimes helps to set the network to private. Settings -> Network & Internet -> Properties -> Private Network



This will remove the legal notice warning that appears on AD objects, if you have put the computer in wrong OU, or it is still located in New Computers OU.

cmd.exe /c reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system" /v legalnoticecaption /f
cmd.exe /c reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system" /v legalnoticetext /f

Console Timeout


This is a regedit to enable Console timeout in the Power options. This is so that you can make sure the screens of your computer is still ON even though you are logged out of your computer.

cmd.exe /c reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power\PowerSettings\7516b95f-f776-4464-8c53-06167f40cc99\8ec4b3a5-6868-48c2-be75-4f3044be88a7" /v "Attributes" /t REG_DWORD /d "2" /f

Do not Require Password after sleep


This is so that you are not required to login after computer has gone to sleep.

cmd.exe /c powercfg /SETDCVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0
cmd.exe /c powercfg /SETACVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0


Allow all in Firewall


This makes it so that you can have the firewall ON and get rid of stupid messages. But still have everything go through the firewall.
Run in Powershell:

New-NetFirewallRule -DisplayName "Allow all Inbound" -Direction Inbound -Action Allow -Profile Any
New-NetFirewallRule -DisplayName "Allow all Outbound" -Direction Outbound -Action Allow -Profile Any


Allow Ping in Firewall

New-NetFirewallRule -DisplayName "Allow Inbound ICMPv4 (ping)" -Direction Inbound -Protocol ICMPv4 -IcmpType 8 -Action Allow -Profile Any

Allow VNC in Firewall

New-NetFirewallRule -DisplayName "Allow VNC Inbound" -Direction Inbound -Protocol TCP -LocalPort 5900 -Action Allow -Profile Any

Allow RDP in Firewall

New-NetFirewallRule -DisplayName "Allow RDP Inbound" -Direction Inbound -Protocol TCP -LocalPort 3389 -Action Allow -Profile Any

Allow FTP in Firewall

New-NetFirewallRule -DisplayName "Allow FTP Inbound" -Direction Inbound -Protocol TCP -LocalPort 21 -Action Allow -Profile Any

 

 

Keymap for Mac Keyboard


Map Cmd key to Windows Key, this is for when in Windows and using Mac Keyboard

cmd.exe /c reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" /v "Scancode Map" /t REG_BINARY /d "0000000000000000070000002ee0650030e066005ce038e05be0380038005be038e05ce000000000" /f

Remove Cmd to Windows key mapping

cmd.exe /c reg del "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout" /v "Scancode Map" /t REG_BINARY /d "0000000000000000070000002ee0650030e066005ce038e05be0380038005be038e05ce000000000" /f

Removing keyboard layouts all but Norwegian


Remove all keyboard layouts from registry except for Norwegian. This will help to make sure Windows does not add keyboard layout randomly.

# Export a backup of the registry before doing any changes
Write-Host "Backing up Registry before running"
cmd.exe /c reg export "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layouts" C:\Registry-Keyboard-Layout-Backup.reg

# Get all the child keys of the Keyboard Layouts key
$KeyLayoutList = Get-ChildItem -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Keyboard Layouts" | Select-Object -ExpandProperty PSChildName

# Removing the keys from list
Write-Host "Proceeding to remove all Keyboard Layouts from Registry, except for Norwegian."
Sleep 5
foreach($key in $KeyLayoutList){
    if($key -like "*00000414*"){
        # Do nothing
    }else{
        Remove-Item -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Keyboard Layouts\$key" -Force
    }
}

# Enter to exit
Read-Host -Prompt "Press Enter to Exit."
exit


Disable Shift Sticky keys


cmd.exe /c reg add "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v Flags /t REG_SZ /d 506 /f


Fix incorrect Time in Windows


Kjør kommandoen under, reboot, sett Timezone manuelt til UTC også endre klokken til korrekt tid.

cmd.exe /c reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /t REG_DWORD /d 1 /f


How to disable Password at logon


URL: https://www.tenforums.com/tutorials/3539-sign-user-account-automatically-windows-10-startup-15.html#post1924657

cmd.exe /c reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\PasswordLess\Device" /v DevicePasswordLessBuildVersion /t REG_DWORD /d 0


Remove Windows 10 apps


Get-AppxPackage | Select-Object PackageFullName
$list = Get-Content -Path C:\list.txt
foreach($item in $list){ Remove-AppxPackage -Package "$item" }


Disable Notifications


cmd.exe /c reg add "HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer" /v DisableNotificationCenter /t REG_DWORD /d 1


Disable Windows Defender



Disable Windows Update


Computer Configuration > Administrative Templates > Windows Components > Windows Update -> Configure Windows Update -> Disabled


Useful Disable utilites for Windows


URL: https://www.sordum.org/

SOKVASS

SOKVASS - Sauda OverKomplisert VannAvstengingsSystem.

Dette systemet har som mål å stenge vannet på hytta i Sauda på en trygg og enkel måte. Ved å enkelt trykke på grønn eller rød knapp vil vannet gå av eller på. Systemet er også koblet opp mot Homeassistant som gjør at man kan også styre det via mobil app. Batteri er installert i systemet slik at vannet stenges automatisk hvis strømmen går i huset.

Huskeliste

Schematics and Diagrams


SOKVASS Styrestrøm v1.png

SOKVASS Styrestrøm.svg

SOKVASS Styrestrøm v1.pdf

SOKVASS Koblingskjema.vsdx

 

SOKVASS hovedstrøm v2.png

SOKVASS Hovedstrøm v1.pdf

 

Hardware components


Limit switches

https://www.aliexpress.com/item/32857712732.html?spm=a2g0o.productlist.0.0.1a761be69PKqxy

https://www.aliexpress.com/item/4000245003731.html?spm=a2g0o.productlist.0.0.1a761be69PKqxy&ad_pvid=202109120316512670784639845510005683297_5&s=p

 

https://www.cef.co.uk/catalogue/products/4504955-230v-red-led-indicator-lamp

 

Dimensions of piping

Hovedinntak rør: 21mm
Kuleventil (rødt håndtak): 26mm

 

Home assistant Raspberry PI Setup


This section describes the Homeassistant setup that is running on the Raspberry PI 4.

http://sauda.bartley.no/

4G Connection setup

Sixfab 3G/4G LTE Raspberry PI Shield
Connected via USB cable. Connected with External Antenna for maximum coverage. 

Scripts

reboot_if_ping_fails.sh
reconnect.sh

Home assistant

Home assistant running in virtual environment.
configuration.yaml
groups.yaml
script.yaml

DuckDNS

Running with crontab. CNAME sauda.bartley.no created.

NGINX

Reverse proxy running to facilitate SSL on Homeassistant
default.conf

Dimensions

Svart inntaksrøyr som kommer fra bakken har ytre diameter på 26 mm. 

Rød kuleventil gods hvor aktuator monteres: Ø31mm

Kobberør ut fra rød kuleventil/hovedventil ytre diameter 21mm.

 

 

 

 

SOKVASS Huskeliste

SOKVASS Album

Bilder tatt av SOKVASS 12.09.2021

image-1631514209012.18.38.jpg

image-1631514209035.18.44.jpg

image-1631514209059.18.48.jpg

image-1631514209082.18.51.jpg

image-1631514209104.19.02.jpg

image-1631514209144.19.15.jpg

image-1631514209157.19.19.jpg

image-1631514209171.19.23.jpg

image-1631514209200.19.40.jpg

image-1631514209211.19.43.jpg

image-1631514209222.17.36.jpg

image-1631514209235.17.41.jpg

image-1631514209244.17.49.jpg

image-1631514209256.18.03.jpg

image-1631514209267.18.08.jpg

image-1631514209278.18.13.jpg

image-1631514209298.18.19.jpg

image-1631514209310.18.25.jpg

image-1631514209320.18.30.jpg

image-1631514209333.18.34.jpg

image-1631514209344.18.40.jpg

 

 

vvs deler kjøpt

vvs-deler.png

CS:GO Dedicated Server GunGame

start.bat


Folder location: C:\csgo (where srcds.exe is located)

srcds -game csgo -console -usercon -nobots +mp_ggprogressive_use_random_weapons 0 +game_type 1 +game_mode 0 +mapgroup mg_armsrace +map ar_shoots +sv_setsteamaccount 1D624378608B80AC43ECC024EB483AB7

 

 

Age of Mythology

If error with steam_api.dll file missing most likely windows secuirty is deleting the crack files. Disable Virus & threat protection. Unzip the crack files again, copy and paste them into the Age of Mythology. There should be 4 files: aomx.exe, steam_api.dll, steam_api.ini, steamclient.dll.

Right click aomx.exe from the install folder and click run as administrator.

image.png

Høiebanden Komputer Utlåns-Klubb

Oversikt over PC'er for utlån.

Høiebanden Komputer Utlåns-Klubb

PC

Oversikt over pcer vi har tilgjengelig.

Gamle Ruben sin -> AGE (Øyvind)



Gamle Anders sin -> Morten



Lona sin 'Dell Vostro 460' -> Revenent (Vebjørn)


Alternative pc


Vegard sin -> Nik0n (Alf Jonny)



Clank -> Instegma (Trym)



Høiebanden Komputer Utlåns-Klubb

Vebby PC

Overview of parts for Vebby PC


Parts


image.png

Fractal Design Define Mini C - Kabinett - Minitower - Svart  0,- (1198)

image.png

Intel Core i7-12700K Alder Lake Prosessor/CPU - 12 kjerner 3.6 GHz - Intel LGA1700 - Intel Boxed without heatsink/fan 4424,-

image.png

Kingston FURY Beast DDR5-5200 C40 DC - 16GB 868,-

image.png

ASUS TUF GAMING B660M-PLUS WIFI Hovedkort - Intel B660 - Intel LGA1700 socket - DDR5 RAM - Micro-ATX 2 182,-

image.png

ASUS TUF Gaming LC 240 ARGB - CPU Vannkjøling - Max 29 dBA 1248,-

image.png

Kingston KC3000 SSD PCIe 4.0 NVMe M.2 - 2TB 2075,-

image.png

be quiet! System Power 10 850W Power supply - 850 Watt - 120 mm - 80 Plus Gold sertifisert 1290,-

image.png

Nvidia GTX 1080 Ti 2000,-



Totalt
13 676,-

CS Dedicated Server

RCON Commands


Change to another map, run the following command from the console within CS.

rcon changelevel de_dust2 

If you want persistent connection to RCON, add this to your startup properties in the game

rcon_password gogogo

 

SOKVASS Album 2

Bilder tatt 9.11.24
IMG_5066.jpeg

IMG_5071.jpeg

IMG_5072.jpeg

IMG_5064.jpeg