Advanced Search
Search Results
168 total results found
Regal1
Docker
GIT
Informationen zu GTI
kodi
Programmierung
Event-Booking
Powershell
einfach mal eine Sammlung von Codebespielen
Proxmox
ESXI
Windows
Ubuntu
pihole
Visual Studio
micro8ks - kubernetes
BookStack
Windows Server Core
Quick And Dirty
Copy And Paste -Sammlung
Reset
Docker
Festplatten
https://pve.proxmox.com/wiki/Storage local -> /var/lib/vz local-lvm -> /dev/pve
System
Fehlerbehebungen
EntityFramework
2019 Core
Running Docker Windows and Linux Containers Simultaneously
Dockerfiles
NGINX
Quick And Dirty
Linux Subsystem
LCX
Batch
IOS
.Net Upgrade-Assistant
Zertifikate
Docker - NAT
Installation
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -AllEnable-WindowsOptionalFeature -Online -FeatureName Containers -All [Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12 Install-Module -Name DockerMsftProvid...
Create Registry
rem docker run -d -p 5000:5000 --restart=always --name registry -v D:/DockerRegistry:/var/lib/registry registry:2 docker run -d -p 5000:5000 --restart=always --name registry registry:2 You will need to save the Docker image as a tar file: docker save -o <pa...
Install Docker ee
Manuellhttp://man.hubwiz.com/docset/Docker.docset/Contents/Resources/Documents/docs.docker.com/install/windows/docker-ee.html --versionenhttps://dockermsft.blob.core.windows.net/dockercontainer/DockerMsftIndex.json --install# Stop Docker serviceStop-Service ...
WSL2
https://code.visualstudio.com/blogs/2020/03/02/docker-in-wsl2 https://docs.microsoft.com/de-de/windows/wsl/install-manual Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux #curl.exe -L -o ubuntu-1804.appx https://aka.ms/ws...
Reset - Hard
#pull der Daten vom zentralen Repository erzwingengit fetch --allgit reset --hard origin/mastergit pull origin master
Reset - Last
However, just in case it happens, don’t worry, there’s a remedy. Type the following command: $ git reflog In fact git maintains uncommitted changes on a parallel Directed Acyclic Graph (DAG) for internal bookkeeping. The previous command should show the Head...
IPTV
sudo apt-get install kodi-pvr-iptvsimple https://graphentech.io/ge/kostenlose-iptv-links-funktionieren-auf-der-fluxus-tv-code-m3u-wiedergabeliste-2020/ https://www.bytebang.at/Blog/Stream+public+IPTV+channels+with+TvHeadend https://github.com/jnk22/kodin...
Quick And Dirty
Visual Studio-Containertools unter Windows - Visual Studio | Microsoft Docs https://docs.microsoft.com/de-de/visualstudio/containers/overview?view=vs-2019 https://melcher.dev/2019/01/til-set-docker-environment-variables-in-visual-studio-for-easier-debuggi...
Powershell
Datenbank - Tools offline installs of dbatools – dbatools Get-SqlLogin -ServerInstance $serverName #Get-SqlLogin -ServerInstance "MyServerInstance" -LoginName "Login01" | Remove-SqlLogin #Add-SqlLogin -ServerInstance "MyServerInstance" -LoginName "...
Private Registry - Push
https://docs.docker.com/engine/reference/commandline/push/ Docker PushBeschreibungPush endert ein Image oder Repository in eine Registrierung Nutzungdocker push [OPTIONS] NAME[:TAG]Erweiterte BeschreibungVerwenden Sie diese Datei, um Ihre Images für die Dock...
Private Registry - Search
http://registry:5000/v2/_catalog
Private Registry - Build
https://github.com/StefanScherer/dockerfiles-windows/blob/main/registry/Dockerfile dockerfile FROM golang as build SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] ENV DOCKER_BUILDTAGS inclu...
Quick And Dirty
function OutputError([string]$errorMessage){Write-Host $errorMessage -ForegroundColor Red} $err = Invoke-Expression "./install/sqlCEIPdisable.ps1"if (!$err) {# Not True, last operation failedOutputError "Disable CEIP-Services not successfull."return }Write-Ho...
NT-Accounts
Write-Host "Create NT-Accounts" $admin = @("ACCOUNTNAME")$serviceAccounts = @("SERVICENAME") $PlainPassword = @("PASWORD")$SecurePassword = $PlainPassword | ConvertTo-SecureString -AsPlainText -Force #DE 1031#EN 1033$CultureID = (Get-Culture).LCID Write-Ho...
Choice1
function OutputError([string]$errorMessage){Write-Host $errorMessage -ForegroundColor RedRead-Host 'Es ist ein Fehler aufgetreten.'} $title = 'something'$question = 'Are you sure you want to proceed?'$choices = '&Yes', '&No' #$decision = $Host.UI.Promp...
Choice 2
param([String] $userName,[String] $passWord) $title = 'something'$question = 'Are you sure you want to proceed?'$choices = '&Yes', '&No' $decision = $Host.UI.PromptForChoice($title, $question, $choices, 1)if ($decision -eq 0) {Write-Host 'confirmed'} else {W...
InputSample
param([Parameter(Mandatory=$true, Position=0)] [String] $userName,[Parameter(Mandatory=$true, Position=1)] [String] $passWord) exit function GetStringValue([String]$title){Write-Host $title$inputString = Read-Host -prompt " -> Ohne Eingabe wird das Script ab...
Folder
#Erstellt Unterordner im aktuellen Verzeichnisparam([String] $folderName)$exitCode = ":q" if ( -not $folderName ) {Write-Host "Geben sie den Verzeichnisnamen an."while ( -not $folderName ) {$folderName = Read-Host "Verzeichnis? ($exitCode = Exit)"}}else{Write...
Git Merge
From: https://www.atlassian.com/de/git/tutorials/using-branches/git-merge In Git kannst du einen geforkten Verlauf per Merge wieder zusammensetzen. Mit dem Befehl git merge kannst du die unabhängigen Entwicklungszweige, die mit git branch erstellt wurden, in ...
Import
qm importdisk <vmid> yourimage.qcow2 namestoragepool Ein Beispiel aus der realen Welt könnte also sein wie ... qm importdisk 101 fileserver.qcow2 local-lvm UnZip: apt-get install unzip Konvertieren: qemu-img convert -f vmdk openmanage_enterprise.x8...