1
0
This commit is contained in:
Stian Lund
2024-03-16 15:53:29 +01:00
parent df25b602e0
commit 23bb2e5812
5 changed files with 26 additions and 24 deletions

View File

@@ -42,7 +42,7 @@ e::Send("{F6}") ; E - Subunit Inspector
|::Send("{F7}") ; | - Log
+s::Send("^k") ; Shift+S - SOP Manager
r::Send("^r") ; R - Rotate Stack
f::Send("^l") ; F - Line-Of-Sight
f::Send("^l") ; F - Line Of Sight
g::Send("^o") ; G - Spottable From
h::Send("^p") ; H - SOP Ranges
t::Send("^y") ; T - Enemies Spotted
@@ -50,6 +50,9 @@ y::Send("^d") ; Y - Range Rings
v::Send("^u") ; V - Hide Units
;e::Send("{Click,right}") ; Right-click
; Ctrl+Shift+S - Save game
^+s::Send("{Alt Down},g,a,p,{Alt Up}")
; Zoom controls
z::Send("{WheelUp}") ; Zoom In
x::Send("{WheelDown}") ; Zoom Out

15
Batch/AppX.txt Executable file
View File

@@ -0,0 +1,15 @@
POWERSHELL
==========
Get-AppxPackage -AllUsers
Get-AppxPackage -Allusers * | Select Name, PackageFullName
Get-AppxProvisionedPackage -online | select packagename
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Get-AppxProvisionedpackage online | where-object {$_.packagename notlike “*store*”} | Remove-AppxProvisionedPackage -online
Get-AppxProvisionedpackage online | where-object {$_.packagename like “*xbox*”} | Remove-AppxProvisionedPackage -online
Remove-AppxProvisionedPackage -online -packagename <string>

View File

@@ -23,19 +23,3 @@ DISM.exe /online /Get-CapabilityInfo /CapabilityName:<name_in_image>
# ProvisionedAppxPackages
DISM.exe /Online /Get-ProvisionedAppxPackages
DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:name
POWERSHELL
==========
Get-AppxPackage -AllUsers
Get-AppxPackage -Allusers * | Select Name, PackageFullName
Get-AppxPackage *zunemusic* | Remove-AppxPackage
Get-AppxProvisionedPackage -online | select packagename
Remove-AppxProvisionedPackage -online -packagename <string>
Get-AppxProvisionedpackage online | where-object {$_.packagename notlike “*store*”} | Remove-AppxProvisionedPackage -online
Get-AppxProvisionedpackage online | where-object {$_.packagename like “*xbox*”} | Remove-AppxProvisionedPackage -online

View File

@@ -59,9 +59,9 @@ ECHO:
ECHO Arguments:
ECHO -t Output filetype: gif, png, webp.
ECHO The default is gif.
ECHO -o Output file.
ECHO -o Output file.
ECHO The default is the same name as the input video.
ECHO -r Scale or size.
ECHO -r Scale or size.
ECHO Width of the animation in pixels.
ECHO The default is the same scale as the original video.
ECHO -f Framerate in frames per second.
@@ -79,9 +79,9 @@ ECHO (Default for WebP is lossless)
ECHO -c The maximum amount of colors useable per palette.
ECHO (Optional value up to 256)
ECHO This option isn't used by default.
ECHO -s Start of the animation in HH:MM:SS.MS format.
ECHO -s Start of the animation (HH:MM:SS.MS)
ECHO (Optional)
ECHO -e Duration of the animation in seconds.
ECHO -e Duration of the animation (HH:MM:SS.MS)
ECHO (Optional)
ECHO -k Enables error diffusion.
ECHO (Optional)
@@ -108,14 +108,14 @@ ECHO About Bayerscale:
ECHO When bayer dithering is selected, the Bayer Scale option defines the
ECHO scale of the pattern (how much the crosshatch pattern is visible).
ECHO A low value means more visible pattern for less banding, a higher value
ECHO means less visible pattern at the cost of more banding.
ECHO means less visible pattern at the cost of more banding.
ECHO The option must be an integer value in the range [0,5].
ECHO The Default is 2. Bayer Scale is optional.
ECHO:
ECHO People who made this project come to fruition:
ECHO ubitux, Nabi KaramAliZadeh, and the very kind and patient people in the
ECHO ubitux, Nabi KaramAliZadeh, and the very kind and patient people in the
ECHO Batch Discord Server. Without these people's contributions, this script
ECHO would not be possible. Thank you all for your contributions and
ECHO would not be possible. Thank you all for your contributions and
ECHO assistance^^!
GOTO :EOF