Skip to content

Instantly share code, notes, and snippets.

View atahabaki's full-sized avatar
🏃
To the next project...

A. Taha Baki atahabaki

🏃
To the next project...
View GitHub Profile
@atahabaki
atahabaki / breeze11.ps1
Created February 2, 2024 00:32
Breeze 11: Windows 11 ISO Modification via Powershell
# Check 7-Zip installed
Write-Information "Checking 7-Zip installed or not..."
function GetLocation-WithPrompt() {
[OutputType([string])]
param(
[ValidateNotNullOrEmpty()]
[string] $Name = "7-Zip"
)
$location = Read-Host -Prompt "Enter valid $Name file location"
@atahabaki
atahabaki / README.md
Last active February 16, 2025 07:33
ver and mrg added

This table will grow in time.

Commit Abbreviation Meaning
init: . initialize the repo
init: msg initialize the msg
add: msg new file/function,trait,functionality etc. sth. new
rem: msg remove file/function/trait/functionality etc. sth. existing removed
bld: msg change in build configurations, justfile,Makefile etc.
mv: msg rename/move file/function/trait/functionality etc. sth. existing moved/renamed.
@atahabaki
atahabaki / debloat_appx.ps1
Last active April 9, 2024 21:02
Debloat Windows 10/11 (Remove-Provisioned)
function Remove-App {
param(
[String] $package
)
Get-ProvisionedAppxPackage -Online | Where-Object {$_.PackageName -like $package} | ForEach-Object {Remove-ProvisionedAppxPackage -Online -PackageName $_.PackageName}
Get-AppxPackage $package | Remove-AppxPackage
}
$apps = @("Microsoft.549981C3F5F10*",
"Microsoft.Bing*",
"Microsoft.GetHelp*",