Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

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

Docker

Quick And Dirty

Docker

Copy And Paste -Sammlung

Reset

GIT

Docker

Programmierung

Festplatten

Proxmox

https://pve.proxmox.com/wiki/Storage local -> /var/lib/vz local-lvm -> /dev/pve

System

Proxmox

Fehlerbehebungen

Docker

EntityFramework

Programmierung

2019 Core

Windows

Running Docker Windows and Linux Containers Simultaneously

Docker

Dockerfiles

Docker

NGINX

Docker

Quick And Dirty

Ubuntu

Linux Subsystem

Windows

LCX

Proxmox

Batch

Windows

IOS

Docker

.Net Upgrade-Assistant

Programmierung

Zertifikate

Programmierung

Docker - NAT

Docker

Installation

Docker Windows Server Core

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

Docker Quick And Dirty

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

Docker Quick And Dirty

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

Docker Quick And Dirty

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

GIT Reset

#pull der Daten vom zentralen Repository erzwingengit fetch --allgit reset --hard origin/mastergit pull origin master

Reset - Last

GIT Reset

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

kodi

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

Programmierung Docker

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

Programmierung

  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

Docker Quick And Dirty

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

Docker Quick And Dirty

  http://registry:5000/v2/_catalog

Private Registry - Build

Docker Quick And Dirty

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

Powershell

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

Powershell

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

Powershell

    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

Powershell

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

Powershell

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

Powershell

#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

GIT

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

Proxmox Festplatten

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...