├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .vscode └── settings.json ├── Apps ├── Download and install Microsoft Store.cmd ├── Get AppX package names.ps1 ├── Get installed apps.ps1 ├── Is x64.ps1 ├── Reinstall AppX Packages.ps1 ├── Remove AppX packages.ps1 └── Repair system AppX packages.ps1 ├── BITS ├── Get active BITS jobs, detailed.ps1 ├── Get active BITS jobs, table.ps1 ├── Get all BITS jobs, custom.ps1 ├── Get pending BITS jobs, detailed.ps1 └── Get pending BITS jobs, table.ps1 ├── Changelog.markdown ├── Code snippets ├── Functions library.psm1 ├── PS1 template.ps1 └── PSM1 template.psm1 ├── Demos ├── ANSI escape sequences.ps1 ├── Hello, World!.ps1 ├── Message boxes in PowerShell.ps1 ├── Pipeline-ready function.ps1 ├── Sort order.ps1 ├── System colors.ps1 └── Working paths.ps1 ├── Graphics ├── Find good JPEG images (Opt-1).ps1 └── Find good JPEG images.ps1 ├── Hardware ├── Get-CpuIntrinsicsSupport.ps1 └── Set-BluetoothRadio.ps1 ├── LICENSE ├── Last logon time ├── Get last logon time (Deprecated).vbs └── Get last logon time.ps1 ├── Maintenance ├── Clean compatibility store.ps1 ├── Compile PowerShell native images.bat ├── Find broken Start menu LNKs.ps1 ├── Find broken services.ps1 ├── Find redundant drivers.ps1 ├── Optimize PATH variable.ps1 ├── Repair all volumes.ps1 └── WindowsShortcutFactory.1.2.0 │ ├── .signature.p7s │ ├── README.md │ ├── WindowsShortcutFactory.1.2.0.nupkg │ └── lib │ └── netstandard2.0 │ ├── WindowsShortcutFactory.dll │ └── WindowsShortcutFactory.xml ├── README.markdown ├── Security ├── Malicious Software Removal Tool │ ├── Allow Windows Update to install MRT.reg │ └── Prevent Windows Update from installing MRT.reg ├── MpDefinitionPackage │ ├── .vscode │ │ └── launch.json │ ├── MpDefinitionPackage.psd1 │ ├── MpDefinitionPackage.psm1 │ └── res │ │ ├── How to use.html │ │ ├── How to use.min.html │ │ ├── SFX-commands-Defender.txt │ │ └── SFX-commands-MASM.txt ├── Notice.markdown └── Others │ ├── Clear Windows Defender history.ps1 │ └── Get Windows Firewall status.cmd ├── Shell ├── File associations │ ├── Fix 'Run with PowerShell' verb (PowerShell 7).reg │ ├── Fix 'Run with PowerShell' verb (Visual Studio Code - System-wide).reg │ ├── Fix 'Run with PowerShell' verb (Windows 10).reg │ └── Fix 'Run with PowerShell' verb (legacy).reg ├── Folder view state │ └── Delete folder view state.reg ├── Icon cache │ ├── Refresh icon cache with IE4UINIT (Windows 10).cmd │ ├── Refresh icon cache with IE4UINIT (Windows 7).cmd │ └── Refresh icon cache with MoveFile.cmd ├── Promotional Store apps (pre-Setup) │ ├── Disable promotional Store apps.reg │ └── Enable promotional Store apps.reg ├── Special folders under This PC │ ├── Remove all special folders from This PC, 32-bit.reg │ ├── Remove all special folders from This PC, 64-bit.reg │ ├── Restore all special folders to This PC, 32-bit.reg │ └── Restore all special folders to This PC, 64-bit.reg ├── Volume icons │ ├── Hide volume icons outside This PC.reg │ ├── Show volume icons outside This PC, 32-bit.reg │ └── Show volume icons outside This PC, 64-bit.reg ├── Wallpaper │ ├── Find current wallpaper (Windows 7).ps1 │ └── Find current wallpaper.ps1 └── Windows Search │ ├── Disable web results in Windows Search.reg │ └── Restore web results to Windows Search.reg ├── Shutdown ├── Log off.vbs ├── Power off (Alternative).vbs ├── Power off.vbs ├── Restart (Alternative).vbs └── Restart.vbs ├── System settings ├── Core isolation's memory integrity │ ├── Disable memory integrity.reg │ └── Enable memory integrity.reg ├── Dump stack logging │ └── Disable dump stack logging.reg ├── Telemetry │ └── Disable diagnostics data collection (reversible via Settings app).reg └── UTC time │ └── Set firmware time as UTC.reg ├── Unicode test suite ├── Text file.markdown ├── ar - ويكيبيديا، الموسوعة الحرة.txt ├── de - Wikipedia – Die freie Enzyklopädie.txt ├── en - Wikipedia, the free encyclopedia.txt ├── fa - ویکی‌پدیا، دانشنامهٔ آزاد.txt ├── fr - Wikipédia, l'encyclopédie libre.txt ├── he - ויקיפדיה.txt ├── hi - विकिपीडिया, एक मुक्त ज्ञानकोष, जिसे कोई भी संपादित कर सकता है.txt ├── ja - ウィキペディア.txt ├── ko - 위키백과, 우리 모두의 백과사전.txt ├── pt - Wikipédia, a enciclopédia livre.txt ├── ru - Википедия — свободная энциклопедия.txt └── zh - 维基百科,自由的百科全书.txt ├── Update management ├── Clear Windows Update history.ps1 ├── Disable Microsoft Update.ps1 ├── Enable Microsoft Update.ps1 ├── Find update on Microsoft Catalog.ps1 ├── Get automatic update services.ps1 ├── Install updates with Dism.exe.ps1 ├── Install updates with MsiExec.exe.ps1 ├── Install updates with PowerShell.ps1 └── Install updates with Wusa.exe.ps1 └── desktop.ini /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Apps/Download and install Microsoft Store.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | wsreset.exe -i -------------------------------------------------------------------------------- /Apps/Get AppX package names.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Apps/Get AppX package names.ps1 -------------------------------------------------------------------------------- /Apps/Get installed apps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Apps/Get installed apps.ps1 -------------------------------------------------------------------------------- /Apps/Is x64.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Apps/Is x64.ps1 -------------------------------------------------------------------------------- /Apps/Reinstall AppX Packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Apps/Reinstall AppX Packages.ps1 -------------------------------------------------------------------------------- /Apps/Remove AppX packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Apps/Remove AppX packages.ps1 -------------------------------------------------------------------------------- /Apps/Repair system AppX packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Apps/Repair system AppX packages.ps1 -------------------------------------------------------------------------------- /BITS/Get active BITS jobs, detailed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/BITS/Get active BITS jobs, detailed.ps1 -------------------------------------------------------------------------------- /BITS/Get active BITS jobs, table.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/BITS/Get active BITS jobs, table.ps1 -------------------------------------------------------------------------------- /BITS/Get all BITS jobs, custom.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/BITS/Get all BITS jobs, custom.ps1 -------------------------------------------------------------------------------- /BITS/Get pending BITS jobs, detailed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/BITS/Get pending BITS jobs, detailed.ps1 -------------------------------------------------------------------------------- /BITS/Get pending BITS jobs, table.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/BITS/Get pending BITS jobs, table.ps1 -------------------------------------------------------------------------------- /Changelog.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Changelog.markdown -------------------------------------------------------------------------------- /Code snippets/Functions library.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Code snippets/Functions library.psm1 -------------------------------------------------------------------------------- /Code snippets/PS1 template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Code snippets/PS1 template.ps1 -------------------------------------------------------------------------------- /Code snippets/PSM1 template.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Code snippets/PSM1 template.psm1 -------------------------------------------------------------------------------- /Demos/ANSI escape sequences.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Demos/ANSI escape sequences.ps1 -------------------------------------------------------------------------------- /Demos/Hello, World!.ps1: -------------------------------------------------------------------------------- 1 | Clear-Host 2 | Write-Output "Hello, World!" 3 | -------------------------------------------------------------------------------- /Demos/Message boxes in PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Demos/Message boxes in PowerShell.ps1 -------------------------------------------------------------------------------- /Demos/Pipeline-ready function.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Demos/Pipeline-ready function.ps1 -------------------------------------------------------------------------------- /Demos/Sort order.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Demos/Sort order.ps1 -------------------------------------------------------------------------------- /Demos/System colors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Demos/System colors.ps1 -------------------------------------------------------------------------------- /Demos/Working paths.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Demos/Working paths.ps1 -------------------------------------------------------------------------------- /Graphics/Find good JPEG images (Opt-1).ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Graphics/Find good JPEG images (Opt-1).ps1 -------------------------------------------------------------------------------- /Graphics/Find good JPEG images.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Graphics/Find good JPEG images.ps1 -------------------------------------------------------------------------------- /Hardware/Get-CpuIntrinsicsSupport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Hardware/Get-CpuIntrinsicsSupport.ps1 -------------------------------------------------------------------------------- /Hardware/Set-BluetoothRadio.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Hardware/Set-BluetoothRadio.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Last logon time/Get last logon time (Deprecated).vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Last logon time/Get last logon time (Deprecated).vbs -------------------------------------------------------------------------------- /Last logon time/Get last logon time.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Last logon time/Get last logon time.ps1 -------------------------------------------------------------------------------- /Maintenance/Clean compatibility store.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/Clean compatibility store.ps1 -------------------------------------------------------------------------------- /Maintenance/Compile PowerShell native images.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/Compile PowerShell native images.bat -------------------------------------------------------------------------------- /Maintenance/Find broken Start menu LNKs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/Find broken Start menu LNKs.ps1 -------------------------------------------------------------------------------- /Maintenance/Find broken services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/Find broken services.ps1 -------------------------------------------------------------------------------- /Maintenance/Find redundant drivers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/Find redundant drivers.ps1 -------------------------------------------------------------------------------- /Maintenance/Optimize PATH variable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/Optimize PATH variable.ps1 -------------------------------------------------------------------------------- /Maintenance/Repair all volumes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/Repair all volumes.ps1 -------------------------------------------------------------------------------- /Maintenance/WindowsShortcutFactory.1.2.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/WindowsShortcutFactory.1.2.0/.signature.p7s -------------------------------------------------------------------------------- /Maintenance/WindowsShortcutFactory.1.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/WindowsShortcutFactory.1.2.0/README.md -------------------------------------------------------------------------------- /Maintenance/WindowsShortcutFactory.1.2.0/WindowsShortcutFactory.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/WindowsShortcutFactory.1.2.0/WindowsShortcutFactory.1.2.0.nupkg -------------------------------------------------------------------------------- /Maintenance/WindowsShortcutFactory.1.2.0/lib/netstandard2.0/WindowsShortcutFactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/WindowsShortcutFactory.1.2.0/lib/netstandard2.0/WindowsShortcutFactory.dll -------------------------------------------------------------------------------- /Maintenance/WindowsShortcutFactory.1.2.0/lib/netstandard2.0/WindowsShortcutFactory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Maintenance/WindowsShortcutFactory.1.2.0/lib/netstandard2.0/WindowsShortcutFactory.xml -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/README.markdown -------------------------------------------------------------------------------- /Security/Malicious Software Removal Tool/Allow Windows Update to install MRT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/Malicious Software Removal Tool/Allow Windows Update to install MRT.reg -------------------------------------------------------------------------------- /Security/Malicious Software Removal Tool/Prevent Windows Update from installing MRT.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/Malicious Software Removal Tool/Prevent Windows Update from installing MRT.reg -------------------------------------------------------------------------------- /Security/MpDefinitionPackage/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/MpDefinitionPackage/.vscode/launch.json -------------------------------------------------------------------------------- /Security/MpDefinitionPackage/MpDefinitionPackage.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/MpDefinitionPackage/MpDefinitionPackage.psd1 -------------------------------------------------------------------------------- /Security/MpDefinitionPackage/MpDefinitionPackage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/MpDefinitionPackage/MpDefinitionPackage.psm1 -------------------------------------------------------------------------------- /Security/MpDefinitionPackage/res/How to use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/MpDefinitionPackage/res/How to use.html -------------------------------------------------------------------------------- /Security/MpDefinitionPackage/res/How to use.min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/MpDefinitionPackage/res/How to use.min.html -------------------------------------------------------------------------------- /Security/MpDefinitionPackage/res/SFX-commands-Defender.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/MpDefinitionPackage/res/SFX-commands-Defender.txt -------------------------------------------------------------------------------- /Security/MpDefinitionPackage/res/SFX-commands-MASM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/MpDefinitionPackage/res/SFX-commands-MASM.txt -------------------------------------------------------------------------------- /Security/Notice.markdown: -------------------------------------------------------------------------------- 1 | # Notice 2 | 3 | Do not rename the module folders. 4 | -------------------------------------------------------------------------------- /Security/Others/Clear Windows Defender history.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/Others/Clear Windows Defender history.ps1 -------------------------------------------------------------------------------- /Security/Others/Get Windows Firewall status.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Security/Others/Get Windows Firewall status.cmd -------------------------------------------------------------------------------- /Shell/File associations/Fix 'Run with PowerShell' verb (PowerShell 7).reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/File associations/Fix 'Run with PowerShell' verb (PowerShell 7).reg -------------------------------------------------------------------------------- /Shell/File associations/Fix 'Run with PowerShell' verb (Visual Studio Code - System-wide).reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/File associations/Fix 'Run with PowerShell' verb (Visual Studio Code - System-wide).reg -------------------------------------------------------------------------------- /Shell/File associations/Fix 'Run with PowerShell' verb (Windows 10).reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/File associations/Fix 'Run with PowerShell' verb (Windows 10).reg -------------------------------------------------------------------------------- /Shell/File associations/Fix 'Run with PowerShell' verb (legacy).reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/File associations/Fix 'Run with PowerShell' verb (legacy).reg -------------------------------------------------------------------------------- /Shell/Folder view state/Delete folder view state.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Folder view state/Delete folder view state.reg -------------------------------------------------------------------------------- /Shell/Icon cache/Refresh icon cache with IE4UINIT (Windows 10).cmd: -------------------------------------------------------------------------------- 1 | ie4uinit.exe -show -------------------------------------------------------------------------------- /Shell/Icon cache/Refresh icon cache with IE4UINIT (Windows 7).cmd: -------------------------------------------------------------------------------- 1 | ie4uinit.exe -ClearIconCache -------------------------------------------------------------------------------- /Shell/Icon cache/Refresh icon cache with MoveFile.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Icon cache/Refresh icon cache with MoveFile.cmd -------------------------------------------------------------------------------- /Shell/Promotional Store apps (pre-Setup)/Disable promotional Store apps.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Promotional Store apps (pre-Setup)/Disable promotional Store apps.reg -------------------------------------------------------------------------------- /Shell/Promotional Store apps (pre-Setup)/Enable promotional Store apps.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Promotional Store apps (pre-Setup)/Enable promotional Store apps.reg -------------------------------------------------------------------------------- /Shell/Special folders under This PC/Remove all special folders from This PC, 32-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Special folders under This PC/Remove all special folders from This PC, 32-bit.reg -------------------------------------------------------------------------------- /Shell/Special folders under This PC/Remove all special folders from This PC, 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Special folders under This PC/Remove all special folders from This PC, 64-bit.reg -------------------------------------------------------------------------------- /Shell/Special folders under This PC/Restore all special folders to This PC, 32-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Special folders under This PC/Restore all special folders to This PC, 32-bit.reg -------------------------------------------------------------------------------- /Shell/Special folders under This PC/Restore all special folders to This PC, 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Special folders under This PC/Restore all special folders to This PC, 64-bit.reg -------------------------------------------------------------------------------- /Shell/Volume icons/Hide volume icons outside This PC.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Volume icons/Hide volume icons outside This PC.reg -------------------------------------------------------------------------------- /Shell/Volume icons/Show volume icons outside This PC, 32-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Volume icons/Show volume icons outside This PC, 32-bit.reg -------------------------------------------------------------------------------- /Shell/Volume icons/Show volume icons outside This PC, 64-bit.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Volume icons/Show volume icons outside This PC, 64-bit.reg -------------------------------------------------------------------------------- /Shell/Wallpaper/Find current wallpaper (Windows 7).ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Wallpaper/Find current wallpaper (Windows 7).ps1 -------------------------------------------------------------------------------- /Shell/Wallpaper/Find current wallpaper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Wallpaper/Find current wallpaper.ps1 -------------------------------------------------------------------------------- /Shell/Windows Search/Disable web results in Windows Search.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Windows Search/Disable web results in Windows Search.reg -------------------------------------------------------------------------------- /Shell/Windows Search/Restore web results to Windows Search.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shell/Windows Search/Restore web results to Windows Search.reg -------------------------------------------------------------------------------- /Shutdown/Log off.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shutdown/Log off.vbs -------------------------------------------------------------------------------- /Shutdown/Power off (Alternative).vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shutdown/Power off (Alternative).vbs -------------------------------------------------------------------------------- /Shutdown/Power off.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shutdown/Power off.vbs -------------------------------------------------------------------------------- /Shutdown/Restart (Alternative).vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shutdown/Restart (Alternative).vbs -------------------------------------------------------------------------------- /Shutdown/Restart.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Shutdown/Restart.vbs -------------------------------------------------------------------------------- /System settings/Core isolation's memory integrity/Disable memory integrity.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/System settings/Core isolation's memory integrity/Disable memory integrity.reg -------------------------------------------------------------------------------- /System settings/Core isolation's memory integrity/Enable memory integrity.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/System settings/Core isolation's memory integrity/Enable memory integrity.reg -------------------------------------------------------------------------------- /System settings/Dump stack logging/Disable dump stack logging.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/System settings/Dump stack logging/Disable dump stack logging.reg -------------------------------------------------------------------------------- /System settings/Telemetry/Disable diagnostics data collection (reversible via Settings app).reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/System settings/Telemetry/Disable diagnostics data collection (reversible via Settings app).reg -------------------------------------------------------------------------------- /System settings/UTC time/Set firmware time as UTC.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/System settings/UTC time/Set firmware time as UTC.reg -------------------------------------------------------------------------------- /Unicode test suite/Text file.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/Text file.markdown -------------------------------------------------------------------------------- /Unicode test suite/ar - ويكيبيديا، الموسوعة الحرة.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/ar - ويكيبيديا، الموسوعة الحرة.txt -------------------------------------------------------------------------------- /Unicode test suite/de - Wikipedia – Die freie Enzyklopädie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/de - Wikipedia – Die freie Enzyklopädie.txt -------------------------------------------------------------------------------- /Unicode test suite/en - Wikipedia, the free encyclopedia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/en - Wikipedia, the free encyclopedia.txt -------------------------------------------------------------------------------- /Unicode test suite/fa - ویکی‌پدیا، دانشنامهٔ آزاد.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/fa - ویکی‌پدیا، دانشنامهٔ آزاد.txt -------------------------------------------------------------------------------- /Unicode test suite/fr - Wikipédia, l'encyclopédie libre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/fr - Wikipédia, l'encyclopédie libre.txt -------------------------------------------------------------------------------- /Unicode test suite/he - ויקיפדיה.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/he - ויקיפדיה.txt -------------------------------------------------------------------------------- /Unicode test suite/hi - विकिपीडिया, एक मुक्त ज्ञानकोष, जिसे कोई भी संपादित कर सकता है.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/hi - विकिपीडिया, एक मुक्त ज्ञानकोष, जिसे कोई भी संपादित कर सकता है.txt -------------------------------------------------------------------------------- /Unicode test suite/ja - ウィキペディア.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/ja - ウィキペディア.txt -------------------------------------------------------------------------------- /Unicode test suite/ko - 위키백과, 우리 모두의 백과사전.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/ko - 위키백과, 우리 모두의 백과사전.txt -------------------------------------------------------------------------------- /Unicode test suite/pt - Wikipédia, a enciclopédia livre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/pt - Wikipédia, a enciclopédia livre.txt -------------------------------------------------------------------------------- /Unicode test suite/ru - Википедия — свободная энциклопедия.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/ru - Википедия — свободная энциклопедия.txt -------------------------------------------------------------------------------- /Unicode test suite/zh - 维基百科,自由的百科全书.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Unicode test suite/zh - 维基百科,自由的百科全书.txt -------------------------------------------------------------------------------- /Update management/Clear Windows Update history.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Clear Windows Update history.ps1 -------------------------------------------------------------------------------- /Update management/Disable Microsoft Update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Disable Microsoft Update.ps1 -------------------------------------------------------------------------------- /Update management/Enable Microsoft Update.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Enable Microsoft Update.ps1 -------------------------------------------------------------------------------- /Update management/Find update on Microsoft Catalog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Find update on Microsoft Catalog.ps1 -------------------------------------------------------------------------------- /Update management/Get automatic update services.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Get automatic update services.ps1 -------------------------------------------------------------------------------- /Update management/Install updates with Dism.exe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Install updates with Dism.exe.ps1 -------------------------------------------------------------------------------- /Update management/Install updates with MsiExec.exe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Install updates with MsiExec.exe.ps1 -------------------------------------------------------------------------------- /Update management/Install updates with PowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Install updates with PowerShell.ps1 -------------------------------------------------------------------------------- /Update management/Install updates with Wusa.exe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/Update management/Install updates with Wusa.exe.ps1 -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skycommand/AdminScripts/HEAD/desktop.ini --------------------------------------------------------------------------------