Skip to content

Instantly share code, notes, and snippets.

View AzimsTech's full-sized avatar
🧐
monitoring the situation..

Wan Azims AzimsTech

🧐
monitoring the situation..
View GitHub Profile
@zaufi
zaufi / disable-tasks.cmd
Last active August 10, 2025 01:20
Some tips to minimize "Windows 10 Enterprise 2016 LTSB N (x64)" installation to be used for continuous integration
schtasks /Change /TN "Microsoft\Windows\AppID\SmartScreenSpecific" /Disable
schtasks /Change /TN "Microsoft\Windows\ApplicationData\CleanupTemporaryState" /Disable
schtasks /Change /TN "Microsoft\Windows\ApplicationData\DsSvcCleanup" /Disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /Disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\ProgramDataUpdater" /Disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\StartupAppTask" /Disable
schtasks /Change /TN "Microsoft\Windows\Autochk\Proxy" /Disable
schtasks /Change /TN "Microsoft\Windows\CloudExperienceHost\CreateObjectTask" /Disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /Disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /Disable
@josy1024
josy1024 / SH-Set-KnownFolderPath.ps1
Last active October 23, 2023 02:11
powershell set shell folders! Use the SHGetFolderPath or SHGetKnownFolderPath function instead Shell Folders
<#
.SYNOPSIS
Sets a known folder's path using SHSetKnownFolderPath.
.PARAMETER Folder
The known folder whose path to set.
.PARAMETER Path
The path.
#>
# USAGE: # Set-KnownFolderPath -KnownFolder 'Desktop' -Path '\\netserver\desktop\username\desktop'
# FROM: http://stackoverflow.com/questions/25709398/set-location-of-special-folders-with-powershell
@spences10
spences10 / github-cheat-sheet.md
Last active November 18, 2024 21:37
GitHub Cheat Sheet

Useful Git commands

This is just stuff that I have put down that I find I use a lot of the time for my own reference.

Latest changes from repo to your machine

$ git pull
@imba-tjd
imba-tjd / .Windows Optimization.md
Last active June 4, 2026 15:16
记录我使用的软件和优化Windows的操作

系统设置

@braian87b
braian87b / wireless-link-wds.sh
Last active January 7, 2024 19:31
How to setup Wireless Links to avoid Wired backbone using WDS on Atheros for OpenWRT / LEDE
@braian87b
braian87b / dumb-ap-wired-link.sh
Last active January 23, 2026 06:42
How to setup a Dumb AP, Wired backbone for OpenWRT / LEDE
@dangkhoasdc
dangkhoasdc / windows10_speed_up.md
Last active May 24, 2025 01:28
Some tips&tricks to speed up windows 10

Network

Disable Windows Update delivery

Settings > Update & Security > Windows Update > Advanced Options:

  • Turn off the p2p file transfer [Recommend]
  • Limit the p2p transfer to PCs on the local network

Turn off background apps

@The-Running-Dev
The-Running-Dev / Update-StartMenu.ps1
Created June 14, 2017 17:01
Organizes your start menu into your defined categories. Support -WhatIf.
[CmdletBinding(SupportsShouldProcess = $true)]
Param(
)
$commonStarMenuDir = 'C:\ProgramData\Microsoft\Windows\Start Menu\Programs'
$userStartMenDir = Join-Path $env:AppData 'Microsoft\Windows\Start Menu\Programs'
$tempStartMenuDir = Join-Path $env:Temp 'TempStartMenu'
if (Test-Path $tempStartMenuDir) {
Get-ChildItem $tempStartMenuDir -Recurse | Remove-Item -Recurse -Force
@Pulimet
Pulimet / AdbCommands
Last active August 27, 2026 12:16
Adb useful commands list
Hi All!
I've recently launched a tool that wraps many of the commands here with a user interface. This desktop application is currently available for macOS. There's a roadmap outlining planned features for the near future.
Feel free to request any features you'd like to see, and I'll prioritize them accordingly.
One of the most important aspects of this application is that every command executed behind the scenes is displayed in a special log section. This allows you to see exactly what’s happening and learn from it.
Here's the link to the repository: https://github.com/Pulimet/ADBugger
App Description:
ADBugger is a desktop tool designed for debugging and QA of Android devices and emulators. It simplifies testing, debugging, and performance analysis by offering device management, automated testing, log analysis, and remote control capabilities. This ensures smooth app performance across various setups.
@santisbon
santisbon / Search my gists.md
Last active August 8, 2026 16:19
How to search gists.

Enter this in the search box along with your search terms:

Get all gists from the user santisbon.
user:santisbon

Find all gists with a .yml extension.
extension:yml

Find all gists with HTML files.
language:html