mirror of
https://github.com/dockersrc/windows
synced 2026-06-24 20:01:03 -04:00
16 lines
373 B
PowerShell
16 lines
373 B
PowerShell
|
|
# PowerShell script for Windows container system setup
|
||
|
|
# @Version: 202601231310-git
|
||
|
|
# @Author: CasjaysDev
|
||
|
|
# @Contact: CasjaysDev <docker-admin@casjaysdev.pro>
|
||
|
|
# @License: MIT
|
||
|
|
# @Copyright: Copyright 2026 CasjaysDev
|
||
|
|
# @File: 01-system.ps1
|
||
|
|
# @Description: Script to run system setup
|
||
|
|
|
||
|
|
$ErrorActionPreference = 'Stop'
|
||
|
|
$exitCode = 0
|
||
|
|
|
||
|
|
# System configuration here
|
||
|
|
|
||
|
|
exit $exitCode
|