Skip to content

Instantly share code, notes, and snippets.

@lostyzen
lostyzen / scoop_config_and_install_for_devops.md
Created October 8, 2025 13:15
Le script ci-dessous installe Scoop et configure un environnement complet pour un profil DevOps/Intégrateur

🚀 Installation et configuration

Script d'installation automatisé

Le script ci-dessous installe Scoop et configure un environnement complet pour un profil DevOps/Intégrateur :

# =============================================================================
# SCRIPT D'INSTALLATION SCOOP + ENVIRONNEMENT DEVOPS
# =============================================================================
# 🚀 Scoop DevOps Setup Script
# Install Scoop
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
Invoke-Expression (Invoke-WebRequest -Uri 'https://get.scoop.sh' -UseBasicParsing).Content
# Add Buckets
scoop bucket add extras
scoop bucket add java
scoop bucket add versions
@lostyzen
lostyzen / devops_toolkit.md
Last active October 1, 2025 20:59
DevOps Toolkit (with scoop 😉)

🧰 DevOps Toolkit with Scoop

This guide lists essential DevOps tools, their purpose, and how to install each one using Scoop, a powerful Windows package manager that installs everything in your user folder—no admin rights needed.


🚀 How to Install Scoop

Open PowerShell and run:

@lostyzen
lostyzen / configure-ansibletarget.ps1
Created February 26, 2020 10:35 — forked from trondhindenes/configure-ansibletarget.ps1
Configure Windows 2008R2/2012/2012R2 for SSL-based remoting
Param (
[string]$SubjectName = $env:COMPUTERNAME,
[int]$CertValidityDays = 365,
$CreateSelfSignedCert = $true
)
#region function defs
Function New-LegacySelfSignedCert
{