# 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 -&gt; Regedit  
HKEY\_LOCAL\_MACHINE\\SYSTEM\\Setup -&gt; Create Key "LabConfig"  
Create DWORD-32 -&gt; BypassTPMCheck -&gt; Value: 1  
Create DWORD-32 -&gt; BypassSecureBootCheck -&gt; 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/](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](https://wiki.gotitan.no/attachments/9)

## Disable "Let's finish setting up your device"

---

#### Windows 10

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

#### Windows 11

Settings -&gt; System -&gt; Notifications -&gt; Additional Settings

### Enable "End Task" on Taskbar

---

Settings -&gt; System -&gt; For Developers -&gt; "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: <a>https://windowsreport.com/turn-off-password-protected-sharing-windows-11/</a>  
Turn off Password protected sharing via Network &amp; sharing center -&gt; 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 -&gt; Network &amp; Internet -&gt; Properties -&gt; Private Network

## Remove Legal Notice from AD Object

---

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](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

---

- gpedit.msc -&gt; Computer Configuration &gt; Administrative Templates &gt; Windows Components &gt; Microsoft Defender Antivirus -&gt; Turn off Microsoft Defender Antivirus (Enable).
- URL: [https://www.windowscentral.com/how-permanently-disable-windows-defender-windows-10#disable-microsoft-defender-with-group-policy](https://www.windowscentral.com/how-permanently-disable-windows-defender-windows-10#disable-microsoft-defender-with-group-policy)
- [https://www.geekrar.com/permanently-disable-windows-defender/](https://www.geekrar.com/permanently-disable-windows-defender/)

## Disable Windows Update

---

Computer Configuration &gt; Administrative Templates &gt; Windows Components &gt; Windows Update -&gt; Configure Windows Update -&gt; Disabled

## Useful Disable utilites for Windows

---

URL: [https://www.sordum.org/](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](https://wiki.gotitan.no/books/wiki/page/sokvass-huskeliste "SOKVASS Huskeliste")

## Schematics and Diagrams

---

[![SOKVASS Styrestrøm v1.png](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/sokvass-styrestrom-v1.png)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/sokvass-styrestrom-v1.png)

[SOKVASS Styrestrøm.svg](https://wiki.gotitan.no/attachments/5)

[SOKVASS Styrestrøm v1.pdf](https://wiki.gotitan.no/attachments/4)

[SOKVASS Koblingskjema.vsdx](https://wiki.gotitan.no/attachments/8)

[![SOKVASS hovedstrøm v2.png](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/sokvass-hovedstrom-v2.png)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/sokvass-hovedstrom-v2.png)

[SOKVASS Hovedstrøm v1.pdf](https://wiki.gotitan.no/attachments/7)

## Hardware components

---

### Limit switches

[https://www.aliexpress.com/item/32857712732.html?spm=a2g0o.productlist.0.0.1a761be69PKqxy](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&amp;ad\_pvid=202109120316512670784639845510005683297\_5&amp;s=p](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/](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

- \[Done\] Tec7 - lime på plass batterilader - Det er allerede pistol / gun i Sauda
- fikse "low voltage detected" on Rpi, justere på PSU-en?
- Få lagt strøm til skapet
- nye endebrytere
- Shine opp endebryte braketter
- Sette i 2 stk. rekkeklemmer i box2 nede i hålet
- Gummi foring til å ha på aktuator brakket (rødt håndtak/kuleventil)
- til eksos rør del, trenger vi noen 90 grader vinkler for å få røret litt finere nedover
- led lamper 24 volt til dør skap
- Montere 22m flex T stykke til vannrør som går til utekran
- Montera fast strøm til skapet
- feste rør til veggen. Klamp og betong borr og ekspansjonsbolt
- når me ska montera kran ute så bytte me til Pex, då trenge me: PEX T stykke, PEX vinkel og PEX til 1/2" hunn overgang/union
- Ha storstilt ryddejobb. Mere rekkekleer, med fargekoder og lasker til rekkeklemmene. fargekoding på kabler. Tall merking til rekkeklemmer
- Lagt inn 230v bryter til varmeovnen nede i hullet
- lagt inn homeassistant styring som skrur på ovn automatisk hvis det blir veldig kaldt! I følge tempetatur måler
- Fikse jording til kobberrør, fordi vi tok den vekk når vi la til pex rør

# SOKVASS Album

Bilder tatt av SOKVASS 12.09.2021

[![image-1631514209012.18.38.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209012-18-38.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209012-18-38.jpg)

[![image-1631514209035.18.44.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209035-18-44.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209035-18-44.jpg)

[![image-1631514209059.18.48.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209059-18-48.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209059-18-48.jpg)

[![image-1631514209082.18.51.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209082-18-51.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209082-18-51.jpg)

[![image-1631514209104.19.02.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209104-19-02.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209104-19-02.jpg)

[![image-1631514209144.19.15.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209144-19-15.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209144-19-15.jpg)

[![image-1631514209157.19.19.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209157-19-19.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209157-19-19.jpg)

[![image-1631514209171.19.23.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209171-19-23.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209171-19-23.jpg)

[![image-1631514209200.19.40.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209200-19-40.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209200-19-40.jpg)

[![image-1631514209211.19.43.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209211-19-43.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209211-19-43.jpg)

[![image-1631514209222.17.36.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209222-17-36.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209222-17-36.jpg)

[![image-1631514209235.17.41.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209235-17-41.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209235-17-41.jpg)

[![image-1631514209244.17.49.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209244-17-49.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209244-17-49.jpg)

[![image-1631514209256.18.03.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209256-18-03.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209256-18-03.jpg)

[![image-1631514209267.18.08.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209267-18-08.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209267-18-08.jpg)

[![image-1631514209278.18.13.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209278-18-13.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209278-18-13.jpg)

[![image-1631514209298.18.19.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209298-18-19.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209298-18-19.jpg)

[![image-1631514209310.18.25.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209310-18-25.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209310-18-25.jpg)

[![image-1631514209320.18.30.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209320-18-30.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209320-18-30.jpg)

[![image-1631514209333.18.34.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209333-18-34.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209333-18-34.jpg)

[![image-1631514209344.18.40.jpg](https://wiki.gotitan.no/uploads/images/gallery/2021-09/scaled-1680-/image-1631514209344-18-40.jpg)](https://wiki.gotitan.no/uploads/images/gallery/2021-09/image-1631514209344-18-40.jpg)

vvs deler kjøpt

[![vvs-deler.png](https://wiki.gotitan.no/uploads/images/gallery/2024-12/scaled-1680-/vvs-deler.png)](https://wiki.gotitan.no/uploads/images/gallery/2024-12/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 &amp; 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](https://wiki.gotitan.no/uploads/images/gallery/2022-09/scaled-1680-/image.png)](https://wiki.gotitan.no/uploads/images/gallery/2022-09/image.png)

# Høiebanden Komputer Utlåns-Klubb

Oversikt over PC'er for utlån.

# PC

Oversikt over pcer vi har tilgjengelig.

## Gamle Ruben sin -&gt; AGE (Øyvind)

---

- i5-4690K, Socket-LGA1150
- EVGA GeForce GTX 1060 6GB Gaming
- ASUS H81I-PLUS, Socket-1150
- Cooler Master G650M, 650W PSU
- HyperX Fury DDR3 1866MHz 16GB Black
- SSD

## Gamle Anders sin -&gt; Morten

---

- i5-4670K, Socket-LGA1150
- GTX 970
- MSI B85-G43, Socket-1150
- Kingston DDR3 HyperX blu 1600MHz 8GB (16GB?)
- SSD

## Lona sin 'Dell Vostro 460' -&gt; Revenent (Vebjørn)

---

- i5-2500, Socket-LGA155
- MSI GeForce GTX 960
- 4 GB DDR3-SDRAM 1333 MHz
- SSD Kingston 240GB
- Windows 10

##### Alternative pc

- 750W PSU
- 1080
- 500GB borrowed from Anders

## Vegard sin -&gt; Nik0n (Alf Jonny)

---

- i5-4670K, Socket-LGA1150
- MSI GeForce GTX 970 4GB OC
- MSI Z87-G43, Socket-LGA1150
- Corsair CX600M, 600W PSU
- 8GB DDR3
- Kingston SSDNow UV400 240GB
- Samsung HD401LJ 400Gb 7200rpm
- Windows 10 Pro

## Clank -&gt; Instegma (Trym)

---

- i3-10105F, Socket-LGA1200
- ASUS ROG STRIX GTX1080 O8G GAMING
- Gigabyte H510M S2H, Socket-LGA1200
- Kolink Classic Power Supply 600W
- G.Skill AEGIS DDR4 3000MHz C16 16GB
- SSD Kingston A2000 500GB NVMe M.2 SSD

# Vebby PC

Overview of parts for Vebby PC

## Parts

---

<table border="1" id="bkmrk-fractal-design-defin" style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Ubuntu, Roboto, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; font-size: 14px; width: 99.8765%; height: 941.017px;"><colgroup><col style="width: 15.9456%;"></col><col style="width: 71.9407%;"></col><col style="width: 12.1137%;"></col></colgroup><tbody><tr style="height: 141.266px;"><td style="height: 141.266px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/wF4image.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/wF4image.png)

</td><td style="height: 141.266px;">[Fractal Design Define Mini C - Kabinett - Minitower - Svart ](https://www.proshop.no/Kabinett/Fractal-Design-Define-Mini-C-Kabinett-Minitower-Svart/2573453)</td><td class="align-right" style="height: 141.266px;">0,- (<s>1198</s>)</td></tr><tr style="height: 158.141px;"><td style="height: 158.141px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/JeDimage.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/JeDimage.png)

</td><td style="height: 158.141px;">[Intel Core i7-12700K Alder Lake Prosessor/CPU - 12 kjerner 3.6 GHz - Intel LGA1700 - Intel Boxed without heatsink/fan](https://www.proshop.no/ProsessorCPU/Intel-Core-i7-12700K-Alder-Lake-ProsessorCPU-12-kjerner-36-GHz-Intel-LGA1700-Intel-Boxed-without-heatsinkfan/2993376)</td><td class="align-right" style="height: 158.141px;">4424,-</td></tr><tr style="height: 90.3906px;"><td style="height: 90.3906px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/9Ijimage.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/9Ijimage.png)

</td><td style="height: 90.3906px;">[Kingston FURY Beast DDR5-5200 C40 DC - 16GB](https://www.proshop.no/RAM/Kingston-FURY-Beast-DDR5-5200-C40-DC-16GB/3058467)</td><td class="align-right" style="height: 90.3906px;">868,-</td></tr><tr style="height: 137.594px;"><td style="height: 137.594px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/Mluimage.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/Mluimage.png)

</td><td style="height: 137.594px;">[ASUS TUF GAMING B660M-PLUS WIFI Hovedkort - Intel B660 - Intel LGA1700 socket - DDR5 RAM - Micro-ATX](https://www.proshop.no/Hovedkort/ASUS-TUF-GAMING-B660M-PLUS-WIFI-Hovedkort-Intel-B660-Intel-LGA1700-socket-DDR5-RAM-Micro-ATX/3037024)</td><td class="align-right" style="height: 137.594px;">2 182,-</td></tr><tr style="height: 83.3125px;"><td style="height: 83.3125px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/J4Simage.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/J4Simage.png)

</td><td style="height: 83.3125px;">[ASUS TUF Gaming LC 240 ARGB - CPU Vannkjøling - Max 29 dBA](https://www.proshop.no/Prosessor-kjoeler/ASUS-TUF-Gaming-LC-240-ARGB-CPU-Vannkjoeling-Max-29-dBA/3140876)</td><td class="align-right" style="height: 83.3125px;">1248,-</td></tr><tr style="height: 92.4531px;"><td style="height: 92.4531px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/nX2image.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/nX2image.png)

</td><td style="height: 92.4531px;">[Kingston KC3000 SSD PCIe 4.0 NVMe M.2 - 2TB](https://www.proshop.no/SSD/Kingston-KC3000-SSD-PCIe-40-NVMe-M2-2TB/3009842)</td><td class="align-right" style="height: 92.4531px;">2075,-</td></tr><tr style="height: 131.469px;"><td style="height: 131.469px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/ALyimage.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/ALyimage.png)

</td><td style="height: 131.469px;">[be quiet! System Power 10 850W Power supply - 850 Watt - 120 mm - 80 Plus Gold sertifisert](https://www.proshop.no/Power-supply/be-quiet-System-Power-10-850W-Power-supply-850-Watt-120-mm-80-Plus-Gold-sertifisert/3116205)</td><td class="align-right" style="height: 131.469px;">1290,-</td></tr><tr style="height: 46.7969px;"><td style="height: 46.7969px;">[![image.png](https://wiki.gotitan.no/uploads/images/gallery/2023-02/scaled-1680-/LhKimage.png)](https://wiki.gotitan.no/uploads/images/gallery/2023-02/LhKimage.png)

</td><td style="height: 46.7969px;">Nvidia GTX 1080 Ti</td><td class="align-right" style="height: 46.7969px;">2000,-</td></tr><tr style="height: 29.7969px;"><td style="height: 29.7969px;">  
</td><td style="height: 29.7969px;">  
</td><td style="height: 29.7969px;">  
</td></tr><tr style="height: 29.7969px;"><td style="height: 29.7969px;">**Totalt**</td><td style="height: 29.7969px;">  
</td><td class="align-right" style="height: 29.7969px;">**13 676,-**</td></tr></tbody></table>

# 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](https://wiki.gotitan.no/uploads/images/gallery/2024-11/scaled-1680-/img-5066.jpeg)](https://wiki.gotitan.no/uploads/images/gallery/2024-11/img-5066.jpeg)

[![IMG_5071.jpeg](https://wiki.gotitan.no/uploads/images/gallery/2024-11/scaled-1680-/img-5071.jpeg)](https://wiki.gotitan.no/uploads/images/gallery/2024-11/img-5071.jpeg)

[![IMG_5072.jpeg](https://wiki.gotitan.no/uploads/images/gallery/2024-11/scaled-1680-/img-5072.jpeg)](https://wiki.gotitan.no/uploads/images/gallery/2024-11/img-5072.jpeg)

[![IMG_5064.jpeg](https://wiki.gotitan.no/uploads/images/gallery/2024-11/scaled-1680-/img-5064.jpeg)](https://wiki.gotitan.no/uploads/images/gallery/2024-11/img-5064.jpeg)