This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?>= | |
| <PublishedMedia id="2072" release="20181002 RS5 RTM WU"> | |
| <Files> | |
| <File id="470474"> | |
| <FileName>17763.1.180914-1434.rs5_release_CLIENTCHINA_RET_x64FRE_zh-cn.esd</FileName> | |
| <LanguageCode>zh-cn</LanguageCode> | |
| <Language>Chinese Simplified</Language> | |
| <Edition>CoreCountrySpecific</Edition> | |
| <Architecture>x64</Architecture> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ResourceDictionary | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:controls="clr-namespace:RetroBar.Controls" | |
| xmlns:converters="clr-namespace:RetroBar.Converters" | |
| xmlns:utilities="clr-namespace:RetroBar.Utilities" | |
| xmlns:system="clr-namespace:System;assembly=mscorlib"> | |
| <!-- Windows 10 PitchBlack center by AveYo --> | |
| <Style x:Key="TaskListWrapPanel" TargetType="WrapPanel"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| title Windows 10 native ANSI colors fast and compact macro setup by AveYo - just replace ECHO with %%@%% and ^<ESC^> with @ | |
| :: Initiate macro just once | |
| call :@echo | |
| :: [screenonly] [processed escape sequences] | |
| %@% @^^[101;93m @[101;93m STYLES | |
| %@% @^^[0m @[0m Reset | |
| %@% @^^[1m @[1m Bold | |
| %@% @^^[4m @[4m Underline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 2>nul || title FreeStandbyMemory.bat by AveYo v2019.06.01 | |
| @echo off|| csc compiling snippet, advanced schedule, builtin add_remove - UPDATE: reliable free memory detection | |
| set/a CLEAR_EVERY_MINUTES=1 | |
| set/a CLEAR_WHEN_UNDER_MB=512 | |
| set/a CLEAR_SYSTEMCACHEWS=0 | |
| :: check_admin_rights | |
| reg query "HKEY_USERS\S-1-5-20\Environment" /v TEMP >nul 2>nul || ( | |
| color 0e & echo. & echo PERMISSION DENIED! Right-click %~nx0 ^& Run as administrator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off& title RunAsTI - lean and mean snippet by AveYo, 2018-2022 | |
| goto :nfo | |
| [FEATURES] | |
| - innovative HKCU load, no need for reg load / unload ping-pong; programs get the user profile | |
| - sets ownership privileges, high priority, and explorer support; get System if TI unavailable | |
| - accepts special characters in paths for which default run as administrator fails | |
| - adds Send to - RunAsTI right-click menu entry to launch files and folders as TI via explorer | |
| [USAGE] | |
| - First copy-paste RunAsTI snippet after .bat script content | |
| - Then call it anywhere to launch programs with arguments as TI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;@echo off &title Files.html listing from directory context-menu by AveYo v1.0 | |
| ;if not exist "%~1" ( goto :setup ) else pushd "%~1\.." &echo Listing "%~1" - please wait... &set "fn=%~nx1 Files.html" | |
| ;del /f/q "%fn%" >nul 2>nul &cd.>"%fn%" 2>nul | |
| ;if exist "%fn%" ( set "files=%CD%\%fn%" ) else set "files=%USERPROFILE%\Desktop\%fn%" | |
| ;pushd "%~1" | |
| ;set "ampersand=&" &set "escape=&" | |
| ;> "%files%" findstr -bv ; "%~f0" | |
| ;>>"%files%" echo ^<p^>%DATE%, %TIME%^</p^>^<div class="filetree"^> | |
| ;>>"%files%" <nul set/p="<ul class="main-tree"><li class="tree-title">%~1</li>" | |
| ;>>"%files%" echo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off &title WebSearchChoice | |
| set "browser=iexplore.exe" | |
| set "url=google.com/search?q=" | |
| echo. | |
| echo Will override Cortana search Edge browser with: %browser% | |
| set/p "browser_choice=-Enter new choice, or press Enter to use above: " | |
| if "%browser_choice%"=="0" goto uninstall | |
| echo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off &title Multiple GUI choices via powershell snippet by AveYo &rem preview: https://i.imgur.com/JjazNR0.png | |
| :: setup gui dialog choices | |
| set all_choices=Option 1,Option 2,Option 3,Option4,Option5 | |
| set def_choices=Option 1,Option 2,Option5 | |
| :: Show gui dialog choices 1=title 2=all_choices 3=def_choices 4=output_variable | |
| call :choices "Multiple GUI choices" "%all_choices%" "%def_choices%" CHOICES | |
| :: Quit if no choice selected | |
| if not defined CHOICES color 0c &echo ERROR! No choice selected.. &timeout /t 20 &color 07 &exit/b | |
| :: Print choices | |
| echo Choices: %CHOICES% & echo. |
OlderNewer