diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/README.md b/docs/user-documentation/general-admin-users/admins-documentation/img/README.md
deleted file mode 100644
index 0136fd8b19a12a58943fe98973daf763ff664ae9..0000000000000000000000000000000000000000
--- a/docs/user-documentation/general-admin-users/admins-documentation/img/README.md
+++ /dev/null
@@ -1,175 +0,0 @@
-!["openBIS"](./docs/logos/openbis-logo.png "openBIS")
-
-# Repository organization
-
-The repository contains these kind of modules used to build the openBIS distributable:
-- api-*: API Facades
-- app-*: Applications
-- build: Build scripts
-- core-plugins-*: Core plugins distributed with openBIS
-- lib-*: Internally maintained libraries used to build openBIS
-- server-*: Server components
-- test-*: Integration tests
-- ui-*: User interfaces
-
-# Software Requirements
-
-- JDK 17
-- Postgres 15
-
-# Building openBIS
-
-## Step By Step:
-
-```
-git clone https://sissource.ethz.ch/sispub/openbis.git
-cd app-openbis-installer/
-./gradlew clean
-./gradlew build -x test "-Dorg.gradle.jvmargs=--add-opens=java.base/java.text=ALL-UNNAMED --add-opens=java.desktop/java.awt.font=ALL-UNNAMED"
-```
-
-## Where the build is found?
-
-```
-./app-openbis-installer/targets/gradle/distributions/openBIS-installation-standard-technologies-SNAPSHOT-rXXXXXXXXXX.tar.gz
-```
-
-## Why we disable tests to make the build?
-
-They increase the time to obtain a build plus some tests could have additional environment
-requirements.
-
-## Why the core UI made using GWT is not build anymore?
-
-The core UI is deprecated for removal on next mayor release and requires JDK8.
-
-For now it can be build following the next commands and only with JDK8:
-
-```
-git clone https://sissource.ethz.ch/sispub/openbis.git
-cd core-plugin-openbis/
-./gradlew clean
-./gradlew buildCoreUIPackageUsingJDK8 -x test
-```
-
-## How to compile the V3 JS bundle used by the new Admin UI in production?
-
-```
-git clone https://sissource.ethz.ch/sispub/openbis.git
-cd api-openbis-javascript/
-./gradlew clean
-./gradlew bundleOpenbisStaticResources -x test
-```
-
-The output can be found at:
-server-application-server/source/java/ch/systemsx/cisd/openbis/public/resources/api/v3
-
-config.bundle.js
-config.bundle.min.js
-openbis.bundle.js
-openbis.bundle.min.js
-
-# Development of openBIS
-
-## Requirements
-
-- Software Requirements
-- IntelliJ IDEA CE
-
-## Step By Step
-
-```
-File -> New -> Project From Existing Sources
-Select the build folder to load the gradle model
-After the model is loaded execute the tasks:
-
-openBISDevelopementEnvironmentASPrepare
-openBISDevelopementEnvironmentASStart
-openBISDevelopementEnvironmentDSSStart
-```
-
-## Source Code Auto Formatting
-
-OpenBIS source code uses a particular style preset that guarantees all code is formatted uniformly.
-
-To make use of the preset go to File/Settings or IntelliJIDEA/Preferences depending on your OS.
-
-Then import the XML file under 'docs/codestyle/SIS_Conventions_IntelliJ_V3.xml'. See images below:
-
-!["IntelliJ Code Style Configuration 1"](./docs/readme/intellij-codestyle-config-1.png "IntelliJ Code Style Configuration 1")
-!["IntelliJ Code Style Configuration 2"](./docs/readme/intellij-codestyle-config-2.png "IntelliJ Code Style Configuration 2")
-!["IntelliJ Code Style Configuration 3"](./docs/readme/intellij-codestyle-config-3.png "IntelliJ Code Style Configuration 3")
-!["IntelliJ Code Style Configuration 4"](./docs/readme/intellij-codestyle-config-4.png "IntelliJ Code Style Configuration 4")
-
-## Commit Messages Formatting
-
-OpenBIS source code commit messages use a particular formatting.
-
-This formatting guarantees that there is a User Story behind it.
-
-To ensure commits follow the formatting 'Git Hooks' are provided.
-
-Just copy them from the root folder of this repo run the next command:
-````
-%/> cp ./docs/hooks/* ./.git/hooks/   
-%/> git add README.md
-%/> git commit -m "Test incorrectly formatted message"
-Aborting commit. Your commit message is missing an issue number ('SSDM-XXXXX:')
-````
-
-## Source Code Copyright Header
-
-OpenBIS source code is licensed under SIS copyright and licensed under 'Apache 2 License':
-````
-http://www.apache.org/licenses/LICENSE-2.0
-````
-To guarantee all new source files contain the appropriate license a preset is provided.
-
-To make use of the preset go to File/Settings or IntelliJIDEA/Preferences depending on your OS.
-
-Then import the XML file under 'docs/copyright/Copyright_IntelliJ.xml' under the copyright section as the image below indicate.
-!["IntelliJ Copyright Configuration 1"](./docs/readme/intellij-copyright-config-1.png "IntelliJ Copyright Configuration 1")
-Last, set the Copyright Profile under the Copyright section as the image below indicate:
-!["IntelliJ Copyright Configuration 2"](./docs/readme/intellij-copyright-config-2.png "IntelliJ Copyright Configuration 2")
-
-## Typical Errors
-
-# IntelliJ can't find package com.sun.*, but I can compile the project using the command line!
-
-Turn off "File | Settings | Build, Execution, Deployment | Compiler | Java Compiler | Use --release
-option for cross-compilation".
-
-# IntelliJ can't find a particular method
-
-Code compatiblity 1.8 is set by default to work well with our javadoc tools but it can be set to 17 on IntelliJ. See image below.
-!["IntelliJ Configuration 1"](./docs/readme/intellij-config-1.png "IntelliJ Configuration 1")
-
-# Test seem to run through Gradle and fail
-
-They need to be set to run using IntelliJ.
-!["IntelliJ Configuration 2"](./docs/readme/intellij-config-2.png "IntelliJ Configuration 2")
-
-# Test seem to run through intelliJ but throw a package not open error
-
-The project does not uses modules yet. Add '--add-opens' statements manually when launching the tests as shown below.
-!["IntelliJ Configuration 3"](./docs/readme/intellij-config-3.png "IntelliJ Configuration 3")
-
-## Development of NG UI
-
-1. Generate openBIS JS bundle by running in command line
-    1. cd /<OPENBIS_PROJECT_ROOT>/api-openbis-javascript
-    2. ./gradlew :bundleOpenbisStaticResources
-2. Start openBIS in your chosen IDE (NG UI assumes it will run
-   at: http://localhost:8888/openbis-test/):
-    1. run openBISDevelopementEnvironmentASPrepare gradle task
-    2. run openBISDevelopementEnvironmentASStart gradle task
-3. In command line do:
-    1. cd /<OPENBIS_PROJECT_ROOT>/ui-admin
-    2. npm install
-    3. npm run dev
-4. Open in your chosen browser a url, by default: http://localhost:9999/admin
-
-## Setting up IntelliJ Idea
-
-1. Under "IntelliJ IDEA" -> "Preferences" -> "Languages and Frameworks" -> Javascript, set the
-   language version to ECMAScript 6.
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/corrector.sh b/docs/user-documentation/general-admin-users/admins-documentation/img/corrector.sh
deleted file mode 100755
index 24595376b36fe7970044aa57447411c8f8e89294..0000000000000000000000000000000000000000
--- a/docs/user-documentation/general-admin-users/admins-documentation/img/corrector.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/02/|att/|g' ./docs/user-documentation/general-users/inventory-of-materials-and-methods.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/02/|att/|g' ./docs/user-documentation/general-users/inventory-of-materials-and-methods.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/03/|att/|g' ./docs/user-documentation/general-users/inventory-of-materials-and-methods.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/03/|att/|g' ./docs/user-documentation/general-users/inventory-of-materials-and-methods.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/02/|att/|g' ./docs/user-documentation/general-admin-users/admins-documentation/new-entity-type-registration.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/02/|att/|g' ./docs/user-documentation/general-admin-users/admins-documentation/new-entity-type-registration.md
-sed -i 's|https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/|att/|g' ./docs/software-developer-documentation/apis/matlab-v3-api.md
-sed -i 's|https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/|att/|g' ./docs/software-developer-documentation/apis/matlab-v3-api.md
-sed -i 's|https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/|att/|g' ./docs/software-developer-documentation/apis/matlab-v3-api.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2021/08/|att/|g' ./docs/user-documentation/general-users/barcodes.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2021/08/|att/|g' ./docs/user-documentation/general-users/barcodes.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2021/08/|att/|g' ./docs/user-documentation/general-users/barcodes.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2021/08/|att/|g' ./docs/user-documentation/general-users/barcodes.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2021/08/|att/|g' ./docs/user-documentation/general-users/barcodes.md
-sed -i 's|https://wiki-bsse.ethz.ch/download/attachments/147412090/|att/|g' ./docs/user-documentation/general-users/managing-storage-of-samples.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/02/|att/|g' ./docs/user-documentation/general-users/managing-lab-stocks-and-orders-2.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/02/|att/|g' ./docs/user-documentation/general-users/managing-lab-stocks-and-orders-2.md
-sed -i 's|https://openbis.ch/wp-content/uploads/2022/03/|att/|g' ./docs/user-documentation/general-users/tools-for-analysis-of-data-stored-in-openbis.md
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/create-space-groups-dropdown.png.1 b/docs/user-documentation/general-admin-users/admins-documentation/img/create-space-groups-dropdown.png.1
deleted file mode 100644
index 40ce0308ed0ad293492677d894d24589cdffe03d..0000000000000000000000000000000000000000
Binary files a/docs/user-documentation/general-admin-users/admins-documentation/img/create-space-groups-dropdown.png.1 and /dev/null differ
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/create-space-no-group.png.1 b/docs/user-documentation/general-admin-users/admins-documentation/img/create-space-no-group.png.1
deleted file mode 100644
index 05fc56c81de0b3607f62b482a57bc7abe923845c..0000000000000000000000000000000000000000
Binary files a/docs/user-documentation/general-admin-users/admins-documentation/img/create-space-no-group.png.1 and /dev/null differ
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/create-space.png.1 b/docs/user-documentation/general-admin-users/admins-documentation/img/create-space.png.1
deleted file mode 100644
index f7b4ab5f9c4d0a82142e709307ee8b74405ffe09..0000000000000000000000000000000000000000
Binary files a/docs/user-documentation/general-admin-users/admins-documentation/img/create-space.png.1 and /dev/null differ
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/downloader.sh b/docs/user-documentation/general-admin-users/admins-documentation/img/downloader.sh
deleted file mode 100755
index de62301316611ecabf9c009c39ae2b93d177684f..0000000000000000000000000000000000000000
--- a/docs/user-documentation/general-admin-users/admins-documentation/img/downloader.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/02/SAMPLE-COLLECTION-REGISTRATION-SAMPLE-STORAGE_POSITION-template-2.xls
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/02/SAMPLE-COLLECTION-REGISTRATION-ANTIBODY-STORAGE_POSITION-template-1.xls
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/03/SAMPLE-GENERAL-REGISTRATION-EXPERIMENTAL_STEP-MASS_MEASUREMENT-SAMPLE-template.xls
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/03/SAMPLE-GENERAL-REGISTRATION-EXPERIMENTAL_STEP-MASS_MEASUREMENT-SAMPLE-template-1.xls
-wget -P ./docs/user-documentation/general-admin-users/admins-documentation/att/ https://openbis.ch/wp-content/uploads/2022/02/masterdata-template.xls
-wget -P ./docs/user-documentation/general-admin-users/admins-documentation/att/ https://openbis.ch/wp-content/uploads/2022/02/masterdata-metadata.xls
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/02/SAMPLE-COLLECTION-REGISTRATION-SAMPLE-STORAGE_POSITION-template-2.xlsx
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/02/SAMPLE-COLLECTION-REGISTRATION-ANTIBODY-STORAGE_POSITION-template-1.xlsx
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/03/SAMPLE-GENERAL-REGISTRATION-EXPERIMENTAL_STEP-MASS_MEASUREMENT-SAMPLE-template.xlsx
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/03/SAMPLE-GENERAL-REGISTRATION-EXPERIMENTAL_STEP-MASS_MEASUREMENT-SAMPLE-template-1.xlsx
-wget -P ./docs/software-developer-documentation/apis/att/ https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/python-compatibility.pdf
-wget -P ./docs/software-developer-documentation/apis/att/ https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/python-compatibility.pdf
-wget -P ./docs/software-developer-documentation/apis/att/ https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/python-compatibility.pdf
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2021/08/printer-test-code128-split-50-15.pdf
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2021/08/printer-test-code128-continuous-50-15.pdf
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2021/08/scanner-test-code128-50-15.pdf
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2021/08/scanner-test-qrcode-50-50.pdf
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2021/08/scanner-test-microqrcode-30-30.pdf
-wget -P ./docs/user-documentation/general-users/att/ https://wiki-bsse.ethz.ch/download/attachments/147412090/SAMPLE-STORAGE_POSITION-template.txt
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/02/order_ORD1_p0.txt
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/02/order_ORD1_p1.txt
-wget -P ./docs/user-documentation/general-users/att/ https://openbis.ch/wp-content/uploads/2022/03/invalid-session-token-error-1024x58.jpg
-
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/html_cleaner.sh b/docs/user-documentation/general-admin-users/admins-documentation/img/html_cleaner.sh
deleted file mode 100755
index d779769411ad829f7c2ac948bde3111526648991..0000000000000000000000000000000000000000
--- a/docs/user-documentation/general-admin-users/admins-documentation/img/html_cleaner.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-declare -A dict
-
-dict['&']='&amp;'
-dict['<']='&lt;'
-dict['>']='&gt;'
-dict['"']='&quot;'
-dict['–']='&ndash;'
-dict['—']='&mdash;'
-dict['©']='&copy;'
-dict['®']='&reg;'
-dict['â„¢']='&trade;'
-dict['≈']='&asymp;'
-dict['≠']='&ne;'
-dict['£']='&pound;'
-dict['€']='&euro;'
-dict['°']='&deg;'
-
-for key in "${!dict[@]}"; do
-    echo "${dict[$key]}"
-    grep -irn --include \*.md "${dict[$key]}" ./docs/*
-    #grep -irl --include \*.md "${dict[$key]}" ./docs/* | xargs sed -i -e 's/${dict[$key]}/${key}/g'
-done
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/menu-settings-multigroup.png.1 b/docs/user-documentation/general-admin-users/admins-documentation/img/menu-settings-multigroup.png.1
deleted file mode 100644
index 8ca2abc7208bd57ce5b218f5429e4123cad62204..0000000000000000000000000000000000000000
Binary files a/docs/user-documentation/general-admin-users/admins-documentation/img/menu-settings-multigroup.png.1 and /dev/null differ
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/move-space-to-inventory-1024x426.png.1 b/docs/user-documentation/general-admin-users/admins-documentation/img/move-space-to-inventory-1024x426.png.1
deleted file mode 100644
index 58fdd9f198c8be38e7ff141c257c2a8b11d01c77..0000000000000000000000000000000000000000
Binary files a/docs/user-documentation/general-admin-users/admins-documentation/img/move-space-to-inventory-1024x426.png.1 and /dev/null differ
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/settings-selection-multigroup.png.1 b/docs/user-documentation/general-admin-users/admins-documentation/img/settings-selection-multigroup.png.1
deleted file mode 100644
index 9a5f207b9665aac3325ae1d605223f7e2f814f4f..0000000000000000000000000000000000000000
Binary files a/docs/user-documentation/general-admin-users/admins-documentation/img/settings-selection-multigroup.png.1 and /dev/null differ
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/spaces-admin-UI-300x158.png.1 b/docs/user-documentation/general-admin-users/admins-documentation/img/spaces-admin-UI-300x158.png.1
deleted file mode 100644
index 44ab914f3661a167498bf6a5c614096d267497e8..0000000000000000000000000000000000000000
Binary files a/docs/user-documentation/general-admin-users/admins-documentation/img/spaces-admin-UI-300x158.png.1 and /dev/null differ
diff --git a/docs/user-documentation/general-admin-users/admins-documentation/img/test.sh b/docs/user-documentation/general-admin-users/admins-documentation/img/test.sh
deleted file mode 100755
index 419a36756d7214f16bae2feca7cfcd5a6b351b49..0000000000000000000000000000000000000000
--- a/docs/user-documentation/general-admin-users/admins-documentation/img/test.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-for ext in xls xlsx pdf txt jpg; do
-	grep -Eorn  --include \*.md "https://[^ >]+\.${ext}" ./docs/*
-done