Recent content by xST4R

  1. X

    Guide: Optimized Image

    this is a better version : $list = @('OverrideACSettingIndex', 'OverrideDCSettingIndex', 'ProvACSettingIndex', 'ProvDCSettingIndex') Get-ChildItem -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerSettings' -Recurse | Where-Object { $_.PSParentPath -match...
  2. X

    Worth debloating LTSC 2021?

    The reason people don't like the MS Store is its aggressive data reporting ("phoning home"). If you accept that, you might as well leave all telemetry enabled and use Chrome as your browser anyway.
  3. X

    Post-Setup batch script partially runs

    try this code (is better structured and optimized and has logging ) @echo off setlocal enabledelayedexpansion REM --- Configuration --- set RMM_BASE_PATH=C:\ProgramData\RMM set WIRELESS_PROFILE=%RMM_BASE_PATH%\bench.xml set OFFICE_CONFIG=%RMM_BASE_PATH%\Office-Install-BP.xml set...
  4. X

    Powershell Script - Change Partition Letter

    versuch es mit einem powershell script $DiskNumber = 0 $PartitionNumber = 4 $existingVolume = Get-Volume -DriveLetter N -ErrorAction SilentlyContinue if ($existingVolume) { Write-Host "Der Laufwerksbuchstabe 'N' ist bereits vergeben für Volume: $($existingVolume.FileSystemLabel)" } else...
  5. X

    Disable Windows Security Center Icon - Taskbar

    Hey, How can i disable this : can someone upload a reg file or so plz ?
Back
Top